diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 093e82d15..e4762fe7c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -21,3 +21,6 @@ tests/** @centreon/owners-robot-e2e packaging/** @centreon/owners-perl selinux/** @centreon/owners-pipelines .github/scripts/pod_spell_check.t @centreon/owners-perl + +.gitleaks.toml @centreon/owners-security +.gitleaksignore @centreon/owners-security diff --git a/.github/actions/merge-artifacts/action.yml b/.github/actions/merge-artifacts/action.yml index fcf729705..a83bdf2fc 100644 --- a/.github/actions/merge-artifacts/action.yml +++ b/.github/actions/merge-artifacts/action.yml @@ -18,7 +18,7 @@ runs: using: 'composite' steps: - name: Download Artifacts - uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0 + uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9 with: pattern: ${{ inputs.source_name_pattern }}* path: ${{ inputs.target_name }} diff --git a/.github/actions/package-delivery/action.yml b/.github/actions/package-delivery/action.yml index 5da2efcce..4c123b8ac 100644 --- a/.github/actions/package-delivery/action.yml +++ b/.github/actions/package-delivery/action.yml @@ -77,7 +77,7 @@ runs: - if: ${{ inputs.stability != 'stable' }} name: Restore packages from cache - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.${{ steps.parse-distrib.outputs.package_extension }} key: ${{ inputs.cache_key }} @@ -107,7 +107,7 @@ runs: } - name: Download packages from testing - if: ${{ inputs.stability == 'stable' && github.event_name == 'push' && inputs.distrib != 'jammy' }} + if: ${{ inputs.stability == 'stable' && github.event_name == 'push' && (inputs.distrib != 'jammy' || inputs.distrib != 'noble') }} uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 with: script: | @@ -170,7 +170,7 @@ runs: - name: Publish packages to ${{ inputs.stability }} if: | contains(fromJson('["testing", "unstable"]'), inputs.stability) || - (inputs.stability == 'stable' && github.event_name == 'push' && inputs.distrib != 'jammy') + (inputs.stability == 'stable' && github.event_name == 'push' && (inputs.distrib != 'jammy' || inputs.distrib != 'noble')) uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 with: script: | diff --git a/.github/actions/package-nfpm/action.yml b/.github/actions/package-nfpm/action.yml index e8c23cd1f..bab5c349d 100644 --- a/.github/actions/package-nfpm/action.yml +++ b/.github/actions/package-nfpm/action.yml @@ -122,7 +122,7 @@ runs: done shell: bash - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.${{ inputs.package_extension }} key: ${{ inputs.cache_key }} diff --git a/.github/actions/parse-distrib/action.yml b/.github/actions/parse-distrib/action.yml index 790c889d9..ad6c28fc2 100644 --- a/.github/actions/parse-distrib/action.yml +++ b/.github/actions/parse-distrib/action.yml @@ -54,6 +54,11 @@ runs: PACKAGE_DISTRIB_NAME="0ubuntu.22.04" PACKAGE_EXTENSION="deb" DISTRIB_FAMILY="ubuntu" + elif [[ "${{ inputs.distrib }}" == "noble" ]]; then + PACKAGE_DISTRIB_SEPARATOR="-" + PACKAGE_DISTRIB_NAME="0ubuntu.24.04" + PACKAGE_EXTENSION="deb" + DISTRIB_FAMILY="ubuntu" else echo "::error::Distrib ${{ inputs.distrib }} cannot be parsed" exit 1 diff --git a/.github/actions/promote-to-stable/action.yml b/.github/actions/promote-to-stable/action.yml index 1d93f0c1a..847496767 100644 --- a/.github/actions/promote-to-stable/action.yml +++ b/.github/actions/promote-to-stable/action.yml @@ -66,14 +66,14 @@ runs: shell: bash - name: Promote DEB package to stable - if: ${{ contains(fromJSON('["bullseye", "bookworm", "jammy"]'), inputs.distrib) }} + if: ${{ contains(fromJSON('["bullseye", "bookworm", "jammy", "noble"]'), inputs.distrib) }} run: | set -eux echo "[DEBUG] - Distrib: ${{ inputs.distrib }}" echo "[DEBUG] - Distrib: ${{ inputs.module }}" - if [[ "${{ inputs.distrib }}" == "jammy" ]]; then + if [[ "${{ inputs.distrib }}" == "jammy" || "${{ inputs.distrib }}" == "noble" ]]; then repo="ubuntu-plugins" else repo="apt-plugins" diff --git a/.github/actions/test-plugins/action.yml b/.github/actions/test-plugins/action.yml index bbcf5bfd7..3c46a5954 100644 --- a/.github/actions/test-plugins/action.yml +++ b/.github/actions/test-plugins/action.yml @@ -16,7 +16,7 @@ runs: steps: - name: get the cached plugin - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.${{ inputs.package-extension }} key: ${{ inputs.cache-key }} @@ -24,4 +24,6 @@ runs: - name: Install, test and remove plugin shell: bash - run: python3 .github/scripts/test-all-plugins.py ${{ inputs.package-extension }} ${{ inputs.plugin-list }} + run: | + [[ -f /.venv/bin/activate ]] && source /.venv/bin/activate + python3 .github/scripts/test-all-plugins.py ${{ inputs.package-extension }} ${{ inputs.plugin-list }} diff --git a/.github/docker/packaging/Dockerfile.packaging-plugins-java-noble b/.github/docker/packaging/Dockerfile.packaging-plugins-java-noble new file mode 100644 index 000000000..c5d3a0c5e --- /dev/null +++ b/.github/docker/packaging/Dockerfile.packaging-plugins-java-noble @@ -0,0 +1,30 @@ +ARG REGISTRY_URL + +FROM ${REGISTRY_URL}/ubuntu:noble + +RUN bash -e < /dev/null 2>&1 +apt-get update + +mkdir -p /var/lib/centreon/centplugins/ +chmod 777 /var/lib/centreon/centplugins/ + +apt-get clean + +EOF diff --git a/.github/docker/unit-tests/Dockerfile.unit-tests-noble b/.github/docker/unit-tests/Dockerfile.unit-tests-noble new file mode 100644 index 000000000..7e73ab0fe --- /dev/null +++ b/.github/docker/unit-tests/Dockerfile.unit-tests-noble @@ -0,0 +1,37 @@ +ARG REGISTRY_URL=docker.io + +FROM ${REGISTRY_URL}/ubuntu:noble + +ENV DEBIAN_FRONTEND=noninteractive + +# fix locale +RUN bash -e < /dev/null 2>&1 + +apt-get update +apt-get -y install gcc make libtest2-plugin-nowarnings-perl libauthen-radius-perl libconvert-binary-c-perl libcrypt-openssl-rsa-perl libdata-dump-perl libdatetime-format-dateparse-perl libdatetime-format-strptime-perl libdatetime-perl libdbd-mysql-perl libdbd-odbc-perl libdbd-pg-perl libdbd-sybase-perl libdbi-perl libdigest-crc-perl libdigest-md5-perl libdigest-sha-perl libemail-mime-perl libemail-sender-perl libemail-send-smtp-gmail-perl libfilesys-smbclient-perl libhtml-template-perl libio-socket-inet6-perl libio-socket-ip-perl libjmx4perl-perl libjson-maybexs-perl libjson-perl libjson-webtoken-perl libmail-imapclient-perl libmime-base64-perl libmongodb-perl libnet-dhcp-perl libnet-dns-perl libnet-ldap-perl libnet-mqtt-simple-perl libnet-ntp-perl libnet-ssleay-perl libnet-subnet-perl libnet-telnet-perl libnet-tftp-perl libopenwsman-perl libredis-perl librrds-perl libsnmp-perl libsocket-perl libssh-session-perl libtest-www-selenium-perl libtext-csv-perl libtime-hires-perl libtime-parsedate-perl libuuid-perl libxml-libxml-perl libxml-libxml-simple-perl libxml-simple-perl libxml-xpath-perl libzmq-libzmq4-perl perl perl-modules +# this image is used by centreon-perl-libs unit test and centreon-gorgone unit tests. +apt-get -y install libcrypt-openssl-aes-perl libnet-curl-perl libyaml-libyaml-perl libhash-merge-perl libclone-choose-perl libcryptx-perl libjson-xs-perl libjson-pp-perl +apt-get clean +NONINTERACTIVE_TESTING=1 PERL_MM_USE_DEFAULT=1 cpan Test2::Harness UUID + +mkdir -p /var/lib/centreon/centplugins/ +chmod 777 /var/lib/centreon/centplugins/ + +EOF diff --git a/.github/workflows/as400.yml b/.github/workflows/as400.yml index 080b831ec..22cf4cc6d 100644 --- a/.github/workflows/as400.yml +++ b/.github/workflows/as400.yml @@ -47,7 +47,9 @@ jobs: - package_extension: deb image: packaging-plugins-java-jammy distrib: jammy - + - package_extension: deb + image: packaging-plugins-java-noble + distrib: noble container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -102,7 +104,7 @@ jobs: stability: ${{ needs.get-environment.outputs.stability }} - name: Save to cache - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.${{ matrix.package_extension }} key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }} @@ -130,6 +132,8 @@ jobs: package_extension: deb - distrib: jammy package_extension: deb + - distrib: noble + package_extension: deb name: deliver ${{ matrix.distrib }} steps: diff --git a/.github/workflows/connector-vmware.yml b/.github/workflows/connector-vmware.yml index eb74274bb..6c981de50 100644 --- a/.github/workflows/connector-vmware.yml +++ b/.github/workflows/connector-vmware.yml @@ -48,6 +48,9 @@ jobs: - package_extension: deb image: packaging-plugins-jammy distrib: jammy + - package_extension: deb + image: packaging-plugins-noble + distrib: noble container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -106,6 +109,8 @@ jobs: package_extension: deb - distrib: jammy package_extension: deb + - distrib: noble + package_extension: deb name: deliver ${{ matrix.distrib }} steps: diff --git a/.github/workflows/docker-builder-packaging-plugins.yml b/.github/workflows/docker-builder-packaging-plugins.yml index 43a832edc..b010bf1a2 100644 --- a/.github/workflows/docker-builder-packaging-plugins.yml +++ b/.github/workflows/docker-builder-packaging-plugins.yml @@ -63,6 +63,12 @@ jobs: - runner: ubuntu-22.04 dockerfile: packaging-plugins-java-jammy image: packaging-plugins-java-jammy + - runner: ubuntu-22.04 + dockerfile: packaging-plugins-noble + image: packaging-plugins-noble + - runner: ubuntu-22.04 + dockerfile: packaging-plugins-java-noble + image: packaging-plugins-java-noble runs-on: ${{ matrix.runner }} @@ -84,9 +90,9 @@ jobs: username: ${{ secrets.HARBOR_CENTREON_PUSH_USERNAME }} password: ${{ secrets.HARBOR_CENTREON_PUSH_TOKEN }} - - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 + - uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0 - - uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0 + - uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 with: file: .github/docker/packaging/Dockerfile.${{ matrix.dockerfile }} context: . diff --git a/.github/workflows/docker-builder-testing-plugins.yml b/.github/workflows/docker-builder-testing-plugins.yml index be070c71d..3f7b8ab0a 100644 --- a/.github/workflows/docker-builder-testing-plugins.yml +++ b/.github/workflows/docker-builder-testing-plugins.yml @@ -48,6 +48,10 @@ jobs: - runner: ubuntu-24.04 dockerfile: jammy image: jammy + - runner: ubuntu-24.04 + dockerfile: noble + image: noble + runs-on: ${{ matrix.runner }} @@ -69,9 +73,9 @@ jobs: username: ${{ secrets.HARBOR_CENTREON_PUSH_USERNAME }} password: ${{ secrets.HARBOR_CENTREON_PUSH_TOKEN }} - - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 + - uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0 - - uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0 + - uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 with: file: .github/docker/testing/Dockerfile.testing-plugins-${{ matrix.dockerfile }} context: . diff --git a/.github/workflows/docker-builder-unit-tests.yml b/.github/workflows/docker-builder-unit-tests.yml index 2e6631f55..5e20bd5f2 100644 --- a/.github/workflows/docker-builder-unit-tests.yml +++ b/.github/workflows/docker-builder-unit-tests.yml @@ -48,6 +48,9 @@ jobs: - runner: ubuntu-22.04 dockerfile: jammy image: jammy + - runner: ubuntu-22.04 + dockerfile: noble + image: noble runs-on: ${{ matrix.runner }} @@ -69,9 +72,9 @@ jobs: username: ${{ secrets.HARBOR_CENTREON_PUSH_USERNAME }} password: ${{ secrets.HARBOR_CENTREON_PUSH_TOKEN }} - - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 + - uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0 - - uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0 + - uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 with: file: .github/docker/unit-tests/Dockerfile.unit-tests-${{ matrix.dockerfile }} context: . diff --git a/.github/workflows/get-environment.yml b/.github/workflows/get-environment.yml index 4335c1763..da15bcefb 100644 --- a/.github/workflows/get-environment.yml +++ b/.github/workflows/get-environment.yml @@ -134,7 +134,7 @@ jobs: - if: ${{ steps.has_skip_label.outputs.result == 'true' }} name: Get push changes id: get_push_changes - uses: tj-actions/changed-files@d6e91a2266cdb9d62096cebf1e8546899c6aa18f # v45.0.6 + uses: tj-actions/changed-files@2f7c5bfce28377bc069a65ba478de0a74aa0ca32 # v46.0.1 with: since_last_remote_commit: true json: true @@ -205,7 +205,7 @@ jobs: script: | const getStability = (branchName) => { switch (true) { - case /(^develop$)|(^dev-\d{2}\.\d{2}\.x$)|(^prepare-release-cloud.*)/.test(branchName): + case /(^develop$)|(^dev-\d{2}\.\d{2}\.x$)/.test(branchName): return 'unstable'; case /(^release.+)|(^hotfix.+)/.test(branchName): return 'testing'; @@ -250,9 +250,44 @@ jobs: with: script: | const { execSync } = require('child_process'); + const fs = require('fs'); let version = ''; if ('${{ inputs.version_file }}'.match(/pom\.xml$/)) { version = execSync(`grep -m 1 ".*" ${{ inputs.version_file }} | sed 's/.*\\(.*\\)<\\/version>.*/\\1/'`).toString().trim(); + + } else if ('${{ steps.get_stability.outputs.stability }}' === 'stable') { + const { owner, repo } = context.repo; + + // Fetch the most recent tag for plugins + const { data: tags } = await github.rest.repos.listTags({ + owner, + repo, + per_page: 10 + }); + + let latestTag = null; + let latestDate = 0; + + // Filter tags matching format plugins-YYYYMMDD + for (const tag of tags) { + const match = tag.name.match(/^plugins-(\d{8})$/); + + const tagDate = parseInt(match[1], 10); + + // ensure we get the true latest tag and not the most recent created + if (tagDate > latestDate) { + latestTag = tag.name; + latestDate = tagDate; + } + } + + console.log(`Most recent tag found: ${latestTag}`) + + // Get current release tag from .version file + version = fs.readFileSync('.version.plugins', 'utf8').trim(); + + console.log(`Stable version based on .version.plugins file will be: ${version}`) + } else if ('${{ steps.get_stability.outputs.stability }}' === 'testing') { const branchName = "${{ github.head_ref || github.ref_name }}"; const matches = branchName.match(/^(?:release|hotfix)-(\d{8})$/); diff --git a/.github/workflows/nrpe.yml b/.github/workflows/nrpe.yml index 7d335f713..3348616bc 100644 --- a/.github/workflows/nrpe.yml +++ b/.github/workflows/nrpe.yml @@ -47,6 +47,9 @@ jobs: - package_extension: deb image: packaging-plugins-jammy distrib: jammy + - package_extension: deb + image: packaging-plugins-noble + distrib: noble container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -140,6 +143,9 @@ jobs: package_extension: deb - distrib: jammy package_extension: deb + - distrib: noble + package_extension: deb + name: deliver ${{ matrix.distrib }} steps: diff --git a/.github/workflows/perl-cpan-libraries.yml b/.github/workflows/perl-cpan-libraries.yml index 972c67019..366bcc200 100644 --- a/.github/workflows/perl-cpan-libraries.yml +++ b/.github/workflows/perl-cpan-libraries.yml @@ -325,7 +325,7 @@ jobs: - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + - uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9 with: name: packages-rpm-${{ matrix.distrib }} path: ./ @@ -336,7 +336,7 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -351,7 +351,7 @@ jobs: strategy: fail-fast: false matrix: - image: [packaging-plugins-bullseye, packaging-plugins-bookworm, packaging-plugins-jammy, packaging-plugins-bullseye-arm64] + image: [packaging-plugins-bullseye, packaging-plugins-bookworm, packaging-plugins-jammy, packaging-plugins-noble, packaging-plugins-bullseye-arm64] name: [ "ARGV::Struct", @@ -386,7 +386,7 @@ jobs: include: - runner_name: ubuntu-24.04 - arch: amd64 - - build_names: "bullseye-amd64,bookworm,jammy" + - build_names: "bullseye-amd64,bookworm,jammy,noble" - deb_dependencies: "" - deb_provides: "" - version: "" @@ -406,6 +406,10 @@ jobs: distrib: jammy package_extension: deb image: packaging-plugins-jammy + - build_name: noble + distrib: noble + package_extension: deb + image: packaging-plugins-noble - build_name: bullseye-arm64 distrib: bullseye package_extension: deb @@ -413,7 +417,7 @@ jobs: arch: arm64 runner_name: centreon-collect-arm64 - name: "Crypt::Argon2" - build_names: "bullseye-amd64,jammy,bullseye-arm64" + build_names: "bullseye-amd64,jammy,noble,bullseye-arm64" preinstall_cpanlibs: "Dist::Build" use_dh_make_perl: "false" no-auto-depends: "true" @@ -424,25 +428,25 @@ jobs: use_dh_make_perl: "false" deb_dependencies: "libexporter-tiny-perl libxs-install-perl" no-auto-depends: "true" - build_names: "bullseye-amd64,bookworm,jammy,bullseye-arm64" + build_names: "bullseye-amd64,bookworm,jammy,noble,bullseye-arm64" - name: "Device::Modbus::RTU::Client" build_names: "bookworm" - name: "Device::Modbus::TCP::Client" build_names: "bookworm" - name: "Digest::SHA1" - build_names: "jammy" + build_names: "jammy,noble" - name: "Libssh::Session" use_dh_make_perl: "false" - build_names: "bullseye-amd64,bookworm,jammy,bullseye-arm64" + build_names: "bullseye-amd64,bookworm,jammy,noble,bullseye-arm64" no-auto-depends: "true" deb_dependencies: "libcarp-assert-perl libdynaloader-functions-perl libexporter-tiny-perl libdevel-overloadinfo-perl libssh-4 libc6" deb_provides: "libssh-session-perl-dbgsym libssh-session-sftp" revision: "2" - name: "Net::Amazon::Signature::V4" - build_names: ["bullseye-amd64", "jammy"] + build_names: ["bullseye-amd64", "jammy", "noble"] - name: "Net::Curl" use_dh_make_perl: "false" - build_names: "bullseye-amd64,bookworm,jammy,bullseye-arm64" + build_names: "bullseye-amd64,bookworm,jammy,noble,bullseye-arm64" no-auto-depends: "true" deb_dependencies: "libcarp-assert-perl libdynaloader-functions-perl libexporter-tiny-perl libdevel-overloadinfo-perl libcurl4" deb_provides: "libnet-curl-perl-dbgsym libnet-curl-compat-perl libnet-curl-easy-perl libnet-curl-form-perl libnet-curl-share-perl libnet-curl-multi-perl" @@ -460,7 +464,7 @@ jobs: use_dh_make_perl: "false" version: "0.01" deb_dependencies: "libzmq5" - build_names: "bullseye-amd64,bookworm,jammy,bullseye-arm64" + build_names: "bullseye-amd64,bookworm,jammy,noble,bullseye-arm64" name: package ${{ matrix.distrib }} ${{ matrix.arch }} ${{ matrix.name }} container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }}:latest @@ -572,7 +576,8 @@ jobs: fi # Check deb - dpkg-deb --contents $created_package || { echo "Error: dpkg-deb failed for package $created_package"; exit 1; } + dpkg-deb --verbose --contents $created_package || { echo "Error: dpkg-deb failed for package $created_package"; exit 1; } + shell: bash - if: ${{ steps.check-package-existence.outputs.do_not_build == 'false' && contains(matrix.build_names, matrix.build_name) && matrix.use_dh_make_perl == 'true' }} @@ -617,7 +622,7 @@ jobs: runs-on: ubuntu-24.04 strategy: matrix: - distrib: [bullseye, bookworm, jammy] + distrib: [bullseye, bookworm, jammy, noble] steps: - name: Merge Artifacts @@ -642,14 +647,14 @@ jobs: runs-on: ubuntu-24.04 strategy: matrix: - distrib: [bullseye, bookworm, jammy] + distrib: [bullseye, bookworm, jammy, noble] steps: - - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 + - uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9 with: name: packages-deb-${{ matrix.distrib }} path: ./ - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.deb key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} @@ -685,6 +690,10 @@ jobs: distrib: jammy arch: amd64 runner_name: ubuntu-24.04 + - package_extension: deb + image: ubuntu:noble + arch: amd64 + runner_name: ubuntu-24.04 - package_extension: deb image: debian:bullseye distrib: bullseye @@ -737,6 +746,8 @@ jobs: package_extension: deb - distrib: jammy package_extension: deb + - distrib: noble + package_extension: deb name: deliver ${{ matrix.distrib }} steps: diff --git a/.github/workflows/perl-filesys-smbclient.yml b/.github/workflows/perl-filesys-smbclient.yml index 35cd2dbf5..241e55a9d 100644 --- a/.github/workflows/perl-filesys-smbclient.yml +++ b/.github/workflows/perl-filesys-smbclient.yml @@ -63,7 +63,7 @@ jobs: cp -r ~/rpmbuild/RPMS/x86_64/*.rpm . shell: bash - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -97,7 +97,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -108,7 +108,7 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -129,6 +129,9 @@ jobs: distrib: bookworm - image: packaging-plugins-jammy distrib: jammy + - image: packaging-plugins-noble + distrib: noble + name: package ${{ matrix.distrib }} container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }}:latest @@ -155,7 +158,7 @@ jobs: DEB_BUILD_OPTIONS="nocheck nodocs notest noautodbgsym" dh-make-perl make --dist ${{ matrix.distrib }} --verbose --build --version 4.0${{ steps.parse-distrib.outputs.package_distrib_separator }}${{ steps.parse-distrib.outputs.package_distrib_name }} perl-filesys-smbclient/ shell: bash - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.deb key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} @@ -183,6 +186,8 @@ jobs: package_extension: deb - distrib: jammy package_extension: deb + - distrib: noble + package_extension: deb name: deliver ${{ matrix.distrib }} steps: diff --git a/.github/workflows/perl-keepass-reader.yml b/.github/workflows/perl-keepass-reader.yml index b417f6be4..8a8918821 100644 --- a/.github/workflows/perl-keepass-reader.yml +++ b/.github/workflows/perl-keepass-reader.yml @@ -50,6 +50,9 @@ jobs: - image: packaging-plugins-jammy distrib: jammy package_extension: deb + - image: packaging-plugins-noble + distrib: noble + package_extension: deb runs-on: ubuntu-22.04 @@ -142,6 +145,8 @@ jobs: package_extension: deb - distrib: jammy package_extension: deb + - distrib: noble + package_extension: deb name: deliver ${{ matrix.distrib }} steps: diff --git a/.github/workflows/perl-openwsman.yml b/.github/workflows/perl-openwsman.yml index d37584b45..3fccba0e9 100644 --- a/.github/workflows/perl-openwsman.yml +++ b/.github/workflows/perl-openwsman.yml @@ -55,6 +55,11 @@ jobs: package_extension: deb runner: ubuntu-22.04 arch: amd64 + - image: packaging-plugins-noble + distrib: noble + package_extension: deb + runner: ubuntu-22.04 + arch: amd64 - image: packaging-plugins-bullseye-arm64 distrib: bullseye package_extension: deb @@ -208,7 +213,7 @@ jobs: rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }} stability: ${{ needs.get-environment.outputs.stability }} - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.${{ matrix.package_extension }} key: cache-${{ github.sha }}-${{ matrix.package_extension }}-wsman-${{ matrix.distrib }}-${{ matrix.arch }}-${{ github.head_ref || github.ref_name }} @@ -244,6 +249,10 @@ jobs: - distrib: jammy package_extension: deb arch: amd64 + - distrib: noble + package_extension: deb + arch: amd64 + name: deliver ${{ matrix.distrib }} ${{ matrix.arch }} steps: diff --git a/.github/workflows/perl-vmware-vsphere.yml b/.github/workflows/perl-vmware-vsphere.yml index fe5078560..4f544c594 100644 --- a/.github/workflows/perl-vmware-vsphere.yml +++ b/.github/workflows/perl-vmware-vsphere.yml @@ -43,7 +43,7 @@ jobs: shell: bash - name: Cache vsphere cli sources - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: vmware-vsphere-cli-distrib key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere @@ -82,6 +82,11 @@ jobs: distrib: jammy runner: ubuntu-22.04 arch: amd64 + - package_extension: deb + image: packaging-plugins-noble + distrib: noble + runner: ubuntu-22.04 + arch: amd64 - package_extension: deb image: packaging-plugins-bullseye-arm64 distrib: bullseye @@ -103,7 +108,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Import source files - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: vmware-vsphere-cli-distrib key: ${{ github.sha }}-${{ github.run_id }}-sources-perl-vmware-vsphere diff --git a/.github/workflows/plink.yml b/.github/workflows/plink.yml index a375aedbf..549e65a36 100644 --- a/.github/workflows/plink.yml +++ b/.github/workflows/plink.yml @@ -57,7 +57,7 @@ jobs: cp -r ~/rpmbuild/RPMS/x86_64/*.rpm . shell: bash - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -91,7 +91,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.rpm key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} @@ -102,7 +102,7 @@ jobs: - run: rpmsign --addsign ./*.rpm shell: bash - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./*.rpm key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index 690545e65..669483609 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -98,7 +98,7 @@ jobs: strategy: fail-fast: false matrix: - image: [unit-tests-alma8, unit-tests-alma9, unit-tests-bullseye, unit-tests-bullseye-arm64, unit-tests-bookworm, unit-tests-jammy] + image: [unit-tests-alma8, unit-tests-alma9, unit-tests-bullseye, unit-tests-bullseye-arm64, unit-tests-bookworm, unit-tests-jammy, unit-tests-noble] include: - runner_name: ubuntu-24.04 - package_extension: rpm @@ -120,6 +120,9 @@ jobs: - package_extension: deb image: unit-tests-jammy distrib: jammy + - package_extension: deb + image: unit-tests-noble + distrib: noble runs-on: ${{ matrix.runner_name }} container: @@ -168,7 +171,7 @@ jobs: COMMIT=$(git log -1 HEAD --pretty=format:%h) perl .github/scripts/plugins-source.container.pl "${{ needs.get-plugins.outputs.plugins }}" "${{ needs.get-environment.outputs.version }} ($COMMIT)" - - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} @@ -206,6 +209,9 @@ jobs: - package_extension: deb image: packaging-plugins-jammy distrib: jammy + - package_extension: deb + image: packaging-plugins-noble + distrib: noble container: image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/${{ matrix.image }} @@ -219,7 +225,7 @@ jobs: - name: Checkout sources uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} @@ -311,7 +317,7 @@ jobs: strategy: fail-fast: false matrix: - image: [testing-plugins-alma8, testing-plugins-alma9, testing-plugins-jammy, testing-plugins-bullseye, testing-plugins-bookworm] + image: [testing-plugins-alma8, testing-plugins-alma9, testing-plugins-jammy, testing-plugins-bullseye, testing-plugins-bookworm, testing-plugins-noble, testing-plugins-bullseye-arm64] include: - runner_name: ubuntu-24.04 - package_extension: rpm @@ -329,6 +335,9 @@ jobs: - package_extension: deb image: testing-plugins-jammy distrib: jammy + - package_extension: deb + image: testing-plugins-noble + distrib: noble - package_extension: deb image: testing-plugins-bullseye-arm64 distrib: bullseye @@ -385,6 +394,8 @@ jobs: package_extension: deb - distrib: jammy package_extension: deb + - distrib: noble + package_extension: deb name: deliver ${{ matrix.distrib }} steps: @@ -412,7 +423,7 @@ jobs: - name: Checkout sources uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 + - uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ./build/ key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} diff --git a/.gitleaks.toml b/.gitleaks.toml new file mode 100644 index 000000000..487e5b19a --- /dev/null +++ b/.gitleaks.toml @@ -0,0 +1,19 @@ +title = "Gitleaks custom rules" + +[extend] +useDefault = true + +[allowlist] +paths = [ + '''vendor\/''', + '''(.*?)\.rptlibrary''', + '''pnpm-lock\.yaml''', + '''\.gitleaks\.toml$''', + '''(.*?)(jpg|gif|doc|pdf|bin)$''' +] + +regexTarget = "match" +regexes = [ + '''ABCDEFG1234567890''', + '''s\.aBCD123DEF456GHI789JKL012''' +] diff --git a/.version.plugins b/.version.plugins new file mode 100644 index 000000000..fde0fac70 --- /dev/null +++ b/.version.plugins @@ -0,0 +1 @@ +20250303 \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Exense-Step-Restapi/deb.json b/packaging/centreon-plugin-Applications-Exense-Step-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Exense-Step-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Exense-Step-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Exense-Step-Restapi/pkg.json new file mode 100644 index 000000000..efc2f2ae7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Exense-Step-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Exense-Step-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_exense_step_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/exense/step/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Exense-Step-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Exense-Step-Restapi/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Exense-Step-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Notification-Foxbox/deb.json b/packaging/centreon-plugin-Notification-Foxbox/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Foxbox/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Notification-Foxbox/pkg.json b/packaging/centreon-plugin-Notification-Foxbox/pkg.json new file mode 100644 index 000000000..97b5e15d2 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Foxbox/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Foxbox", + "pkg_summary": "Centreon Plugin to send notifications by Foxbox", + "plugin_name": "centreon_notification_foxbox.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "notification/foxbox" + ] +} diff --git a/packaging/centreon-plugin-Notification-Foxbox/rpm.json b/packaging/centreon-plugin-Notification-Foxbox/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Foxbox/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/deb.json b/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/deb.json new file mode 100644 index 000000000..35551ac9c --- /dev/null +++ b/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "liburi-encode-perl" + ] +} diff --git a/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/pkg.json b/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/pkg.json new file mode 100644 index 000000000..0d485799f --- /dev/null +++ b/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Jasminsms-Httpapi", + "pkg_summary": "Centreon Plugin to send notifications by Jasmin SMS HTTP-API", + "plugin_name": "centreon_notification_jasminsms-httpapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "notification/jasminsms/httpapi" + ] +} diff --git a/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/rpm.json b/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/rpm.json new file mode 100644 index 000000000..93b310b7c --- /dev/null +++ b/packaging/centreon-plugin-Notification-Jasminsms-Httpapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(URI::Encode)" + ] +} diff --git a/packaging/centreon-plugin-Notification-Ovhsms/deb.json b/packaging/centreon-plugin-Notification-Ovhsms/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Ovhsms/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Notification-Ovhsms/pkg.json b/packaging/centreon-plugin-Notification-Ovhsms/pkg.json new file mode 100644 index 000000000..007294d6d --- /dev/null +++ b/packaging/centreon-plugin-Notification-Ovhsms/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Ovhsms", + "pkg_summary": "Centreon Plugin to send notifications by OVH SMS API", + "plugin_name": "centreon_notification_ovhsms.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "notification/ovhsms" + ] +} diff --git a/packaging/centreon-plugin-Notification-Ovhsms/rpm.json b/packaging/centreon-plugin-Notification-Ovhsms/rpm.json new file mode 100644 index 000000000..40759f6e0 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Ovhsms/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON::XS)" + ] +} diff --git a/packaging/centreon-plugin-Notification-Telegram/deb.json b/packaging/centreon-plugin-Notification-Telegram/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Telegram/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Notification-Telegram/pkg.json b/packaging/centreon-plugin-Notification-Telegram/pkg.json new file mode 100644 index 000000000..0a582c9f4 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Telegram/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Telegram", + "pkg_summary": "Centreon Plugin to send notifications by Telegram", + "plugin_name": "centreon_notification_telegram.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "notification/telegram" + ] +} diff --git a/packaging/centreon-plugin-Notification-Telegram/rpm.json b/packaging/centreon-plugin-Notification-Telegram/rpm.json new file mode 100644 index 000000000..40759f6e0 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Telegram/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON::XS)" + ] +} diff --git a/src/apps/backup/veeam/local/mode/jobstatus.pm b/src/apps/backup/veeam/local/mode/jobstatus.pm index 343374b8a..06b2653d7 100644 --- a/src/apps/backup/veeam/local/mode/jobstatus.pm +++ b/src/apps/backup/veeam/local/mode/jobstatus.pm @@ -310,11 +310,11 @@ Filter job type (can be a regexp). =item B<--filter-start-time> -Filter job with start time greater than current time less value in seconds. +Tolerance value in seconds, to avoid skipping jobs whose start time is earlier than the current time. =item B<--filter-end-time> -Filter job with end time greater than current time less value in seconds (default: 86400). +Tolerance value in seconds, to avoid skipping jobs whose end time is earlier than the current time (default: 86400). =item B<--ok-status> diff --git a/src/apps/backup/veeam/vbem/restapi/custom/api.pm b/src/apps/backup/veeam/vbem/restapi/custom/api.pm index 4a288ff32..09b8e5090 100644 --- a/src/apps/backup/veeam/vbem/restapi/custom/api.pm +++ b/src/apps/backup/veeam/vbem/restapi/custom/api.pm @@ -251,6 +251,7 @@ sub cache_backup_job_session { return $datas; } + sub cache_repository { my ($self, %options) = @_; @@ -281,6 +282,24 @@ sub get_backup_job_session { ); } +sub get_replica_job_session { + my ($self, %options) = @_; + + return $self->get_cache_file_response(statefile => 'replica_job_session') + if (defined($self->{option_results}->{cache_use}) && !defined($options{disable_cache})); + + my $creation_time = DateTime->now->subtract(seconds => $options{timeframe})->iso8601(); + + return $self->request_api( + endpoint => '/api/query', + get_param => [ + 'type=ReplicaJobSession', + 'format=Entities', + 'filter=CreationTime>=' . $creation_time + ] + ); +} + sub get_repository { my ($self, %options) = @_; diff --git a/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm b/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm index c0db93f08..8e96ec514 100644 --- a/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm +++ b/src/apps/backup/veeam/vbem/restapi/mode/jobs.pm @@ -229,6 +229,7 @@ sub manage_selection { my ($self, %options) = @_; my $jobs_exec = $options{custom}->get_backup_job_session(timeframe => $self->{option_results}->{timeframe}); + my $jobs_replica = $options{custom}->get_replica_job_session(timeframe => $self->{option_results}->{timeframe}); my $ctime = time(); @@ -278,6 +279,50 @@ sub manage_selection { $self->{jobs}->{ $job->{JobUid} }->{failed}->{failed}++; } } + foreach my $job (@{$jobs_replica->{Entities}->{ReplicaJobSessions}->{ReplicaJobSessions}}) { + next if (defined($self->{option_results}->{filter_uid}) && $self->{option_results}->{filter_uid} ne '' && $job->{JobUid} !~ /$self->{option_results}->{filter_uid}/); + next if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && $job->{JobName} !~ /$self->{option_results}->{filter_name}/); + next if (defined($self->{option_results}->{filter_type}) && $self->{option_results}->{filter_type} ne '' && $job->{JobType} !~ /$self->{option_results}->{filter_type}/); + + if (!defined($self->{jobs}->{ $job->{JobUid} })) { + $self->{jobs}->{ $job->{JobUid} } = { + name => $job->{JobName}, + type => $job->{JobType}, + failed => { name => $job->{JobName}, total => 0, failed => 0 } + }; + $self->{global}->{detected}++; + } + + $job->{CreationTimeUTC} =~ /^(\d+)-(\d+)-(\d+)T(\d+):(\d+):(\d+)/; + my $dt = DateTime->new(year => $1, month => $2, day => $3, hour => $4, minute => $5, second => $6); + my $epoch = $dt->epoch(); + + if (!defined($self->{jobs}->{ $job->{JobUid} }->{executions}) || $epoch > $self->{jobs}->{ $job->{JobUid} }->{executions}->{last}->{epoch}) { + $self->{jobs}->{ $job->{JobUid} }->{executions}->{last} = { + jobName => $job->{JobName}, + started => $job->{CreationTimeUTC}, + status => $job->{Result}, + epoch => $epoch + }; + + $self->{jobs}->{ $job->{JobUid} }->{timers} = { + name => $job->{JobName}, + lastExecSeconds => $ctime - $epoch, + lastExecHuman => centreon::plugins::misc::change_seconds(value => $ctime - $epoch) + }; + + if ($job->{State} =~ /Starting|Working|Resuming/i) { + my $duration = $ctime - $epoch; + $self->{jobs}->{ $job->{JobUid} }->{timers}->{durationSeconds} = $duration; + $self->{jobs}->{ $job->{JobUid} }->{timers}->{durationHuman} = centreon::plugins::misc::change_seconds(value => $duration); + } + } + + $self->{jobs}->{ $job->{JobUid} }->{failed}->{total}++; + if (defined($job->{Result}) && $job->{Result} =~ /Failed/i) { + $self->{jobs}->{ $job->{JobUid} }->{failed}->{failed}++; + } + } foreach my $uid (keys %{$self->{jobs}}) { $self->{jobs}->{$uid}->{failed}->{failedPrct} = $self->{jobs}->{$uid}->{failed}->{total} > 0 ? $self->{jobs}->{$uid}->{failed}->{failed} * 100 / $self->{jobs}->{$uid}->{failed}->{total} : 0; @@ -308,7 +353,7 @@ Filter jobs by type. =item B<--timeframe> -Timeframe to get BackupJobSession (in seconds. Default: 86400). +Timeframe to get BackupJobSession and ReplicaJobSession (in seconds. Default: 86400). =item B<--unit> diff --git a/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm b/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm index f0cbc435e..b7c784f50 100644 --- a/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm +++ b/src/apps/backup/veeam/vbem/restapi/mode/listjobs.pm @@ -51,6 +51,8 @@ sub manage_selection { my $results = {}; my $jobs_exec = $options{custom}->cache_backup_job_session(timeframe => $self->{option_results}->{timeframe}); + my $jobs_replica = $options{custom}->get_replica_job_session(timeframe => $self->{option_results}->{timeframe}); + foreach my $job (@{$jobs_exec->{Entities}->{BackupJobSessions}->{BackupJobSessions}}) { next if (defined($results->{ $job->{JobUid} })); @@ -60,6 +62,15 @@ sub manage_selection { } } + foreach my $job (@{$jobs_replica->{Entities}->{ReplicaJobSessions}->{ReplicaJobSessions}}) { + next if (defined($results->{ $job->{JobUid} })); + + $results->{ $job->{JobUid} } = { + jobName => $job->{JobName}, + jobType => $job->{JobType} + } + } + return $results; } @@ -67,7 +78,7 @@ sub run { my ($self, %options) = @_; my $results = $self->manage_selection(%options); - foreach my $uid (keys %$results) { + foreach my $uid (sort keys %$results) { $self->{output}->output_add( long_msg => sprintf( '[uid: %s][jobName: %s][jobType: %s]', @@ -117,7 +128,7 @@ List jobs. =item B<--timeframe> -Timeframe to get BackupJobSession (in seconds. Default: 86400). +Timeframe to get BackupJobSession and ReplicaJobSession (in seconds. Default: 86400). =back diff --git a/src/apps/eclipse/mosquitto/mqtt/mode/clients.pm b/src/apps/eclipse/mosquitto/mqtt/mode/clients.pm index 9da133659..d1f709fd8 100644 --- a/src/apps/eclipse/mosquitto/mqtt/mode/clients.pm +++ b/src/apps/eclipse/mosquitto/mqtt/mode/clients.pm @@ -38,7 +38,7 @@ sub set_counters { { label => 'clients-' . $label, nlabel => 'clients.' . $label . '.count', set => { - key_values => [{ name => $label }], + key_values => [ { name => $label } ], output_template => ucfirst($label) . ' clients: %d', perfdatas => [ { label => $label . '_clients', template => '%d', @@ -51,7 +51,7 @@ sub set_counters { sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; return $self; @@ -62,7 +62,7 @@ sub manage_selection { my %results = $options{mqtt}->queries( base_topic => '$SYS/broker/clients/', - topics => ['connected', 'maximum', 'active', 'inactive'] + topics => [ 'connected', 'maximum', 'active', 'inactive' ] ); for my $topic (keys %results) { @@ -80,10 +80,37 @@ Check clients statistics. =over 8 -=item B<--warning-*> B<--critical-*> +=item B<--warning-clients-connected> -Thresholds. -Can be: 'clients-connected', 'clients-maximum', 'clients-active', 'clients-inactive'. +Warning threshold for connected clients. + +=item B<--critical-clients-connected> + +Critical threshold for connected clients. + +=item B<--warning-clients-maximum> + +Warning threshold for maximum clients. + +=item B<--critical-clients-maximum> + +Critical threshold for maximum clients. + +=item B<--warning-clients-active> + +Warning threshold for active clients. + +=item B<--critical-clients-active> + +Critical threshold for active clients. + +=item B<--warning-clients-inactive> + +Warning threshold for inactive clients. + +=item B<--critical-clients-inactive> + +Critical threshold for inactive clients. =back diff --git a/src/apps/eclipse/mosquitto/mqtt/mode/messages.pm b/src/apps/eclipse/mosquitto/mqtt/mode/messages.pm index 43d019857..162de8ee0 100644 --- a/src/apps/eclipse/mosquitto/mqtt/mode/messages.pm +++ b/src/apps/eclipse/mosquitto/mqtt/mode/messages.pm @@ -38,7 +38,7 @@ sub set_counters { { label => 'messages-' . $label, nlabel => 'messages.' . $label . '.count', set => { - key_values => [{ name => $label }], + key_values => [ { name => $label } ], output_template => ucfirst($label) . ' messages: %d', perfdatas => [ { label => $label . '_messages', template => '%d', @@ -51,7 +51,7 @@ sub set_counters { sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; return $self; @@ -62,7 +62,7 @@ sub manage_selection { my %results = $options{mqtt}->queries( base_topic => '$SYS/broker/messages/', - topics => ['stored', 'received', 'sent'] + topics => [ 'stored', 'received', 'sent' ] ); for my $topic (keys %results) { $self->{global}->{$topic} = $results{$topic}; @@ -79,10 +79,29 @@ Check messages statistics. =over 8 -=item B<--warning-*> B<--critical-*> +=item B<--warning-messages-stored> -Thresholds. -Can be: 'messages-stored', 'messages-received', 'messages-sent'. +Warning threshold for stored messages. + +=item B<--critical-messages-stored> + +Critical threshold for stored messages. + +=item B<--warning-messages-received> + +Warning threshold for received messages. + +=item B<--critical-messages-received> + +Critical threshold for received messages. + +=item B<--warning-messages-sent> + +Warning threshold for sent messages. + +=item B<--critical-messages-sent> + +Critical threshold for sent messages. =back diff --git a/src/apps/eclipse/mosquitto/mqtt/mode/numericvalue.pm b/src/apps/eclipse/mosquitto/mqtt/mode/numericvalue.pm index ef0120765..b46ec1f9a 100644 --- a/src/apps/eclipse/mosquitto/mqtt/mode/numericvalue.pm +++ b/src/apps/eclipse/mosquitto/mqtt/mode/numericvalue.pm @@ -30,13 +30,13 @@ use POSIX qw(floor); sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $options{options}->add_options(arguments => { 'topic:s' => { name => 'topic' }, - 'warning:s' => { name => 'warning' }, - 'critical:s' => { name => 'critical' }, + 'warning:s' => { name => 'warning', redirect => 'warning-generic' }, + 'critical:s' => { name => 'critical', redirect => 'critical-generic' }, 'extracted-pattern:s' => { name => 'extracted_pattern' }, 'format:s' => { name => 'format' }, 'format-custom:s' => { name => 'format_custom' }, @@ -57,25 +57,20 @@ sub custom_generic_output { $format = $self->{instance_mode}{option_results}->{format}; } - my $value = $self->{result_values}->{numericvalue}; - if (!centreon::plugins::misc::is_empty($self->{instance_mode}{option_results}->{format_custom})) { - $value = eval "$value $self->{instance_mode}{option_results}->{format_custom}"; - } - - return sprintf($format, $value); + return sprintf($format, $self->{result_values}->{numericvalue}); } sub custom_generic_perfdata { my ($self, %options) = @_; $self->{output}->perfdata_add( - label => $options{option_results}->{perfdata_name}, - unit => $options{option_results}->{perfdata_unit}, + label => $self->{instance_mode}->{option_results}->{perfdata_name}, + unit => $self->{instance_mode}->{option_results}->{perfdata_unit}, value => $self->{result_values}->{numericvalue}, - warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}), - critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}), - min => $options{option_results}->{perfdata_min}, - max => $options{option_results}->{perfdata_max} + warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-generic'), + critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-generic'), + min => $self->{instance_mode}->{option_results}->{perfdata_min}, + max => $self->{instance_mode}->{option_results}->{perfdata_max} ); } @@ -85,9 +80,9 @@ sub custom_generic_threshold { return $self->{perfdata}->threshold_check( value => $self->{result_values}->{numericvalue}, threshold => [ - { label => 'critical-' . $self->{thlabel}, exit_litteral => 'critical' }, - { label => 'warning-' . $self->{thlabel}, exit_litteral => 'warning' }, - { label => 'unknown-' . $self->{thlabel}, exit_litteral => 'unknown' } + { label => 'critical-generic', exit_litteral => 'critical' }, + { label => 'warning-generic', exit_litteral => 'warning' }, + { label => 'unknown-generic', exit_litteral => 'unknown' } ] ); } @@ -102,7 +97,7 @@ sub set_counters { $self->{maps_counters}->{global} = [ { label => 'generic', set => { - key_values => [{ name => 'numericvalue' }], + key_values => [ { name => 'numericvalue' } ], closure_custom_output => $self->can('custom_generic_output'), closure_custom_perfdata => $self->can('custom_generic_perfdata'), closure_custom_threshold_check => $self->can('custom_generic_threshold') @@ -146,6 +141,10 @@ sub manage_selection { $self->{output}->option_exit(); } + if (!centreon::plugins::misc::is_empty($self->{option_results}->{format_custom})) { + $value = eval "$value $self->{option_results}->{format_custom}"; + } + $self->{global} = { numericvalue => $value }; } @@ -177,7 +176,7 @@ Define a pattern to extract a number from the returned string. =item B<--format> -Output format (default: 'current value is %s') +Output format (default: 'current value is %s'). =item B<--format-custom> @@ -186,19 +185,19 @@ Apply a custom change on the value =item B<--perfdata-unit> -Perfdata unit in perfdata output (default: '') +Perfdata unit in perfdata output (default: ''). =item B<--perfdata-name> -Perfdata name in perfdata output (default: 'value') +Perfdata name in perfdata output (default: 'value'). =item B<--perfdata-min> -Minimum value to add in perfdata output (default: '') +Minimum value to add in perfdata output (default: ''). =item B<--perfdata-max> -Maximum value to add in perfdata output (default: '') +Maximum value to add in perfdata output (default: ''). =back diff --git a/src/apps/eclipse/mosquitto/mqtt/mode/uptime.pm b/src/apps/eclipse/mosquitto/mqtt/mode/uptime.pm index 8cd041870..7f508d2d6 100644 --- a/src/apps/eclipse/mosquitto/mqtt/mode/uptime.pm +++ b/src/apps/eclipse/mosquitto/mqtt/mode/uptime.pm @@ -28,7 +28,7 @@ use centreon::plugins::misc; use Time::HiRes qw(time); use POSIX qw(floor); -my $unitdiv = { s => 1, w => 604800, d => 86400, h => 3600, m => 60 }; +my $unitdiv = { s => 1, w => 604800, d => 86400, h => 3600, m => 60 }; my $unitdiv_long = { s => 'seconds', w => 'weeks', d => 'days', h => 'hours', m => 'minutes' }; sub custom_uptime_output { @@ -76,7 +76,7 @@ sub set_counters { $self->{maps_counters}->{global} = [ { label => 'uptime', set => { - key_values => [{ name => 'uptime' }], + key_values => [ { name => 'uptime' } ], closure_custom_output => $self->can('custom_uptime_output'), closure_custom_perfdata => $self->can('custom_uptime_perfdata'), closure_custom_threshold_check => $self->can('custom_uptime_threshold') @@ -87,7 +87,7 @@ sub set_counters { sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; $options{options}->add_options(arguments => { @@ -109,7 +109,7 @@ sub check_options { sub manage_selection { my ($self, %options) = @_; - my $topic = '$SYS/broker/uptime'; + my $topic = '$SYS/broker/uptime'; my $uptime = $options{mqtt}->query( topic => $topic ); diff --git a/src/apps/exense/step/restapi/custom/api.pm b/src/apps/exense/step/restapi/custom/api.pm new file mode 100644 index 000000000..ea42d7676 --- /dev/null +++ b/src/apps/exense/step/restapi/custom/api.pm @@ -0,0 +1,319 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::exense::step::restapi::custom::api; + +use strict; +use warnings; +use centreon::plugins::http; +use centreon::plugins::statefile; +use JSON::XS; +use Digest::MD5 qw(md5_hex); + +sub new { + my ($class, %options) = @_; + my $self = {}; + bless $self, $class; + + if (!defined($options{output})) { + print "Class Custom: Need to specify 'output' argument.\n"; + exit 3; + } + if (!defined($options{options})) { + $options{output}->add_option_msg(short_msg => "Class Custom: Need to specify 'options' argument."); + $options{output}->option_exit(); + } + + if (!defined($options{noptions})) { + $options{options}->add_options(arguments => { + 'hostname:s' => { name => 'hostname' }, + 'port:s' => { name => 'port' }, + 'proto:s' => { name => 'proto' }, + 'api-username:s' => { name => 'api_username' }, + 'api-password:s' => { name => 'api_password' }, + 'token:s' => { name => 'token' }, + 'timeout:s' => { name => 'timeout' } + }); + } + $options{options}->add_help(package => __PACKAGE__, sections => 'REST API OPTIONS', once => 1); + + $self->{output} = $options{output}; + $self->{http} = centreon::plugins::http->new(%options, default_backend => 'curl'); + $self->{cache_connect} = centreon::plugins::statefile->new(%options); + + return $self; +} + +sub set_options { + my ($self, %options) = @_; + + $self->{option_results} = $options{option_results}; +} + +sub set_defaults {} + +sub check_options { + my ($self, %options) = @_; + + $self->{hostname} = (defined($self->{option_results}->{hostname})) ? $self->{option_results}->{hostname} : ''; + $self->{proto} = (defined($self->{option_results}->{proto})) ? $self->{option_results}->{proto} : 'https'; + $self->{port} = (defined($self->{option_results}->{port})) ? $self->{option_results}->{port} : 443; + $self->{api_username} = (defined($self->{option_results}->{api_username})) ? $self->{option_results}->{api_username} : ''; + $self->{api_password} = (defined($self->{option_results}->{api_password})) ? $self->{option_results}->{api_password} : ''; + $self->{token} = (defined($self->{option_results}->{token})) ? $self->{option_results}->{token} : ''; + $self->{timeout} = (defined($self->{option_results}->{timeout})) ? $self->{option_results}->{timeout} : 30; + $self->{unknown_http_status} = (defined($self->{option_results}->{unknown_http_status})) ? $self->{option_results}->{unknown_http_status} : '%{http_code} < 200 or %{http_code} >= 300' ; + $self->{warning_http_status} = (defined($self->{option_results}->{warning_http_status})) ? $self->{option_results}->{warning_http_status} : ''; + $self->{critical_http_status} = (defined($self->{option_results}->{critical_http_status})) ? $self->{option_results}->{critical_http_status} : ''; + + if ($self->{hostname} eq '') { + $self->{output}->add_option_msg(short_msg => 'Need to specify hostname option.'); + $self->{output}->option_exit(); + } + if ($self->{token} ne '') { + return 0; + } + + if ($self->{api_username} eq '') { + $self->{output}->add_option_msg(short_msg => "Need to specify --api-username or --token option."); + $self->{output}->option_exit(); + } + if ($self->{api_password} eq '') { + $self->{output}->add_option_msg(short_msg => "Need to specify --api-password option."); + $self->{output}->option_exit(); + } + + $self->{cache_connect}->check_options(option_results => $self->{option_results}); + return 0; +} + +sub get_connection_infos { + my ($self, %options) = @_; + + return $self->{hostname} . '_' . $self->{http}->get_port(); +} + +sub get_hostname { + my ($self, %options) = @_; + + return $self->{hostname}; +} + +sub get_port { + my ($self, %options) = @_; + + return $self->{port}; +} + + +sub build_options_for_httplib { + my ($self, %options) = @_; + + $self->{option_results}->{hostname} = $self->{hostname}; + $self->{option_results}->{port} = $self->{port}; + $self->{option_results}->{proto} = $self->{proto}; +} + +sub settings { + my ($self, %options) = @_; + + $self->build_options_for_httplib(); + $self->{http}->add_header(key => 'Accept', value => 'application/json'); + $self->{http}->add_header(key => 'Content-Type', value => 'application/json'); + $self->{http}->set_options(%{$self->{option_results}}); +} + +sub clean_session_id { + my ($self, %options) = @_; + + my $datas = { updated => time() }; + $self->{cache_connect}->write(data => $datas); +} + +sub get_session_id { + my ($self, %options) = @_; + + my $has_cache_file = $self->{cache_connect}->read(statefile => 'exense_step_' . md5_hex($self->{option_results}->{hostname}) . '_' . md5_hex($self->{option_results}->{api_username})); + my $session_id = $self->{cache_connect}->get(name => 'session_id'); + my $md5_secret_cache = $self->{cache_connect}->get(name => 'md5_secret'); + my $md5_secret = md5_hex($self->{api_username} . $self->{api_password}); + + if ($has_cache_file == 0 || + !defined($session_id) || + (defined($md5_secret_cache) && $md5_secret_cache ne $md5_secret) + ) { + my $json_request = { username => $self->{api_username}, password => $self->{api_password} }; + my $encoded = centreon::plugins::misc::json_encode($json_request); + unless($encoded) { + $self->{output}->add_option_msg(short_msg => 'cannot encode json request'); + $self->{output}->option_exit(); + } + + my ($content) = $self->{http}->request( + method => 'POST', + url_path => '/rest/access/login', + query_form_post => $encoded, + warning_status => '', unknown_status => '', critical_status => '' + ); + + if ($self->{http}->get_code() != 200) { + $self->{output}->add_option_msg(short_msg => "Authentication error [code: '" . $self->{http}->get_code() . "'] [message: '" . $self->{http}->get_message() . "']"); + $self->{output}->option_exit(); + } + + my (@cookies) = $self->{http}->get_first_header(name => 'Set-Cookie'); + foreach my $cookie (@cookies) { + $session_id = $1 if ($cookie =~ /sessionid=(.+?);/); + } + + if (!defined($session_id)) { + $self->{output}->add_option_msg(short_msg => "Cannot get cookie"); + $self->{output}->option_exit(); + } + + my $datas = { + updated => time(), + session_id => $session_id, + md5_secret => $md5_secret + }; + $self->{cache_connect}->write(data => $datas); + } + + return $session_id; +} + +sub credentials { + my ($self, %options) = @_; + + my $creds = {}; + if ($self->{token} ne '') { + $creds = { + header => ['Authorization: Bearer ' . $self->{token}], + unknown_status => $self->{unknown_http_status}, + warning_status => $self->{warning_http_status}, + critical_status => $self->{critical_http_status} + }; + } else { + my $session_id = $self->get_session_id(); + $creds = { + header => ['Cookie: sessionid=' . $session_id], + warning_status => '', + unknown_status => '', + critical_status => '' + }; + } + + return $creds; +} + +sub request { + my ($self, %options) = @_; + + my $endpoint = $options{endpoint}; + + $self->settings(); + my $creds = $self->credentials(); + + my $content = $self->{http}->request( + method => $options{method}, + url_path => $endpoint, + get_param => $options{get_param}, + query_form_post => $options{query_form_post}, + %$creds + ); + + # Maybe there is an issue with the token. So we retry. + if ($self->{http}->get_code() < 200 || $self->{http}->get_code() >= 300) { + $self->clean_session_id(); + $creds = $self->credentials(); + $creds->{unknown_status} = $self->{unknown_http_status}; + $creds->{warning_status} = $self->{warning_status}; + $creds->{critical_http_status} = $self->{critical_http_status}; + $content = $self->{http}->request( + method => $options{method}, + url_path => $endpoint, + get_param => $options{get_param}, + query_form_post => $options{query_form_post}, + %$creds + ); + } + + return if (defined($options{skip_decode})); + + my $decoded = centreon::plugins::misc::json_decode($content); + if (!defined($decoded)) { + $self->{output}->add_option_msg(short_msg => 'Error while retrieving data (add --debug option for detailed message)'); + $self->{output}->option_exit(); + } + + return $decoded; +} + +1; + +__END__ + +=head1 NAME + +Exense Step API + +=head1 SYNOPSIS + +Exense Step API + +=head1 REST API OPTIONS + +=over 8 + +=item B<--hostname> + +API hostname. + +=item B<--port> + +API port (default: 443) + +=item B<--proto> + +Specify https if needed (default: 'https') + +=item B<--token> + +Use token authentication. + +=item B<--api-username> + +Set API username + +=item B<--api-password> + +Set API password + +=item B<--timeout> + +Set HTTP timeout + +=back + +=head1 DESCRIPTION + +B. + +=cut diff --git a/src/apps/exense/step/restapi/mode/listplans.pm b/src/apps/exense/step/restapi/mode/listplans.pm new file mode 100644 index 000000000..e042c996a --- /dev/null +++ b/src/apps/exense/step/restapi/mode/listplans.pm @@ -0,0 +1,147 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::exense::step::restapi::mode::listplans; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; +use JSON::XS; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'tenant-name:s' => { name => 'tenant_name' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); + + if (!defined($self->{option_results}->{tenant_name}) || $self->{option_results}->{tenant_name} eq '') { + $self->{option_results}->{tenant_name} = '[All]'; + } +} + +sub manage_selection { + my ($self, %options) = @_; + + my $payload = $self->{option_results}->{tenant_name}; + $options{custom}->request(method => 'POST', endpoint => '/rest/tenants/current', query_form_post => $payload, skip_decode => 1); + + $payload = { + skip => 0, + limit => 4000000, + filters => [ + { + collectionFilter => { type => 'True', field => 'visible' } + } + ], + 'sort' => { + 'field' => 'attributes.name', + 'direction' => 'ASCENDING' + } + }; + $payload = centreon::plugins::misc::json_encode($payload); + unless($payload) { + $self->{output}->add_option_msg(short_msg => 'cannot encode json request'); + $self->{output}->option_exit(); + } + + my $plans = $options{custom}->request(method => 'POST', endpoint => '/rest/table/plans', query_form_post => $payload); + + my $results = []; + foreach my $plan (@{$plans->{data}}) { + # skip plans created by keyword single execution + next if ($plan->{visible} =~ /false|0/); + + push @$results, { + id => $plan->{id}, + name => $plan->{attributes}->{name} + }; + } + + return $results; +} + +sub run { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->output_add( + long_msg => sprintf( + '[id: %s][name: %s]', + $_->{id}, + $_->{name} + ) + ); + } + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List plans:' + ); + + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); +} + +sub disco_format { + my ($self, %options) = @_; + + $self->{output}->add_disco_format(elements => ['id', 'name']); +} + +sub disco_show { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->add_disco_entry( + id => $_->{id}, + name => $_->{name} + ); + } +} + +1; + +__END__ + +=head1 MODE + +List plans. + +=over 8 + +=item B<--tenant-name> + +Check plan of a tenant (default: '[All]'). + +=back + +=cut diff --git a/src/apps/exense/step/restapi/mode/listtenants.pm b/src/apps/exense/step/restapi/mode/listtenants.pm new file mode 100644 index 000000000..da1fd82e5 --- /dev/null +++ b/src/apps/exense/step/restapi/mode/listtenants.pm @@ -0,0 +1,111 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::exense::step::restapi::mode::listtenants; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; +use JSON::XS; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options(arguments => {}); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $tenants = $options{custom}->request(method => 'GET', endpoint => '/rest/tenants'); + + my $results = []; + foreach my $tenant (@$tenants) { + push @$results, { + name => $tenant->{name}, + projectId => defined($tenant->{projectId}) ? $tenant->{projectId} : '', + global => $tenant->{global} =~ /true|1/i ? 1 : 0 + }; + } + + return $results; +} + +sub run { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->output_add( + long_msg => sprintf( + '[name: %s][projectId: %s][global: %s]', + $_->{name}, + $_->{projectId}, + $_->{global} + ) + ); + } + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List tenants:' + ); + + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); +} + +sub disco_format { + my ($self, %options) = @_; + + $self->{output}->add_disco_format(elements => ['name', 'projectId', 'global']); +} + +sub disco_show { + my ($self, %options) = @_; + + my $results = $self->manage_selection(%options); + foreach (@$results) { + $self->{output}->add_disco_entry(%$_); + } +} + +1; + +__END__ + +=head1 MODE + +List tenants. + +=over 8 + +=back + +=cut diff --git a/src/apps/exense/step/restapi/mode/plans.pm b/src/apps/exense/step/restapi/mode/plans.pm new file mode 100644 index 000000000..af077a018 --- /dev/null +++ b/src/apps/exense/step/restapi/mode/plans.pm @@ -0,0 +1,507 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::exense::step::restapi::mode::plans; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use DateTime; +use POSIX; +use JSON::XS; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc; + +my $unitdiv = { s => 1, w => 604800, d => 86400, h => 3600, m => 60 }; +my $unitdiv_long = { s => 'seconds', w => 'weeks', d => 'days', h => 'hours', m => 'minutes' }; + +sub custom_last_exec_perfdata { + my ($self, %options) = @_; + + $self->{output}->perfdata_add( + nlabel => $self->{nlabel} . '.' . $unitdiv_long->{ $self->{instance_mode}->{option_results}->{unit} }, + instances => $self->{result_values}->{name}, + unit => $self->{instance_mode}->{option_results}->{unit}, + value => $self->{result_values}->{lastExecSeconds} >= 0 ? floor($self->{result_values}->{lastExecSeconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }) : $self->{result_values}->{lastExecSeconds}, + warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}), + critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}), + min => 0 + ); +} + +sub custom_last_exec_threshold { + my ($self, %options) = @_; + + return $self->{perfdata}->threshold_check( + value => $self->{result_values}->{lastExecSeconds} >= 0 ? floor($self->{result_values}->{lastExecSeconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }) : $self->{result_values}->{lastExecSeconds}, + threshold => [ + { label => 'critical-' . $self->{thlabel}, exit_litteral => 'critical' }, + { label => 'warning-'. $self->{thlabel}, exit_litteral => 'warning' }, + { label => 'unknown-'. $self->{thlabel}, exit_litteral => 'unknown' } + ] + ); +} + +sub custom_duration_perfdata { + my ($self, %options) = @_; + + $self->{output}->perfdata_add( + nlabel => $self->{nlabel} . '.' . $unitdiv_long->{ $self->{instance_mode}->{option_results}->{unit} }, + instances => $self->{result_values}->{name}, + unit => $self->{instance_mode}->{option_results}->{unit}, + value => floor($self->{result_values}->{durationSeconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}), + critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}), + min => 0 + ); +} + +sub custom_duration_threshold { + my ($self, %options) = @_; + + return $self->{perfdata}->threshold_check( + value => floor($self->{result_values}->{durationSeconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + threshold => [ + { label => 'critical-' . $self->{thlabel}, exit_litteral => 'critical' }, + { label => 'warning-'. $self->{thlabel}, exit_litteral => 'warning' }, + { label => 'unknown-'. $self->{thlabel}, exit_litteral => 'unknown' } + ] + ); +} + +sub custom_execution_status_output { + my ($self, %options) = @_; + + return sprintf( + "result: %s, status: %s", + $self->{result_values}->{result}, + $self->{result_values}->{status} + ); +} + +sub plan_long_output { + my ($self, %options) = @_; + + return sprintf( + "checking plan '%s'", + $options{instance_value}->{name} + ); +} + +sub prefix_plan_output { + my ($self, %options) = @_; + + my $plan_name = defined $options{instance_value}->{name} ? $options{instance_value}->{name} : 'unknown'; + + return sprintf("plan '%s' ", $plan_name); +} + +sub prefix_global_output { + my ($self, %options) = @_; + + return 'Number of plans '; +} + +sub prefix_execution_output { + my ($self, %options) = @_; + + return sprintf( + "execution '%s' [env: %s] [started: %s] ", + $options{instance_value}->{executionId}, + $options{instance_value}->{environment}, + $options{instance_value}->{started} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'global', type => 0, cb_prefix_output => 'prefix_global_output' }, + { name => 'plans', type => 3, cb_prefix_output => 'prefix_plan_output', cb_long_output => 'prefix_plan_output', indent_long_output => ' ', message_multiple => 'All plans are ok', + group => [ + { name => 'exec_detect', type => 0 }, + { name => 'failed', type => 0 }, + { name => 'timers', type => 0, skipped_code => { -10 => 1 } }, + { name => 'executions', type => 1, cb_prefix_output => 'prefix_execution_output', message_multiple => 'executions are ok', display_long => 1, sort_method => 'num', skipped_code => { -10 => 1 } } + ] + } + ]; + + $self->{maps_counters}->{global} = [ + { label => 'plans-detected', display_ok => 0, nlabel => 'plans.detected.count', set => { + key_values => [ { name => 'detected' } ], + output_template => 'detected: %s', + perfdatas => [ + { template => '%s', min => 0 } + ] + } + } + ]; + + $self->{maps_counters}->{exec_detect} = [ + { label => 'plan-executions-detected', nlabel => 'plan.executions.detected.count', set => { + key_values => [ { name => 'detected' }, { name => 'name' } ], + output_template => 'number of plan executions detected: %s', + perfdatas => [ + { template => '%s', min => 0, label_extra_instance => 1, instance_use => 'name' } + ] + } + } + ]; + + $self->{maps_counters}->{failed} = [ + { label => 'plan-executions-failed-prct', nlabel => 'plan.executions.failed.percentage', set => { + key_values => [ { name => 'failedPrct' }, { name => 'name' } ], + output_template => 'number of failed executions: %.2f %%', + perfdatas => [ + { template => '%.2f', unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'name' } + ] + } + } + ]; + + $self->{maps_counters}->{timers} = [ + { label => 'plan-execution-last', nlabel => 'plan.execution.last', set => { + key_values => [ { name => 'lastExecSeconds' }, { name => 'lastExecHuman' }, { name => 'name' } ], + output_template => 'last execution %s', + output_use => 'lastExecHuman', + closure_custom_perfdata => $self->can('custom_last_exec_perfdata'), + closure_custom_threshold_check => $self->can('custom_last_exec_threshold') + } + }, + { label => 'plan-running-duration', nlabel => 'plan.running.duration', set => { + key_values => [ { name => 'durationSeconds' }, { name => 'durationHuman' }, { name => 'name' } ], + output_template => 'running duration %s', + output_use => 'durationHuman', + closure_custom_perfdata => $self->can('custom_duration_perfdata'), + closure_custom_threshold_check => $self->can('custom_duration_threshold') + } + } + ]; + + $self->{maps_counters}->{executions} = [ + { + label => 'plan-execution-status', + type => 2, + set => { + key_values => [ + { name => 'status' }, {name => 'result' }, { name => 'planName' } + ], + closure_custom_output => $self->can('custom_execution_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-plan-id:s' => { name => 'filter_plan_id' }, + 'filter-plan-name:s' => { name => 'filter_plan_name' }, + 'filter-environment:s' => { name => 'filter_environment' }, + 'since-timeperiod:s' => { name => 'since_timeperiod' }, + 'status-failed:s' => { name => 'status_failed' }, + 'only-last-execution' => { name => 'only_last_execution' }, + 'tenant-name:s' => { name => 'tenant_name' }, + 'timezone:s' => { name => 'timezone' }, + 'unit:s' => { name => 'unit', default => 's' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + if ($self->{option_results}->{unit} eq '' || !defined($unitdiv->{$self->{option_results}->{unit}})) { + $self->{option_results}->{unit} = 's'; + } + + if (!defined($self->{option_results}->{since_timeperiod}) || $self->{option_results}->{since_timeperiod} eq '') { + $self->{option_results}->{since_timeperiod} = 86400; + } + + if (!defined($self->{option_results}->{tenant_name}) || $self->{option_results}->{tenant_name} eq '') { + $self->{option_results}->{tenant_name} = '[All]'; + } + + $self->{tz} = {}; + if (defined($self->{option_results}->{timezone}) && $self->{option_results}->{timezone} ne '') { + $self->{tz} = centreon::plugins::misc::set_timezone(name => $self->{option_results}->{timezone}); + } + + $self->{option_results}->{timezone} = 'UTC' if (!defined($self->{option_results}->{timezone}) || $self->{option_results}->{timezone} +eq ''); + + if (!defined($self->{option_results}->{status_failed}) || $self->{option_results}->{status_failed} eq '') { + $self->{option_results}->{status_failed} = '%{result} =~ /technical_error|failed|interrupted/i'; + } + + $self->{option_results}->{status_failed} =~ s/%\{(.*?)\}/\$values->{$1}/g; + $self->{option_results}->{status_failed} =~ s/%\((.*?)\)/\$values->{$1}/g; +} + +sub manage_selection { + my ($self, %options) = @_; + + my $status_filter = {}; + if (defined($self->{option_results}->{filter_status}) && $self->{option_results}->{filter_status}[0] ne '') { + $status_filter->{statusFilter} = $self->{option_results}->{filter_status}; + } + + my $payload = $self->{option_results}->{tenant_name}; + $options{custom}->request(method => 'POST', endpoint => '/rest/tenants/current', query_form_post => $payload, skip_decode => 1); + + $payload = { + skip => 0, + limit => 4000000, + filters => [ + { + collectionFilter => { type => 'True', field => 'visible' } + } + ], + 'sort' => { + 'field' => 'attributes.name', + 'direction' => 'ASCENDING' + } + }; + eval { + $payload = encode_json($payload); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => 'cannot encode json request'); + $self->{output}->option_exit(); + } + + my $plans = $options{custom}->request(method => 'POST', endpoint => '/rest/table/plans', query_form_post => $payload); + + my $ctime = time(); + my $filterTime = ($ctime - $self->{option_results}->{since_timeperiod}) * 1000; + + $payload = { + skip => 0, + limit => 4000000, + filters => [ + { + collectionFilter => { type => 'Gte', field => 'startTime', value => $filterTime } + } + ], + 'sort' => { + 'field' => 'startTime', + 'direction' => 'DESCENDING' + } + }; + eval { + $payload = encode_json($payload); + }; + if ($@) { + $self->{output}->add_option_msg(short_msg => 'cannot encode json request'); + $self->{output}->option_exit(); + } + + my $executions = $options{custom}->request(method => 'POST', endpoint => '/rest/table/executions', query_form_post => $payload); + + $self->{global} = { detected => 0 }; + $self->{plans} = {}; + foreach my $plan (@{$plans->{data}}) { + # skip plans created by keyword single execution + next if (defined $plan->{visible} && $plan->{visible} =~ /false|0/); + next if (defined($self->{option_results}->{filter_plan_id}) && $self->{option_results}->{filter_plan_id} ne '' && + $plan->{id} !~ /$self->{option_results}->{filter_plan_id}/); + next if (defined($self->{option_results}->{filter_plan_name}) && $self->{option_results}->{filter_plan_name} ne '' && + $plan->{attributes}->{name} !~ /$self->{option_results}->{filter_plan_name}/); + + $self->{global}->{detected}++; + + $self->{plans}->{ $plan->{id} } = { + name => $plan->{attributes}->{name}, + exec_detect => { detected => 0, name => $plan->{attributes}->{name} }, + failed => { failedPrct => 0, name => $plan->{attributes}->{name} }, + timers => {}, + executions => {} + }; + + my ($last_exec, $older_running_exec); + my ($failed, $total) = (0, 0); + my $i = 0; + foreach my $plan_exec (@{$executions->{data}}) { + next if (!defined($plan_exec->{planId})); + next if ($plan_exec->{planId} ne $plan->{id}); + $plan_exec->{startTimeSec} = $plan_exec->{startTime} / 1000; + next if ($plan_exec->{startTimeSec} < ($ctime - $self->{option_results}->{since_timeperiod})); + next if (defined($self->{option_results}->{filter_environment}) && $self->{option_results}->{filter_environment} ne '' && + $plan_exec->{executionParameters}->{customParameters}->{env} !~ /$self->{option_results}->{filter_environment}/); + + # if the endTime is empty, we store this older running execution for later + if (!defined($plan_exec->{endTime}) || $plan_exec->{endTime} eq '') { + $older_running_exec = $plan_exec; + } + if (!defined($last_exec)) { + $last_exec = $plan_exec; + } + + $self->{plans}->{ $plan->{id} }->{exec_detect}->{detected}++; + $failed++ if ($self->{output}->test_eval(test => $self->{option_results}->{status_failed}, values => { result => lc($plan_exec->{result}), status => lc($plan_exec->{status}) })); + $total++; + + my $dt = DateTime->from_epoch(epoch => $plan_exec->{startTimeSec}, %{$self->{tz}}); + my $timeraised = sprintf( + '%02d-%02d-%02dT%02d:%02d:%02d (%s)', $dt->year, $dt->month, $dt->day, $dt->hour, $dt->minute, $dt->second, $self->{option_results}->{timezone} + ); + $self->{plans}->{ $plan->{id} }->{executions}->{$i} = { + executionId => $plan_exec->{id}, + planName => $plan->{attributes}->{name}, + environment => $plan_exec->{executionParameters}->{customParameters}->{env}, + started => $timeraised, + status => lc($plan_exec->{status}), + result => lc($plan_exec->{result}) + }; + $i++; + + last if (defined($self->{option_results}->{only_last_execution})); + } + + $self->{plans}->{ $plan->{id} }->{failed}->{failedPrct} = $total > 0 ? $failed * 100 / $total : 0; + + if (defined($last_exec)) { + $self->{plans}->{ $plan->{id} }->{timers} = { + name => $plan->{attributes}->{name}, + lastExecSeconds => defined($last_exec->{startTime}) ? $ctime - $last_exec->{startTimeSec} : -1, + lastExecHuman => defined($last_exec->{startTime}) ? centreon::plugins::misc::change_seconds(value => $ctime - $last_exec->{startTimeSec}) : 'never' + }; + } + + if (defined($older_running_exec)) { + my $duration = $ctime - $older_running_exec->{startTime}; + $self->{plans}->{ $plan->{name} }->{timers}->{durationSeconds} = $duration; + $self->{plans}->{ $plan->{name} }->{timers}->{durationHuman} = centreon::plugins::misc::change_seconds(value => $duration); + } + } +} + +1; + +__END__ + +=head1 MODE + +Check plans. + +=over 8 + +=item B<--tenant-name> + +Check plan of a tenant (default: '[All]'). + +=item B<--filter-plan-id> + +Filter plans by plan ID. + +=item B<--filter-plan-name> + +Filter plans by plan name. + +=item B<--filter-environment> + +Filter plan executions by environment name. + +=item B<--since-timeperiod> + +Time period to get plans executions information (in seconds. default: 86400). + +=item B<--only-last-execution> + +Check only last plan execution. + +=item B<--timezone> + +Define timezone for start/end plan execution time (default is 'UTC'). + +=item B<--status-failed> + +Expression to define status failed (default: '%{result} =~ /technical_error|failed|interrupted/i'). + +=item B<--unknown-plan-execution-status> + +Set unknown threshold for last plan execution status. +You can use the following variables: %{status}, %{planName} + +=item B<--warning-plan-execution-status> + +Set warning threshold for last plan execution status. +You can use the following variables: %{status}, %{planName} + +=item B<--critical-plan-execution-status> + +Set critical threshold for last plan execution status. +You can use the following variables: %{status}, %{planName} + +=item B<--warning-plans-detected> + +Thresholds. + +=item B<--critical-plans-detected> + +Thresholds. + +=item B<--warning-plan-executions-detected> + +Thresholds. + +=item B<--critical-plan-executions-detected> + +Thresholds. + +=item B<--warning-plan-executions-failed-prct> + +Thresholds. + +=item B<--critical-plan-executions-failed-prct> + +Thresholds. + +=item B<--warning-plan-execution-last> + +Thresholds. + +=item B<--critical-plan-execution-last> + +Thresholds. + +=item B<--warning-plan-running-duration> + +Thresholds. + +=item B<--critical-plan-running-duration> + +Thresholds. + + +=back + +=cut diff --git a/src/apps/exense/step/restapi/plugin.pm b/src/apps/exense/step/restapi/plugin.pm new file mode 100644 index 000000000..39195b45c --- /dev/null +++ b/src/apps/exense/step/restapi/plugin.pm @@ -0,0 +1,51 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::exense::step::restapi::plugin; + +use strict; +use warnings; +use base qw(centreon::plugins::script_custom); + +sub new { + my ($class, %options) = @_; + + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $self->{modes} = { + 'list-plans' => 'apps::exense::step::restapi::mode::listplans', + 'list-tenants' => 'apps::exense::step::restapi::mode::listtenants', + 'plans' => 'apps::exense::step::restapi::mode::plans' + }; + + $self->{custom_modes}->{api} = 'apps::exense::step::restapi::custom::api'; + return $self; +} + +1; + +__END__ + +=head1 PLUGIN DESCRIPTION + +Check Exense Step using Rest API. + +=cut diff --git a/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm b/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm index 1641aa12d..afc4d33ea 100644 --- a/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm +++ b/src/apps/monitoring/iplabel/ekara/restapi/mode/scenarios.pm @@ -53,7 +53,16 @@ sub set_counters { { name => 'scenarios', type => 3, cb_prefix_output => 'prefix_scenario_output', cb_long_output => 'prefix_scenario_output', indent_long_output => ' ', message_multiple => 'All scenarios are ok', group => [ { name => 'global', type => 0, skipped_code => { -10 => 1 } }, - { name => 'steps', display_long => 1, cb_prefix_output => 'prefix_steps_output', message_multiple => 'All steps are ok', type => 1, skipped_code => { -10 => 1 } } + { + name => 'steps', + type => 1, + cb_prefix_output => 'prefix_steps_output', + display_long => 1, + message_multiple => 'All steps are ok', + skipped_code => { -10 => 1 }, + sort_method => 'num', + sort_attribute => 'index' + } ] } ]; @@ -98,7 +107,7 @@ sub set_counters { ]; $self->{maps_counters}->{steps} = [ { label => 'time-step', nlabel => 'scenario.step.time.milliseconds', set => { - key_values => [ { name => 'time_step' }, { name => 'display' }, { name => 'last_exec' } ], + key_values => [ { name => 'time_step' }, { name => 'display' }, { name => 'last_exec' }, { name => 'index' } ], output_template => 'time step: %s ms', perfdatas => [ { template => '%s', unit => 'ms', min => 0, label_extra_instance => 1 } @@ -106,7 +115,7 @@ sub set_counters { } }, { label => 'time-total', nlabel => 'scenario.steps.time.total.milliseconds', set => { - key_values => [ { name => 'time_total' }, { name => 'display' }, { name => 'last_exec' } ], + key_values => [ { name => 'time_total' }, { name => 'display' }, { name => 'last_exec' }, { name => 'index' } ], output_template => 'time total: %s ms', perfdatas => [ { template => '%s', unit => 'ms', min => 0, label_extra_instance => 1 } @@ -209,6 +218,7 @@ sub manage_selection { $self->{scenarios}->{ $scenario->{scenarioName} }->{steps}->{ $self->{scenarios}->{ $scenario->{scenarioName} }->{steps_index}->{ $step_metrics->{stepId} } }->{ $step_metrics->{metric} } = $step_metrics->{value}; $self->{scenarios}->{ $scenario->{scenarioName} }->{steps}->{ $self->{scenarios}->{ $scenario->{scenarioName} }->{steps_index}->{ $step_metrics->{stepId} } }->{last_exec} = POSIX::strftime('%d-%m-%Y %H:%M:%S %Z', localtime($exec_time)); $self->{scenarios}->{ $scenario->{scenarioName} }->{steps}->{ $self->{scenarios}->{ $scenario->{scenarioName} }->{steps_index}->{ $step_metrics->{stepId} } }->{display} = $self->{scenarios}->{ $scenario->{scenarioName} }->{steps_index}->{ $step_metrics->{stepId} }; + $self->{scenarios}->{ $scenario->{scenarioName} }->{steps}->{ $self->{scenarios}->{ $scenario->{scenarioName} }->{steps_index}->{ $step_metrics->{stepId} } }->{index} = $step_metrics->{stepId}; } } @@ -254,14 +264,53 @@ Syntax: C<--warning-scenario-status='%{status} =~ "xxx"'> Critical threshold for scenario status (default: '%{status} =~ "Failure"'). Syntax: --critical-scenario-status='%{status} =~ "xxx"' -=item B<--warning-*> B<--critical-*> +=item B<--warning-availability> -Thresholds. -Common: 'availability' (%), -For WEB scenarios: 'time-total-allsteps' (ms), 'time-step' (ms), -For HTTPR scenarios: 'time-total' (ms), -FOR BPL scenarios: 'time-interaction' (ms), 'time-total' (ms). +Thresholds in %. +=item B<--critical-availability> + +Thresholds in %. + +=item B<--warning-time-total-allsteps> + +Thresholds in ms for WEB scenarios. + +=item B<--critical-time-total-allsteps> + +Thresholds in ms for WEB scenarios. + +=item B<--warning-time-step> + +Thresholds in ms for WEB scenarios. + +=item B<--critical-time-step> + +Thresholds in ms for WEB scenarios. + +=item B<--warning-time-total> + +Thresholds in ms for HTTPR scenarios. + +=item B<--critical-time-total> + +Thresholds in ms for HTTPR scenarios. + +=item B<--warning-time-interaction> + +Thresholds in ms for BPL scenarios. + +=item B<--critical-time-interaction> + +Thresholds in ms for BPL scenarios. + +=item B<--warning-time-total> + +Thresholds in ms for BPL scenarios. + +=item B<--critical-time-total> + +Thresholds in ms for BPL scenarios. =back diff --git a/src/apps/vmware/vsphere8/esx/mode/cpu.pm b/src/apps/vmware/vsphere8/esx/mode/cpu.pm index 56c6264f4..946f1ab67 100644 --- a/src/apps/vmware/vsphere8/esx/mode/cpu.pm +++ b/src/apps/vmware/vsphere8/esx/mode/cpu.pm @@ -103,7 +103,7 @@ sub set_counters { $self->{maps_counters}->{cpu_usage} = [ { - label => 'usage-percentage', + label => 'usage-prct', type => 1, nlabel => 'cpu.capacity.usage.percentage', set => { @@ -135,6 +135,7 @@ sub set_counters { { value => 'cpu_usage_hertz', template => '%s', + min => 0, max => 'cpu_provisioned_hertz', unit => 'Hz' } @@ -145,7 +146,7 @@ sub set_counters { $self->{maps_counters}->{cpu_contention} = [ { - label => 'contention-percentage', + label => 'contention-prct', type => 1, nlabel => 'cpu.capacity.contention.percentage', set => { @@ -167,7 +168,7 @@ sub set_counters { ]; $self->{maps_counters}->{cpu_demand} = [ { - label => 'demand-percentage', + label => 'demand-prct', type => 1, nlabel => 'cpu.capacity.demand.percentage', set => { @@ -175,7 +176,7 @@ sub set_counters { key_values => [ { name => 'prct_demand' } ], output_use => 'prct_demand', threshold_use => 'prct_demand', - perfdatas => [ { value => 'prct_demand', template => '%s' } ] + perfdatas => [ { value => 'prct_demand', template => '%s', unit => '%', min => 0, max => 100 } ] } }, { @@ -195,6 +196,7 @@ sub set_counters { { value => 'cpu_demand_hertz', template => '%s', + min => 0, max => 'cpu_provisioned_hertz', unit => 'Hz' } @@ -205,7 +207,7 @@ sub set_counters { $self->{maps_counters}->{cpu_corecount} = [ { - label => 'corecount-usage', + label => 'corecount-usage-count', type => 1, nlabel => 'cpu.corecount.usage.count', set => { @@ -302,7 +304,7 @@ __END__ =head1 MODE -Monitor the status of VMware ESX hosts through vSphere 8 REST API. +Monitor the CPU stats of VMware ESX hosts through vSphere 8 REST API. Meaning of the available counters in the VMware API: - cpu.capacity.provisioned.HOST Capacity in kHz of the physical CPU cores. @@ -337,61 +339,53 @@ Add counter related to CPU core count: C: The number of virtual processors running on the host. -=item B<--warning-usage-percentage> +=item B<--warning-contention-prct> -Threshold in %. +Threshold in percentage. -=item B<--critical-usage-percentage> +=item B<--critical-contention-prct> -Threshold in %. +Threshold in percentage. -=item B<--warning-usage-frequency> +=item B<--warning-corecount-usage-count> -Threshold in Hz. +Threshold. -=item B<--critical-usage-frequency> +=item B<--critical-corecount-usage-count> -Threshold in Hz. - -=item B<--warning-contention-percentage> - -Threshold in %. - -=item B<--critical-contention-percentage> - -Threshold in %. - -=item B<--warning-contention-frequency> - -Threshold in Hz. - -=item B<--critical-contention-frequency> - -Threshold in Hz. - -=item B<--warning-demand-percentage> - -Threshold in %. - -=item B<--critical-demand-percentage> - -Threshold in %. +Threshold. =item B<--warning-demand-frequency> -Threshold in Hz. +Threshold in Hertz. =item B<--critical-demand-frequency> -Threshold in Hz. +Threshold in Hertz. -=item B<--warning-corecount-usage> +=item B<--warning-demand-prct> -Threshold in number of cores. +Threshold in percentage. -=item B<--critical-corecount-usage> +=item B<--critical-demand-prct> -Threshold in number of cores. +Threshold in percentage. + +=item B<--warning-usage-frequency> + +Threshold in Hertz. + +=item B<--critical-usage-frequency> + +Threshold in Hertz. + +=item B<--warning-usage-prct> + +Threshold in percentage. + +=item B<--critical-usage-prct> + +Threshold in percentage. =back diff --git a/src/apps/vmware/vsphere8/esx/mode/diskio.pm b/src/apps/vmware/vsphere8/esx/mode/diskio.pm new file mode 100644 index 000000000..2deef08d0 --- /dev/null +++ b/src/apps/vmware/vsphere8/esx/mode/diskio.pm @@ -0,0 +1,117 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::vmware::vsphere8::esx::mode::diskio; +use strict; +use warnings; +use base qw(apps::vmware::vsphere8::esx::mode); + +my @counters = ( + "disk.throughput.usage.HOST", + "disk.throughput.contention.HOST" +); + +sub custom_diskio_output { + my ($self, %options) = @_; + + my $msg = sprintf("Disk throughput usage: %s %s/s", + $self->{perfdata}->change_bytes(value => $self->{result_values}->{throughput_bps}) + ); + return $msg; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'diskio', type => 0 } + ]; + + $self->{maps_counters}->{diskio} = [ + { + label => 'usage-bps', + type => 1, + nlabel => 'disk.throughput.usage.bytespersecond', + set => { + key_values => [ { name => 'disk.throughput.usage.HOST' }, { name => 'throughput_bps' } ], + closure_custom_output => $self->can('custom_diskio_output'), + perfdatas => [ { value => 'throughput_bps', template => '%s', unit => 'Bps' } ] + } + }, + { + label => 'contention-ms', + type => 1, + nlabel => 'disk.throughput.contention.milliseconds', + set => { + key_values => [ { name => 'disk.throughput.contention.HOST' }], + output_template => 'Disk throughput contention is %s ms', + output_use => 'disk.throughput.contention.HOST', + threshold_use => 'disk.throughput.contention.HOST', + perfdatas => [ { value => 'disk.throughput.contention.HOST', template => '%s', unit => 'ms' } ] + } + } + ]; +} + +sub manage_selection { + my ($self, %options) = @_; + + my %structure = map { + $_ => $self->get_esx_stats(%options, cid => $_, esx_id => $self->{esx_id}, esx_name => $self->{esx_name} ) + } @counters; + $self->{diskio} = \%structure; + + if ( defined($structure{'disk.throughput.usage.HOST'}) ) { + $self->{diskio}->{throughput_bps} = $structure{'disk.throughput.usage.HOST'} * 1024; + } +} + +1; + +=head1 MODE + +Monitor the disk throughput and contention of VMware ESX hosts through vSphere 8 REST API. + + Meaning of the available counters in the VMware API: + - disk.throughput.usage.HOST Aggregated disk I/O rate (in kB/s), including the rates for all virtual machines running on the host during the collection interval + - disk.throughput.contention.HOST Average amount of time (in milliseconds) for an I/O operation to complete successfully + +=over 8 + +=item B<--warning-contention-ms> + +Threshold in milliseconds. + +=item B<--critical-contention-ms> + +Threshold in milliseconds. + +=item B<--warning-usage-bps> + +Threshold in bytes per second. + +=item B<--critical-usage-bps> + +Threshold in bytes per second. + + +=back + +=cut diff --git a/src/apps/vmware/vsphere8/esx/mode/memory.pm b/src/apps/vmware/vsphere8/esx/mode/memory.pm index cf840236f..07cc10519 100644 --- a/src/apps/vmware/vsphere8/esx/mode/memory.pm +++ b/src/apps/vmware/vsphere8/esx/mode/memory.pm @@ -52,7 +52,7 @@ sub set_counters { $self->{maps_counters}->{memory} = [ { - label => 'vms-usage-percentage', + label => 'usage-prct', type => 1, nlabel => 'vms.memory.usage.percentage', set => { @@ -72,7 +72,7 @@ sub set_counters { } }, { - label => 'vms-usage-bytes', + label => 'usage-bytes', type => 1, nlabel => 'vms.memory.usage.bytes', set => { @@ -119,29 +119,32 @@ sub manage_selection { Monitor the memory of VMware ESX hosts consumed by the virtual machines through vSphere 8 REST API. Meaning of the available counters in the VMware API: - mem.reservedCapacityPct.HOST Percent of memory that has been reserved either through VMkernel use, by userworlds or due to virtual machine memory reservations. - mem.capacity.provisioned.HOST Total amount of memory available to the host. - mem.capacity.usable.HOST Amount of physical memory available for use by virtual machines on this host - mem.capacity.usage.HOST Amount of physical memory actively used - mem.capacity.contention.HOST Percentage of time VMs are waiting to access swapped, compressed or ballooned memory. - mem.consumed.vms.HOST Amount of physical memory consumed by VMs on this host. - mem.consumed.userworlds.HOST Amount of physical memory consumed by userworlds on this host - + - mem.reservedCapacityPct.HOST Percent of memory that has been reserved either through VMkernel use, by userworlds or due to virtual machine memory reservations. + - mem.capacity.provisioned.HOST Total amount of memory available to the host. + - mem.capacity.usable.HOST Amount of physical memory available for use by virtual machines on this host + - mem.capacity.usage.HOST Amount of physical memory actively used + - mem.capacity.contention.HOST Percentage of time VMs are waiting to access swapped, compressed or ballooned memory. + - mem.consumed.vms.HOST Amount of physical memory consumed by VMs on this host. + - mem.consumed.userworlds.HOST Amount of physical memory consumed by userworlds on this host =over 8 -=item B<--warning-vms-usage-percentage> +=item B<--warning-usage-bytes> -Thresholds in percentage. +Threshold in bytes. -=item B<--critical-vms-usage-percentage> +=item B<--critical-usage-bytes> -Thresholds in percentage. +Threshold in bytes. -=item B<--warning-vms-usage-bytes> +=item B<--warning-usage-prct> -Thresholds in bytes. +Threshold in percentage. -=item B<--critical-vms-usage-bytes> +=item B<--critical-usage-prct> -Thresholds in bytes. +Threshold in percentage. + +=back + +=cut diff --git a/src/apps/vmware/vsphere8/esx/mode/network.pm b/src/apps/vmware/vsphere8/esx/mode/network.pm new file mode 100644 index 000000000..42f664a45 --- /dev/null +++ b/src/apps/vmware/vsphere8/esx/mode/network.pm @@ -0,0 +1,197 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::vmware::vsphere8::esx::mode::network; +use strict; +use warnings; +use base qw(apps::vmware::vsphere8::esx::mode); + +my @counters = ( + #'net.throughput.provisioned.HOST', # not used atm + 'net.throughput.usable.HOST', + 'net.throughput.usage.HOST', + #'net.throughput.contention.HOST' # pushed in manage_selection if necessary +); + +sub custom_network_output { + my ($self, %options) = @_; + + my $msg = sprintf("Network throughput usage: %s %s/s of %s %s/s usable", + $self->{perfdata}->change_bytes(value => $self->{result_values}->{usage_bps}), + $self->{perfdata}->change_bytes(value => $self->{result_values}->{max_bps}) + ); + return $msg; +} + +# Skip contention processing if there is no available data +sub skip_contention { + my ($self, %options) = @_; + + return 0 if (defined($self->{contention}) + && ref($self->{contention}) eq 'HASH' + && scalar(keys %{$self->{contention}}) > 0); + + return 1; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'network', type => 0 }, + { name => 'contention', type => 0, cb_init => 'skip_contention' } + + ]; + + $self->{maps_counters}->{network} = [ + { + label => 'usage-bps', + type => 1, + nlabel => 'network.throughput.usage.bytespersecond', + set => { + key_values => [ { name => 'usage_bps' }, { name => 'max_bps' }, { name => 'usage_prct' } ], + closure_custom_output => $self->can('custom_network_output'), + perfdatas => [ { value => 'usage_bps', template => '%s', unit => 'Bps', min => 0, max => 'max_bps' } ] + } + }, + { + label => 'usage-prct', + type => 1, + nlabel => 'network.throughput.usage.percent', + set => { + key_values => [ { name => 'usage_prct' } ], + output_template => "%.2f%% of usable network throughput used", + output_use => "usage_prct", + perfdatas => [ { value => 'usage_prct', template => '%s', unit => '%', min => 0, max => '100' } ] + } + } + ]; + + $self->{maps_counters}->{contention} = [ + { + label => 'contention-count', + type => 1, + nlabel => 'network.throughput.contention.count', + set => { + key_values => [ { name => 'net.throughput.contention.HOST' } ], + output_template => "%d packet(s) dropped", + output_use => "net.throughput.contention.HOST", + perfdatas => [ { value => 'net.throughput.contention.HOST', template => '%s', unit => '' } ] + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + + $options{options}->add_options( + arguments => { + 'add-contention' => { name => 'add_contention' } + } + ); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + + $self->SUPER::check_options(%options); + + # If a threshold is given on rates, we enable the corresponding data collection + if (grep {$_ =~ /contention/ && defined($self->{option_results}->{$_}) && $self->{option_results}->{$_} ne ''} keys %{$self->{option_results}}) { + $self->{option_results}->{add_contention} = 1; + } +} + +sub manage_selection { + my ($self, %options) = @_; + + push @counters, 'net.throughput.contention.HOST' if ($self->{option_results}->{add_contention}); + + my %structure = map { + $_ => $self->get_esx_stats(%options, cid => $_, esx_id => $self->{esx_id}, esx_name => $self->{esx_name} ) + } @counters; + $self->{network} = {}; + $self->{contention} = {}; + + if ( defined($structure{'net.throughput.usage.HOST'}) && defined($structure{'net.throughput.usable.HOST'})) { + $self->{network}->{usage_bps} = $structure{'net.throughput.usage.HOST'} * 1024; + $self->{network}->{max_bps} = $structure{'net.throughput.usable.HOST'} * 1024; + + if ($structure{'net.throughput.usable.HOST'} != 0) { + $self->{network}->{usage_prct} = 100 * $structure{'net.throughput.usage.HOST'} / $structure{'net.throughput.usable.HOST'}; + } else { + $self->{network}->{usage_prct} = 0; + } + } + if ( defined($structure{'net.throughput.contention.HOST'}) ) { + $self->{contention}->{'net.throughput.contention.HOST'} = $structure{'net.throughput.contention.HOST'}; + } +} + +1; + +=head1 MODE + +Monitor the swap usage of VMware ESX hosts through vSphere 8 REST API. + + - net.throughput.provisioned.HOST The maximum network bandwidth (in kB/s) for the host. + - net.throughput.usable.HOST The currently available network bandwidth (in kB/s) for the host. + - net.throughput.usage.HOST The current network bandwidth usage (in kB/s) for the host. + - net.throughput.contention.HOST The aggregate network droppped packets for the host. + +=over 8 + +=item B<--add-contention> + +Add counters related to network throughput contention. +This option is implicitly enabled if thresholds related to contention are set. + +=item B<--warning-contention-count> + +Threshold. + +=item B<--critical-contention-count> + +Threshold. + +=item B<--warning-usage-bps> + +Threshold in bytes per second. + +=item B<--critical-usage-bps> + +Threshold in bytes per second. + +=item B<--warning-usage-prct> + +Threshold in percentage. + +=item B<--critical-usage-prct> + +Threshold in percentage. + +=back + +=cut diff --git a/src/apps/vmware/vsphere8/esx/mode/power.pm b/src/apps/vmware/vsphere8/esx/mode/power.pm index de41f8e5a..1f6736341 100644 --- a/src/apps/vmware/vsphere8/esx/mode/power.pm +++ b/src/apps/vmware/vsphere8/esx/mode/power.pm @@ -37,7 +37,7 @@ sub set_counters { $self->{maps_counters}->{power} = [ { - label => 'power-usage-watts', + label => 'usage-watts', type => 1, nlabel => 'power.capacity.usage.watts', output_template => 'Power usage is %d Watts', @@ -46,7 +46,7 @@ sub set_counters { key_values => [ { name => 'power.capacity.usage.HOST' } ], output_use => 'power.capacity.usage.HOST', threshold_use => 'power.capacity.usage.HOST', - perfdatas => [ { value => 'power.capacity.usage.HOST', template => '%sW' } ] + perfdatas => [ { value => 'power.capacity.usage.HOST', template => '%s', unit => 'W', min => 0 } ] } } ]; @@ -79,11 +79,11 @@ Since our tests showed that only C was different from =over 8 -=item B<--warning-power-usage-watts> +=item B<--warning-usage-watts> Threshold in Watts. -=item B<--critical-power-usage-watts> +=item B<--critical-usage-watts> Threshold in Watts. diff --git a/src/apps/vmware/vsphere8/esx/mode/swap.pm b/src/apps/vmware/vsphere8/esx/mode/swap.pm new file mode 100644 index 000000000..69a9bbd59 --- /dev/null +++ b/src/apps/vmware/vsphere8/esx/mode/swap.pm @@ -0,0 +1,236 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the 'License'); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an 'AS IS' BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::vmware::vsphere8::esx::mode::swap; +use strict; +use warnings; +use base qw(apps::vmware::vsphere8::esx::mode); + +my @counters = ( + 'mem.swap.current.HOST', + 'mem.swap.target.HOST', + #'mem.swap.readrate.HOST', # pushed in manage_selection if necessary + #'mem.swap.writerate.HOST' # pushed in manage_selection if necessary +); + +sub custom_swap_output { + my ($self, %options) = @_; + + my $msg = sprintf("Swap usage: %s %s (max available is %s %s)", + $self->{perfdata}->change_bytes(value => $self->{result_values}->{used_bytes}), + $self->{perfdata}->change_bytes(value => $self->{result_values}->{max_bytes}) + ); + return $msg; +} + +sub custom_swap_read_rate_output { + my ($self, %options) = @_; + + my $msg = sprintf("Swap read rate is: %s %s/s", + $self->{perfdata}->change_bytes(value => $self->{result_values}->{read_rate_bps}) + ); + return $msg; +} +sub custom_swap_write_rate_output { + my ($self, %options) = @_; + + my $msg = sprintf("Swap write rate is: %s %s/s", + $self->{perfdata}->change_bytes(value => $self->{result_values}->{write_rate_bps}) + ); + return $msg; +} + +sub new { + my ($class, %options) = @_; + + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + + $options{options}->add_options( + arguments => { + 'add-rates' => { name => 'add_rates' } + } + ); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + + $self->SUPER::check_options(%options); + + # If a threshold is given on rates, we enable the corresponding data collection + if (grep {$_ =~ /rate/ && defined($self->{option_results}->{$_}) && $self->{option_results}->{$_} ne ''} keys %{$self->{option_results}}) { + $self->{option_results}->{add_rates} = 1; + } +} + +# Skip rates processing if there is no available data +sub skip_rates { + my ($self, %options) = @_; + + return 0 if (defined($self->{swap_rates}) + && ref($self->{swap_rates}) eq 'HASH' + && scalar(keys %{$self->{swap_rates}}) > 0); + + return 1; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'swap_usage', type => 0 }, + { name => 'swap_rates', type => 0, cb_init => 'skip_rates' } + ]; + + $self->{maps_counters}->{swap_usage} = [ + { + label => 'usage-bytes', + type => 1, + nlabel => 'swap.usage.bytes', + set => { + key_values => [ { name => 'used_bytes' }, { name => 'max_bytes' }, { name => 'used_prct' } ], + closure_custom_output => $self->can('custom_swap_output'), + perfdatas => [ { value => 'used_bytes', template => '%s', unit => 'B', max => 'max_bytes' } ] + }, + }, + { + label => 'usage-prct', + type => 1, + nlabel => 'swap.usage.percent', + set => { + key_values => [ { name => 'used_prct' } ], + output_template => "Percent used: %.2f%%", + output_use => 'used_prct', + perfdatas => [ { value => 'used_prct', template => '%s', unit => '%', min => 0, max => 100 } ] + } + } + ]; + + $self->{maps_counters}->{swap_rates} = [ + { + label => 'read-rate-bps', + type => 1, + nlabel => 'swap.read-rate.bytespersecond', + set => { + closure_custom_output => $self->can('custom_swap_read_rate_output'), + key_values => [ { name => 'read_rate_bps' } ], + perfdatas => [ { value => 'read_rate_bps', template => '%s', unit => 'Bps' } ] + } + }, + { + label => 'write-rate-bps', + type => 1, + nlabel => 'swap.write-rate.bytespersecond', + set => { + closure_custom_output => $self->can('custom_swap_write_rate_output'), + key_values => [ { name => 'write_rate_bps' } ], + perfdatas => [ { value => 'write_rate_bps', template => '%s', unit => 'Bps' } ] + } + } + ]; +} + +sub manage_selection { + my ($self, %options) = @_; + + push @counters, 'mem.swap.readrate.HOST', 'mem.swap.writerate.HOST' if ($self->{option_results}->{add_rates}); + + my %structure = map { + $_ => $self->get_esx_stats(%options, cid => $_, esx_id => $self->{esx_id}, esx_name => $self->{esx_name}) + } @counters; + + $self->{swap_usage} = {}; + + if (defined($structure{'mem.swap.current.HOST'}) && defined($structure{'mem.swap.target.HOST'})) { + $self->{swap_usage}->{used_bytes} = $structure{'mem.swap.current.HOST'} * 1024; + $self->{swap_usage}->{max_bytes} = $structure{'mem.swap.target.HOST'} * 1024; + if ($structure{'mem.swap.target.HOST'} != 0) { + $self->{swap_usage}->{used_prct} = 100 * $structure{'mem.swap.current.HOST'} / $structure{'mem.swap.target.HOST'}; + } + else { + $self->{swap_usage}->{used_prct} = 0; + } + } + + if (defined($structure{'mem.swap.readrate.HOST'})) { + $self->{swap_rates}->{read_rate_bps} = $structure{'mem.swap.readrate.HOST'} * 1024; + } + + if (defined($structure{'mem.swap.writerate.HOST'})) { + $self->{swap_rates}->{write_rate_bps} = $structure{'mem.swap.writerate.HOST'} * 1024; + } +} + +1; + +=head1 MODE + +Monitor the swap usage of VMware ESX hosts through vSphere 8 REST API. + + Meaning of the available counters in the VMware API: + - mem.swap.current.HOST Amount (in kB) of memory that is used by swap. Sum of memory swapped of all powered on VMs and vSphere services on the host. + - mem.swap.target.HOST Target size (in kB) for the virtual machine swap file. The VMkernel manages swapping by comparing swaptarget against swapped. + - mem.swap.readrate.HOST Rate (in kB/s) at which memory is swapped from disk into active memory during the interval. This counter applies to virtual machines and is generally more useful than the swapin counter to determine if the virtual machine is running slow due to swapping, especially when looking at real-time statistics. + - mem.swap.writerate.HOST Rate (in kB/s) at which memory is being swapped from active memory to disk during the current interval. This counter applies to virtual machines and is generally more useful than the swapout counter to determine if the virtual machine is running slow due to swapping, especially when looking at real-time statistics. + +=over 8 + +=item B<--add-rates> + +Add counters related to swap read and write rates. +This option is implicitly enabled if thresholds related to rates are set. + +=item B<--warning-read-rate-bps> + +Threshold in bytes per second. + +=item B<--critical-read-rate-bps> + +Threshold in bytes per second. + +=item B<--warning-usage-bytes> + +Threshold in B. + +=item B<--critical-usage-bytes> + +Threshold in B. + +=item B<--warning-usage-prct> + +Threshold in percentage. + +=item B<--critical-usage-prct> + +Threshold in percentage. + +=item B<--warning-write-rate-bps> + +Threshold in bytes per second. + +=item B<--critical-write-rate-bps> + +Threshold in bytes per second. + +=back + +=cut diff --git a/src/apps/vmware/vsphere8/esx/plugin.pm b/src/apps/vmware/vsphere8/esx/plugin.pm index 6740b224f..53f7fc5b9 100644 --- a/src/apps/vmware/vsphere8/esx/plugin.pm +++ b/src/apps/vmware/vsphere8/esx/plugin.pm @@ -33,9 +33,12 @@ sub new { $self->{modes} = { 'cpu' => 'apps::vmware::vsphere8::esx::mode::cpu', 'discovery' => 'apps::vmware::vsphere8::esx::mode::discovery', + 'disk-io' => 'apps::vmware::vsphere8::esx::mode::diskio', 'host-status' => 'apps::vmware::vsphere8::esx::mode::hoststatus', 'memory' => 'apps::vmware::vsphere8::esx::mode::memory', + 'network' => 'apps::vmware::vsphere8::esx::mode::network', 'power' => 'apps::vmware::vsphere8::esx::mode::power', + 'swap' => 'apps::vmware::vsphere8::esx::mode::swap', }; $self->{custom_modes}->{api} = 'apps::vmware::vsphere8::custom::api'; diff --git a/src/centreon/common/cisco/standard/snmp/mode/configuration.pm b/src/centreon/common/cisco/standard/snmp/mode/configuration.pm index ef725981d..4dfcb7305 100644 --- a/src/centreon/common/cisco/standard/snmp/mode/configuration.pm +++ b/src/centreon/common/cisco/standard/snmp/mode/configuration.pm @@ -24,98 +24,111 @@ use base qw(centreon::plugins::templates::counter); use strict; use warnings; -use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold); - -sub custom_status_perfdata { - my ($self, %options) = @_; - - $self->{output}->perfdata_add(label => 'running_last_changed', unit => 's', - value => sprintf("%d", $self->{result_values}->{running_last_changed}), - min => 0); - $self->{output}->perfdata_add(label => 'running_last_saved', unit => 's', - value => sprintf("%d", $self->{result_values}->{running_last_saved}), - min => 0); - $self->{output}->perfdata_add(label => 'startup_last_changed', unit => 's', - value => sprintf("%d", $self->{result_values}->{startup_last_changed}), - min => 0); -} +use centreon::plugins::misc; sub custom_status_output { my ($self, %options) = @_; - - my $msg = sprintf("Configuration Running Last Changed: %s, Running Last Saved: %s, Startup Last Changed: %s", - ($self->{result_values}->{running_last_changed} > 0) ? centreon::plugins::misc::change_seconds(value => $self->{result_values}->{running_last_changed}) : "-", - ($self->{result_values}->{running_last_saved} > 0) ? centreon::plugins::misc::change_seconds(value => $self->{result_values}->{running_last_saved}) : "-", - ($self->{result_values}->{startup_last_changed} > 0) ? centreon::plugins::misc::change_seconds(value => $self->{result_values}->{startup_last_changed}) : "-"); - return $msg; -} -sub custom_status_calc { - my ($self, %options) = @_; - - $self->{result_values}->{running_last_changed} = $options{new_datas}->{$self->{instance} . '_running_last_changed'}; - $self->{result_values}->{running_last_saved} = $options{new_datas}->{$self->{instance} . '_running_last_saved'}; - $self->{result_values}->{startup_last_changed} = $options{new_datas}->{$self->{instance} . '_startup_last_changed'}; - return 0; + return $self->{result_values}->{output_message}; } sub set_counters { my ($self, %options) = @_; $self->{maps_counters_type} = [ - { name => 'global', type => 0 }, + { name => 'global', type => 0 } ]; - + $self->{maps_counters}->{global} = [ - { label => 'status', threshold => 0, set => { - key_values => [ { name => 'running_last_changed' }, { name => 'running_last_saved' }, { name => 'startup_last_changed' } ], - closure_custom_calc => $self->can('custom_status_calc'), + { + label => 'config-running-ahead', nlabel => 'configuration.running.ahead.since.seconds', + set => { + key_values => [ { name => 'running_ahead' }, { name => 'output_message' } ], closure_custom_output => $self->can('custom_status_output'), - closure_custom_perfdata => $self->can('custom_status_perfdata'), - closure_custom_threshold_check => \&catalog_status_threshold, + perfdatas => [ + { template => '%s', min => 0, unit => 's' } + ] } - }, + } ]; } sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; - - $options{options}->add_options(arguments => - { - "warning-status:s" => { name => 'warning_status', default => '' }, - "critical-status:s" => { name => 'critical_status', default => '%{running_last_changed} > %{running_last_saved}' }, - }); + + $options{options}->add_options(arguments => {}); return $self; } -sub check_options { - my ($self, %options) = @_; - $self->SUPER::check_options(%options); - - $self->change_macros(macros => ['warning_status', 'critical_status']); -} - -my $oid_ccmHistoryRunningLastChanged = '.1.3.6.1.4.1.9.9.43.1.1.1.0'; -my $oid_ccmHistoryRunningLastSaved = '.1.3.6.1.4.1.9.9.43.1.1.2.0'; -my $oid_ccmHistoryStartupLastChanged = '.1.3.6.1.4.1.9.9.43.1.1.3.0'; - sub manage_selection { my ($self, %options) = @_; - $self->{snmp} = $options{snmp}; - $self->{global} = {}; + my $oid_ccmHistoryRunningLastChanged = '.1.3.6.1.4.1.9.9.43.1.1.1.0'; + my $oid_ccmHistoryRunningLastSaved = '.1.3.6.1.4.1.9.9.43.1.1.2.0'; + my $oid_ccmHistoryStartupLastChanged = '.1.3.6.1.4.1.9.9.43.1.1.3.0'; + my $oid_sysUpTime = '.1.3.6.1.2.1.1.3.0'; + my $oid_snmpEngineTime = '.1.3.6.1.6.3.10.2.1.3.0'; + + my $ctime = time(); + my $runningChangedMarginAfterReload = 300; + + my $results = $options{snmp}->get_leef( + oids => [ + $oid_ccmHistoryRunningLastChanged, + $oid_ccmHistoryRunningLastSaved, + $oid_ccmHistoryStartupLastChanged, + $oid_sysUpTime, + $oid_snmpEngineTime + ], + nothing_quit => 1 + ); + + my $uptime = defined($results->{$oid_snmpEngineTime}) ? $results->{$oid_snmpEngineTime} : ($results->{$oid_sysUpTime} / 100); + + my $start_time = $ctime - $uptime; + my $ccmHistoryRunningLastChanged = $start_time + ($results->{$oid_ccmHistoryRunningLastChanged} / 100); + my $ccmHistoryRunningLastSaved = $start_time + ($results->{$oid_ccmHistoryRunningLastSaved} / 100); + my $ccmHistoryStartupLastChanged = $start_time + ($results->{$oid_ccmHistoryStartupLastChanged} / 100); + + $self->{output}->output_add(long_msg => sprintf( + "ccmHistoryRunningLastChanged: %s (%s)", + $ccmHistoryRunningLastChanged, + scalar(localtime($ccmHistoryRunningLastChanged))) + ); + $self->{output}->output_add(long_msg => sprintf( + "ccmHistoryRunningLastSaved: %s (%s)", + $ccmHistoryRunningLastSaved, + scalar(localtime($ccmHistoryRunningLastSaved))) + ); + $self->{output}->output_add(long_msg => sprintf( + "ccmHistoryStartupLastChanged: %s (%s)", + $ccmHistoryStartupLastChanged, + scalar(localtime($ccmHistoryStartupLastChanged))) + ); + + my $runningUnchangedDuration = $ctime - $ccmHistoryRunningLastChanged; + my $startupUnchangedDuration = $ctime - $ccmHistoryStartupLastChanged; + + my $runningAhead = 0; + my $output = 'saved config is up to date'; + if ($runningUnchangedDuration < $startupUnchangedDuration) { + if (($runningUnchangedDuration + $runningChangedMarginAfterReload) > $uptime) { + $output = sprintf("running config has not changed since reload (using a %d second margin)", $runningChangedMarginAfterReload); + } else { + $output = sprintf( + "running config is ahead of startup config since %s. changes will be lost in case of a reboot", + centreon::plugins::misc::change_seconds(value => $runningUnchangedDuration) + ); + $runningAhead = $runningUnchangedDuration; + } + } - $self->{results} = $self->{snmp}->get_leef(oids => [ $oid_ccmHistoryRunningLastChanged, $oid_ccmHistoryRunningLastSaved, - $oid_ccmHistoryStartupLastChanged ], nothing_quit => 1); - $self->{global} = { - running_last_changed => $self->{results}->{$oid_ccmHistoryRunningLastChanged} / 100, - running_last_saved => $self->{results}->{$oid_ccmHistoryRunningLastSaved} / 100, - startup_last_changed => $self->{results}->{$oid_ccmHistoryStartupLastChanged} / 100, + output_message => $output, + running_ahead => $runningAhead } } @@ -129,15 +142,13 @@ Check Cisco changed and saved configurations (CISCO-CONFIG-MAN-MIB). =over 8 -=item B<--warning-status> +=item B<--warning-config-running-ahead> -Define the conditions to match for the status to be WARNING (default: ''). -You can use the following variables: %{running_last_changed}, %{running_last_saved}, %{startup_last_changed} +Thresholds. -=item B<--critical-status> +=item B<--critical-config-running-ahead> -Define the conditions to match for the status to be CRITICAL (default: '%{running_last_changed} > %{running_last_saved}'). -You can use the following variables: %{running_last_changed}, %{running_last_saved}, %{startup_last_changed} +Thresholds. =back diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/listswitches.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/listswitches.pm new file mode 100644 index 000000000..93ef0d537 --- /dev/null +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/listswitches.pm @@ -0,0 +1,203 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package centreon::common::fortinet::fortigate::snmp::mode::listswitches; + +use base qw(centreon::plugins::mode); + +use strict; +use warnings; + +my $mapping_status = { 0 => 'down', 1 => 'up' }; +my $map_admin_connection_state = { 0 => 'discovered', 1 => 'disable', 2 => 'authorized' }; + +my $mapping = { + serial => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.3' },# fgSwDeviceSerialNum + name => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.4' },# fgSwDeviceName + version => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.5' },# fgSwDeviceVersion + admin => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.6', map => $map_admin_connection_state },# fgSwDeviceAuthorized + state => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.7', map => $mapping_status },# fgSwDeviceStatus + ip => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.9' },# fgSwDeviceIp +}; +my $fgSwDeviceEntry = '.1.3.6.1.4.1.12356.101.24.1.1.1'; + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options); + bless $self, $class; + + $options{options}->add_options( + arguments => { + 'filter-name:s' => { name => 'filter_name' }, + 'filter-status:s' => { name => 'filter_status' }, + 'filter-admin:s' => { name => 'filter_admin' }, + 'filter-ip:s' => { name => 'filter_ip' } + } + ); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::init(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + my $snmp_result = $options{snmp}->get_table( + oid => $fgSwDeviceEntry, + start => $mapping->{serial}, + end => $mapping->{ip}, + nothing_quit => 1 + ); + + foreach my $oid ($options{snmp}->oid_lex_sort(sort keys %{$snmp_result})) { + next if ($oid !~ /^$mapping->{serial}->{oid}\.(.*)$/); + my $instance = $1; + + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $result->{name} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add( + long_msg => "skipping '" . $result->{name} . "': no matching filter.", + debug => 1 + ); + next; + } + + if (defined($self->{option_results}->{filter_status}) && $self->{option_results}->{filter_status} ne '' && + $result->{state} !~ /$self->{option_results}->{filter_status}/) { + $self->{output}->output_add( + long_msg => "skipping '" . $result->{state} . "': no matching filter.", + debug => 1 + ); + next; + } + + if (defined($self->{option_results}->{filter_admin}) && $self->{option_results}->{filter_admin} ne '' && + $result->{admin} !~ /$self->{option_results}->{filter_admin}/) { + $self->{output}->output_add( + long_msg => "skipping '" . $result->{admin} . "': no matching filter.", + debug => 1 + ); + next; + } + + if (defined($self->{option_results}->{filter_ip}) && $self->{option_results}->{filter_ip} ne '' && + $result->{ip} !~ /$self->{option_results}->{filter_ip}/) { + $self->{output}->output_add( + long_msg => "skipping '" . $result->{ip} . "': no matching filter.", + debug => 1 + ); + next; + } + + push @{$self->{switch}}, $result; + } +} + +sub run { + my ($self, %options) = @_; + + $self->manage_selection(%options); + + if (scalar(keys @{$self->{switch}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No switch found matching."); + $self->{output}->option_exit(); + } + + foreach (sort @{$self->{switch}}) { + $self->{output}->output_add( + long_msg => + sprintf( + "[Name = %s] [Serial = %s] [IP = %s] [Version = %s] [State = %s] [Admin = %s]", + $_->{name}, + $_->{serial}, + $_->{ip}, + $_->{version}, + $_->{state}, + $_->{admin}, + ) + ); + } + + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List switches:' + ); + $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); + $self->{output}->exit(); +} + +sub disco_format { + my ($self, %options) = @_; + + $self->{output}->add_disco_format(elements => [ 'name', 'serial', 'ip', 'version', 'state', 'admin' ]); +} + +sub disco_show { + my ($self, %options) = @_; + + $self->manage_selection(%options); + + foreach (@{$self->{switch}}) { + $self->{output}->add_disco_entry( + name => $_->{name}, + serial => $_->{serial}, + ip => $_->{ip}, + version => $_->{version}, + state => $_->{state}, + admin => $_->{admin} + ); + } +} + +1; + +__END__ + +=head1 MODE + +List switches managed through Fortigate Switch Controller. + +=over 8 + +=item B<--filter-name> + +Filter switch by name (can be a regexp). + +=item B<--filter-status> + +Filter switch by status + +=item B<--filter-admin> + +Filter switch by admin connection state + +=item B<--filter-ip> + +Filter switch by IP (can be a regexp). + +=back + +=cut \ No newline at end of file diff --git a/src/centreon/common/fortinet/fortigate/snmp/mode/switchusage.pm b/src/centreon/common/fortinet/fortigate/snmp/mode/switchusage.pm new file mode 100644 index 000000000..58607ec56 --- /dev/null +++ b/src/centreon/common/fortinet/fortigate/snmp/mode/switchusage.pm @@ -0,0 +1,258 @@ +# +# Copyright 2024 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package centreon::common::fortinet::fortigate::snmp::mode::switchusage; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold); +use Digest::MD5 qw(md5_hex); + +sub custom_status_output { + my ($self, %options) = @_; + + return 'status: ' . $self->{result_values}->{status} . ' [admin: ' . $self->{result_values}->{admin} . ']'; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { + name => 'switch', + type => 1, + cb_prefix_output => 'prefix_ap_output', + message_multiple => 'All switches are ok', + skipped_code => { -10 => 1 } + } + ]; + + $self->{maps_counters}->{switch} = [ + { label => 'status', threshold => 0, set => { + key_values => [ { name => 'status' }, { name => 'admin' }, { name => 'display' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub {return 0;}, + closure_custom_threshold_check => \&catalog_status_threshold + } + }, + { label => 'cpu', nlabel => 'switch.cpu.utilization.percentage', set => { + key_values => [ { name => 'cpu' }, { name => 'display' } ], + output_template => 'cpu usage: %.2f %%', + perfdatas => [ + { label => 'cpu', template => '%.2f', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' } + ] + } + }, + { label => 'memory', nlabel => 'switch.memory.usage.bytes', set => { + key_values => [ { name => 'memory' }, { name => 'display' } ], + output_template => 'memory usage: %.2f %%', + perfdatas => [ + { label => 'memory', template => '%.2f', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' } + ] + } + } + ]; +} + +sub prefix_ap_output { + my ($self, %options) = @_; + + return "Switch '" . $options{instance_value}->{display} . "' "; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1); + bless $self, $class; + + $options{options}->add_options( + arguments => { + 'filter-name:s' => { name => 'filter_name' }, + 'filter-ip:s' => { name => 'filter_ip' }, + 'unknown-status:s' => { name => 'unknown_status', default => '' }, + 'warning-status:s' => { name => 'warning_status', default => '' }, + 'critical-status:s' => { + name => 'critical_status', + default => '%{admin} eq "authorized" and %{status} eq "down"' + } + } + ); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + $self->change_macros(macros => [ 'unknown_status', 'warning_status', 'critical_status' ]); +} + +my %map_admin_connection_state = ( + 0 => 'discovered', 1 => 'disable', 2 => 'authorized', +); + +my %map_switch_status = ( + 0 => 'down', 1 => 'up' +); + +my $mapping = { + fgSwDeviceAuthorized => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.6', map => \%map_admin_connection_state }, + fgSwDeviceName => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.4' }, + fgSwDeviceIp => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.9' } +}; + +my $mapping2 = { + fgSwDeviceStatus => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.7', map => \%map_switch_status }, + fgSwCpu => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.11' }, + fgSwMemory => { oid => '.1.3.6.1.4.1.12356.101.24.1.1.1.12' } +}; +my $oid_fgSwDeviceTable = '.1.3.6.1.4.1.12356.101.24.1.1.1'; + +sub manage_selection { + my ($self, %options) = @_; + + my $snmp_result = $options{snmp}->get_table( + oid => $oid_fgSwDeviceTable, + start => $mapping->{fgSwDeviceName}->{oid}, + end => $mapping->{fgSwDeviceIp}->{oid}, + nothing_quit => 1 + ); + + $self->{switch} = {}; + foreach my $oid (sort keys %{$snmp_result}) { + next if ($oid !~ /^$mapping->{fgSwDeviceName}->{oid}\.(.*)$/); + my $instance = $1; + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $result->{fgSwDeviceName} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add( + long_msg => "skipping switch '" . $result->{fgSwDeviceName} . "'.", + debug => 1 + ); + next; + } + + if (defined($self->{option_results}->{filter_ip}) && $self->{option_results}->{filter_ip} ne '' && + $result->{fgSwDeviceIp} !~ /$self->{option_results}->{filter_ip}/) { + $self->{output}->output_add( + long_msg => "skipping switch '" . $result->{fgSwDeviceIp} . "'.", + debug => 1 + ); + next; + } + + $self->{switch}->{$instance} = { + display => $result->{fgSwDeviceName}, + admin => $result->{fgSwDeviceAuthorized}, + status => 'n/a', + }; + } + + if (scalar(keys %{$self->{switch}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No switch found."); + $self->{output}->option_exit(); + } + + $options{snmp}->load( + oids => [ + $mapping2->{fgSwDeviceStatus}->{oid}, + $mapping2->{fgSwCpu}->{oid}, + $mapping2->{fgSwMemory}->{oid}, + ], + instances => [ keys %{$self->{switch}} ], + instance_regexp => '^(.*)$' + ); + $snmp_result = $options{snmp}->get_leef(nothing_quit => 1); + + foreach (keys %{$self->{switch}}) { + my $result = $options{snmp}->map_instance(mapping => $mapping2, results => $snmp_result, instance => $_); + + $self->{switch}->{$_}->{status} = $result->{fgSwDeviceStatus}; + $self->{switch}->{$_}->{cpu} = $result->{fgSwCpu}; + $self->{switch}->{$_}->{memory} = $result->{fgSwMemory}; + } + + $self->{cache_name} = 'fortigate_' . $self->{mode} . '_' . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . + (defined($self->{option_results}->{filter_counters}) ? + md5_hex($self->{option_results}->{filter_counters}) : + md5_hex('all')) . '_' . + (defined($self->{option_results}->{filter_name}) ? + md5_hex($self->{option_results}->{filter_name}) : + md5_hex('all')); +} + +1; + +__END__ + +=head1 MODE + +Check switch usage through Fortigate Switch Controller. + +=over 8 + +=item B<--warning-cpu> + +Warning threshold (%). + +=item B<--critical-cpu> + +Critical threshold (%). + +=item B<--warning-memory> + +Warning threshold (%). + +=item B<--critical-memory> + +Critical threshold (%). + +=item B<--filter-name> + +Filter by switch name (can be a regexp). + +=item B<--filter-ip> + +Filter by switch IP (can be a regexp). + +=item B<--unknown-status> + +Define the conditions to match for the status to be UNKNOWN (default: ''). +You can use the following variables: %{admin}, %{status}, %{display} + +=item B<--warning-status> + +Define the conditions to match for the status to be WARNING (default: ''). +You can use the following variables: %{admin}, %{status}, %{display} + +=item B<--critical-status> + +Define the conditions to match for the status to be CRITICAL (default: '%{admin} eq "authorized" and %{status} eq "down"'). +You can use the following variables: %{admin}, %{status}, %{display} + +=back + +=cut diff --git a/src/centreon/plugins/script.pm b/src/centreon/plugins/script.pm index bbd2bd2b5..db3705525 100644 --- a/src/centreon/plugins/script.pm +++ b/src/centreon/plugins/script.pm @@ -353,7 +353,7 @@ sub check_relaunch { } if ($uid != $>) { if ($> == 0) { - unshift @$args, '-s', '/bin/bash', '-l', $self->{runas}, '-c', join(' ', $cmd, $rebuild_args); + unshift @$args, '-s', '/bin/bash', '-l', $self->{runas}, '-c', join(' ', $cmd, @$rebuild_args); $cmd = 'su'; } else { unshift @$args, '-S', '-u', $self->{runas}, $cmd, @$rebuild_args; diff --git a/src/centreon/plugins/templates/counter.pm b/src/centreon/plugins/templates/counter.pm index 8aa4c14af..58fc23461 100644 --- a/src/centreon/plugins/templates/counter.pm +++ b/src/centreon/plugins/templates/counter.pm @@ -365,10 +365,27 @@ sub run_instances { my $message_separator = defined($options{config}->{message_separator}) ? $options{config}->{message_separator}: ', '; + # The default sort method is cmp (string comparison) my $sort_method = 'cmp'; + # If configured otherwise, we take it from the counter (only other method is 'num' for '<=>') $sort_method = $options{config}->{sort_method} if (defined($options{config}->{sort_method})); - foreach my $id (sort { $sort_subs->{$sort_method}->() } keys %{$self->{$options{config}->{name}}}) { + + # In the absence of sort_attribute the sort method is set now + my $sort_sub = $sort_subs->{$sort_method}; + + # If sort_attribute is set, then we'll redefine how things are sorted depending on the specified sort_method + if (defined($options{config}->{sort_attribute})) { + my $sort_attribute = $options{config}->{sort_attribute}; + if ($sort_method eq 'cmp') { + $sort_sub = sub { $self->{$options{config}->{name}}->{$a}->{$sort_attribute} cmp $self->{$options{config}->{name}}->{$b}->{$sort_attribute}}; + } else { + $sort_sub = sub { $self->{$options{config}->{name}}->{$a}->{$sort_attribute} <=> $self->{$options{config}->{name}}->{$b}->{$sort_attribute}}; + } + } + + # Now the loop begins with the desired sorting method + foreach my $id (sort { $sort_sub->() } keys %{$self->{$options{config}->{name}}}) { my ($short_msg, $short_msg_append, $long_msg, $long_msg_append) = ('', '', '', ''); my @exits = (); foreach (@{$self->{maps_counters}->{$options{config}->{name}}}) { @@ -547,10 +564,28 @@ sub run_multiple_instances { my $message_separator = defined($options{config}->{message_separator}) ? $options{config}->{message_separator} : ', '; + + # The default sort method is cmp (string comparison) my $sort_method = 'cmp'; + # If configured otherwise, we take it from the counter (only other method is 'num' for '<=>') $sort_method = $options{config}->{sort_method} if (defined($options{config}->{sort_method})); - foreach my $id (sort { $sort_subs->{$sort_method}->() } keys %{$self->{$options{config}->{name}}}) { + + # In the absence of sort_attribute the sort method is set now + my $sort_sub = $sort_subs->{$sort_method}; + + # If sort_attribute is set, then we'll redefine how things are sorted depending on the specified sort_method + if (defined($options{config}->{sort_attribute})) { + my $sort_attribute = $options{config}->{sort_attribute}; + if ($sort_method eq 'cmp') { + $sort_sub = sub { $self->{$options{config}->{name}}->{$a}->{$sort_attribute} cmp $self->{$options{config}->{name}}->{$b}->{$sort_attribute}}; + } else { + $sort_sub = sub { $self->{$options{config}->{name}}->{$a}->{$sort_attribute} <=> $self->{$options{config}->{name}}->{$b}->{$sort_attribute}}; + } + } + + # Now the loop begins with the desired sorting method + foreach my $id (sort { $sort_sub->() } keys %{$self->{$options{config}->{name}}}) { my ($short_msg, $short_msg_append, $long_msg, $long_msg_append) = ('', '', '', ''); my @exits = (); foreach (@{$self->{maps_counters}->{$options{config}->{name}}}) { diff --git a/src/database/mysql/mode/uptime.pm b/src/database/mysql/mode/uptime.pm index e8b7bb991..e3af865f6 100644 --- a/src/database/mysql/mode/uptime.pm +++ b/src/database/mysql/mode/uptime.pm @@ -31,7 +31,8 @@ sub new { my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; - $options{options}->add_options(arguments => { + # Adding options specific to this mode + $options{options}->add_options(arguments => { "warning:s" => { name => 'warning' }, "critical:s" => { name => 'critical' }, "seconds" => { name => 'seconds' } @@ -44,10 +45,13 @@ sub check_options { my ($self, %options) = @_; $self->SUPER::init(%options); + # Validating warning threshold if (($self->{perfdata}->threshold_validate(label => 'warning', value => $self->{option_results}->{warning})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong warning threshold '" . $self->{option_results}->{warning} . "'."); $self->{output}->option_exit(); } + + # Validating critical threshold if (($self->{perfdata}->threshold_validate(label => 'critical', value => $self->{option_results}->{critical})) == 0) { $self->{output}->add_option_msg(short_msg => "Wrong critical threshold '" . $self->{option_results}->{critical} . "'."); $self->{output}->option_exit(); @@ -57,31 +61,45 @@ sub check_options { sub run { my ($self, %options) = @_; - $options{sql}->connect(); + $options{sql}->connect(); + + # Checking if MySQL version is supported if (!($options{sql}->is_version_minimum(version => '5'))) { $self->{output}->add_option_msg(short_msg => "MySQL version '" . $self->{sql}->{version} . "' is not supported (need version >= '5.x')."); $self->{output}->option_exit(); } + # Querying MySQL for Uptime status $options{sql}->query(query => q{SHOW /*!50000 global */ STATUS LIKE 'Uptime'}); my ($name, $value) = $options{sql}->fetchrow_array(); + + # Handling case where uptime value is not available if (!defined($value)) { $self->{output}->add_option_msg(short_msg => "Cannot get uptime."); $self->{output}->option_exit(); } + # Checking the threshold and determining exit code my $exit_code = $self->{perfdata}->threshold_check(value => $value, threshold => [ { label => 'critical', exit_litteral => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]); - my $msg = sprintf("database is up since %d days", floor($value / 86400)); + + # Calculating uptime in days or seconds based on user preference + my $uptime_days = floor($value / 86400); + my $msg = sprintf("database is up since %d days", $uptime_days); if (defined($self->{option_results}->{seconds})) { $msg = sprintf("database is up since %d seconds", $value); } + # Adding start time information to the message + $msg .= sprintf(" (Start time = %s)", strftime("%Y/%m/%d %H:%M:%S", localtime(time - $value))); + + # Adding output message and performance data $self->{output}->output_add( severity => $exit_code, short_msg => $msg ); + $self->{output}->perfdata_add( - label => 'uptime', + label => 'uptime', nlabel => 'database.uptime.seconds', unit => 's', value => $value, @@ -90,7 +108,9 @@ sub run { min => 0 ); + # Displaying the output and exiting $self->{output}->display(); + $self->{output}->exit(); } diff --git a/src/hardware/ups/apc/snmp/mode/batterystatus.pm b/src/hardware/ups/apc/snmp/mode/batterystatus.pm index cd85d9840..7e9f0145a 100644 --- a/src/hardware/ups/apc/snmp/mode/batterystatus.pm +++ b/src/hardware/ups/apc/snmp/mode/batterystatus.pm @@ -1,5 +1,5 @@ # -# Copyright 2024 Centreon (http://www.centreon.com/) +# Copyright 2025 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -48,6 +48,15 @@ sub custom_status_calc { return 0; } +sub custom_last_replace_output { + my ($self, %options) = @_; + + return sprintf( + 'replace last time: %s', + centreon::plugins::misc::change_seconds(value => $self->{result_values}->{last_replace_time}) + ); +} + sub custom_status_output { my ($self, %options) = @_; @@ -80,108 +89,127 @@ sub set_counters { $self->{maps_counters_type} = [ { name => 'global', type => 0, skipped_code => { -10 => 1 } }, - { name => 'bpacks', type => 3, cb_prefix_output => 'prefix_bpack_output', cb_long_output => 'bpack_long_output', indent_long_output => ' ', message_multiple => 'All battery packs are ok', - group => [ - { name => 'bpack_global', type => 0, skipped_code => { -10 => 1 } }, - { name => 'cartridges', display_long => 1, cb_prefix_output => 'prefix_cartridge_output', message_multiple => 'cartridges are ok', type => 1, skipped_code => { -10 => 1 } } - ] + { name => 'bpacks', type => 3, cb_prefix_output => 'prefix_bpack_output', cb_long_output => 'bpack_long_output', indent_long_output => ' ', message_multiple => 'All battery packs are ok', + group => [ + { name => 'bpack_global', type => 0, skipped_code => { -10 => 1 } }, + { name => 'cartridges', display_long => 1, cb_prefix_output => 'prefix_cartridge_output', message_multiple => 'cartridges are ok', type => 1, skipped_code => { -10 => 1 } } + ] } ]; $self->{maps_counters}->{global} = [ - { - label => 'status', - type => 2, - unknown_default => '%{status} =~ /unknown/i', - warning_default => '%{status} =~ /batteryLow/i', - critical_default => '%{replace} =~ /yes/i', - set => { - key_values => [ + { + label => 'status', + type => 2, + unknown_default => '%{status} =~ /unknown/i', + warning_default => '%{status} =~ /batteryLow/i', + critical_default => '%{replace} =~ /yes/i', + set => { + key_values => [ { name => 'upsBasicBatteryStatus' }, { name => 'upsAdvBatteryReplaceIndicator' }, { name => 'upsBasicBatteryLastReplaceDate' } ], - closure_custom_calc => $self->can('custom_status_calc'), - closure_custom_output => $self->can('custom_battery_status_output'), - closure_custom_perfdata => sub { return 0; }, + closure_custom_calc => $self->can('custom_status_calc'), + closure_custom_output => $self->can('custom_battery_status_output'), + closure_custom_perfdata => sub { return 0; }, closure_custom_threshold_check => \&catalog_status_threshold_ng } }, { label => 'load', nlabel => 'battery.charge.remaining.percent', set => { - key_values => [ { name => 'upsAdvBatteryCapacity' } ], - output_template => 'remaining capacity: %s %%', - perfdatas => [ - { label => 'load', template => '%s', min => 0, max => 100, unit => '%' } - ] - } + key_values => [ { name => 'upsAdvBatteryCapacity' } ], + output_template => 'remaining capacity: %s %%', + perfdatas => [ + { label => 'load', + template => '%s', + min => 0, + max => 100, + unit => '%' } + ] + } }, { label => 'time', nlabel => 'battery.charge.remaining.minutes', set => { - key_values => [ { name => 'upsAdvBatteryRunTimeRemaining' } ], - output_template => 'remaining time: %.2f minutes', - perfdatas => [ - { label => 'load_time', template => '%.2f', min => 0, unit => 'm' } - ] - } + key_values => [ { name => 'upsAdvBatteryRunTimeRemaining' } ], + output_template => 'remaining time: %.2f minutes', + perfdatas => [ + { label => 'load_time', + template => '%.2f', + min => 0, + unit => 'm' } + ] + } }, { label => 'timeon', nlabel => 'battery.timeon.minutes', set => { - key_values => [ { name => 'upsBasicBatteryTimeOnBattery' } ], - output_template => 'time on battery: %.2f minutes', - perfdatas => [ - { label => 'timeon', template => '%.2f', min => 0, unit => 'm' } - ] - } + key_values => [ { name => 'upsBasicBatteryTimeOnBattery' } ], + output_template => 'time on battery: %.2f minutes', + perfdatas => [ + { label => 'timeon', + template => '%.2f', + min => 0, + unit => 'm' } + ] + } }, { label => 'current', nlabel => 'battery.current.ampere', set => { - key_values => [ { name => 'upsAdvBatteryCurrent' } ], - output_template => 'current: %s A', - perfdatas => [ - { label => 'current', template => '%s', min => 0, unit => 'A' } - ] - } + key_values => [ { name => 'upsAdvBatteryCurrent' } ], + output_template => 'current: %s A', + perfdatas => [ + { label => 'current', + template => '%s', + min => 0, + unit => 'A' } + ] + } }, { label => 'voltage', nlabel => 'battery.voltage.volt', set => { - key_values => [ { name => 'upsAdvBatteryActualVoltage' } ], - output_template => 'voltage: %s V', - perfdatas => [ - { label => 'voltage', template => '%s', unit => 'V' } - ] - } + key_values => [ { name => 'upsAdvBatteryActualVoltage' } ], + output_template => 'voltage: %s V', + perfdatas => [ + { label => 'voltage', + template => '%s', + unit => 'V' } + ] + } }, { label => 'temperature', nlabel => 'battery.temperature.celsius', set => { - key_values => [ { name => 'upsAdvBatteryTemperature' } ], - output_template => 'temperature: %s C', - perfdatas => [ - { label => 'temperature', template => '%s', unit => 'C'} - ] - } + key_values => [ { name => 'upsAdvBatteryTemperature' } ], + output_template => 'temperature: %s C', + perfdatas => [ + { label => 'temperature', + template => '%s', + unit => 'C' } + ] + } }, { label => 'replace-lasttime', nlabel => 'battery.replace.lasttime.seconds', display_ok => 0, set => { - key_values => [ { name => 'last_replace_time' } ], - output_template => 'replace last time: %s s', - perfdatas => [ - { label => 'replace_last_time', template => '%s', unit => 's'} - ] - } + key_values => [ { name => 'last_replace_time' } ], + closure_custom_output => $self->can('custom_last_replace_output'), + perfdatas => [ + { label => 'replace_last_time', + template => '%s', + unit => 's' } + ] + } } ]; $self->{maps_counters}->{bpack_global} = [ { label => 'battery-pack-status', type => 2, critical_default => '%{status} ne "OK"', set => { - key_values => [ { name => 'status' }, { name => 'display' } ], - closure_custom_output => $self->can('custom_status_output'), - closure_custom_perfdata => sub { return 0; }, - closure_custom_threshold_check => \&catalog_status_threshold_ng - } + key_values => [ { name => 'status' }, { name => 'display' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } } ]; $self->{maps_counters}->{cartridges} = [ { label => 'cartridge-status', type => 2, critical_default => '%{status} ne "OK"', set => { - key_values => [ { name => 'status' }, { name => 'display' } ], - closure_custom_output => $self->can('custom_status_output'), - closure_custom_perfdata => sub { return 0; }, - closure_custom_threshold_check => \&catalog_status_threshold_ng - } + key_values => [ { name => 'status' }, { name => 'display' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } } ]; } @@ -221,17 +249,17 @@ my $map_replace_status = { }; my $mapping = { - upsBasicBatteryStatus => { oid => '.1.3.6.1.4.1.318.1.1.1.2.1.1', map => $map_battery_status }, - upsBasicBatteryTimeOnBattery => { oid => '.1.3.6.1.4.1.318.1.1.1.2.1.2' }, - upsBasicBatteryLastReplaceDate => { oid => '.1.3.6.1.4.1.318.1.1.1.2.1.3' } + upsBasicBatteryStatus => { oid => '.1.3.6.1.4.1.318.1.1.1.2.1.1', map => $map_battery_status }, + upsBasicBatteryTimeOnBattery => { oid => '.1.3.6.1.4.1.318.1.1.1.2.1.2' }, + upsBasicBatteryLastReplaceDate => { oid => '.1.3.6.1.4.1.318.1.1.1.2.1.3' } }; my $mapping2 = { - upsAdvBatteryCapacity => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.1' }, - upsAdvBatteryTemperature => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.2' }, - upsAdvBatteryRunTimeRemaining => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.3' }, - upsAdvBatteryReplaceIndicator => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.4', map => $map_replace_status }, - upsAdvBatteryActualVoltage => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.8' }, - upsAdvBatteryCurrent => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.9' } + upsAdvBatteryCapacity => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.1' }, + upsAdvBatteryTemperature => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.2' }, + upsAdvBatteryRunTimeRemaining => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.3' }, + upsAdvBatteryReplaceIndicator => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.4', map => $map_replace_status }, + upsAdvBatteryActualVoltage => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.8' }, + upsAdvBatteryCurrent => { oid => '.1.3.6.1.4.1.318.1.1.1.2.2.9' } }; my $oid_upsBasicBattery = '.1.3.6.1.4.1.318.1.1.1.2.1'; my $oid_upsAdvBattery = '.1.3.6.1.4.1.318.1.1.1.2.2'; @@ -239,11 +267,11 @@ my $oid_upsHighPrecBatteryPackOnlyStatus = '.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5' my $oid_upsHighPrecBatteryPackCartridgeStatus = '.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10'; my $map_battery_pack_status = { - 0 => 'disconnected', 1 => 'overvoltage', - 2 => 'needsReplacement', 3 => 'overtemperatureCritical', - 4 => 'charger', 5 => 'temperatureSensor', - 6 => 'busSoftStart', 7 => 'overtemperatureWarning', - 8 => 'generalError', 9 => 'communication', + 0 => 'disconnected', 1 => 'overvoltage', + 2 => 'needsReplacement', 3 => 'overtemperatureCritical', + 4 => 'charger', 5 => 'temperatureSensor', + 6 => 'busSoftStart', 7 => 'overtemperatureWarning', + 8 => 'generalError', 9 => 'communication', 10 => 'disconnectedFrame', 11 => 'firmwareMismatch' }; @@ -257,12 +285,12 @@ sub add_battery_pack { $oid =~ /^$oid_upsHighPrecBatteryPackOnlyStatus\.(\d+)/; my $pack_index = $1; $self->{bpacks}->{$pack_index} = { - display => $pack_index, + display => $pack_index, bpack_global => { display => $pack_index, - status => 'OK' + status => 'OK' }, - cartridges => {} + cartridges => {} }; my $status = ''; @@ -285,14 +313,14 @@ sub add_battery_pack { my ($pack_index, $cartridge_index) = ($1, $2); if (!defined($self->{bpacks}->{$pack_index})) { $self->{bpacks}->{$pack_index} = { - display => $pack_index, + display => $pack_index, cartridges => {} }; } $self->{bpacks}->{$pack_index}->{cartridges}->{$cartridge_index} = { display => $cartridge_index, - status => 'OK' + status => 'OK' }; my $status = ''; @@ -313,7 +341,7 @@ sub manage_selection { my ($self, %options) = @_; my $snmp_result = $options{snmp}->get_multiple_table( - oids => [ + oids => [ { oid => $oid_upsBasicBattery }, { oid => $oid_upsAdvBattery, end => $mapping2->{upsAdvBatteryCurrent}->{oid} }, { oid => $oid_upsHighPrecBatteryPackCartridgeStatus }, @@ -344,7 +372,7 @@ sub manage_selection { } $self->add_battery_pack(snmp_result => $snmp_result); - + } 1; @@ -360,62 +388,112 @@ Check battery status and battery charge remaining. =item B<--filter-counters> Only display some counters (regexp can be used). -Example: --filter-counters='^status|load$' +Example: C<--filter-counters='^status|load$'> =item B<--replace-lasttime-format> -Define the date format (default: '%m/%d/%Y'). +Define the date format (default: C<%m/%d/%Y>). =item B<--unknown-status> -Define the conditions to match for the status to be UNKNOWN (default: '%{status} =~ /unknown/i'). +Define the conditions to match for the status to be UNKNOWN (default: C<%{status} =~ /unknown/i>). You can use the following variables: %{status}, %{replace} =item B<--warning-status> -Define the conditions to match for the status to be WARNING (default: '%{status} =~ /batteryLow/i'). -You can use the following variables: %{status}, %{replace} +Define the conditions to match for the status to be WARNING (default: C<%{status} =~ /batteryLow/i>). +You can use the following variables: C<%{status}>, C<%{replace}> =item B<--critical-status> -Define the conditions to match for the status to be CRITICAL (default: '%{replace} =~ /yes/i'). -You can use the following variables: %{status}, %{replace} +Define the conditions to match for the status to be CRITICAL (default: C<%{replace} =~ /yes/i>). +You can use the following variables: C<%{status}>, C<%{replace}> =item B<--unknown-battery-pack-status> Define the conditions to match for the status to be UNKNOWN. -You can use the following variables: %{status} +You can use the following variables: C<%{status}> =item B<--warning-battery-pack-status> Define the conditions to match for the status to be WARNING. -You can use the following variables: %{status} +You can use the following variables: C<%{status}> =item B<--critical-battery-pack-status> -Define the conditions to match for the status to be CRITICAL (default: '%{status} ne "OK"'). -You can use the following variables: %{status} +Define the conditions to match for the status to be CRITICAL (default: C<%{status} ne "OK">). +You can use the following variables: C<%{status}> =item B<--unknown-cartridge-status> Define the conditions to match for the status to be UNKNOWN. -You can use the following variables: %{status} +You can use the following variables: C<%{status}> =item B<--warning-cartridge-status> Define the conditions to match for the status to be WARNING. -You can use the following variables: %{status} +You can use the following variables: C<%{status}> =item B<--critical-cartridge-status> -Define the conditions to match for the status to be CRITICAL (default: '%{status} ne "OK"'). -You can use the following variables: %{status} +Define the conditions to match for the status to be CRITICAL (default: C<%{status} ne "OK">). +You can use the following variables: C<%{status}> -=item B<--warning-*> B<--critical-*> +=item B<--warning-load> -Thresholds. -Can be: 'load', 'voltage', 'current', -'temperature', 'time', 'replace-lasttime', 'timeon'. +Warning threshold for battery load (in %). + +=item B<--critical-load> + +Critical threshold for battery load (in %). + +=item B<--warning-voltage> + +Warning threshold for battery voltage (in V). + +=item B<--critical-voltage> + +Critical threshold for battery voltage (in V). + +=item B<--warning-current> + +Warning threshold for battery current (in A). + +=item B<--critical-current> + +Critical threshold for battery current (in A). + +=item B<--warning-temperature> + +Warning threshold for battery temperature (in C). + +=item B<--critical-temperature> + +Critical threshold for battery temperature (in C). + +=item B<--warning-time> + +Warning threshold for battery remaining time (in minutes). + +=item B<--critical-time> + +Critical threshold for battery remaining time (in minutes). + +=item B<--warning-replace-lasttime> + +Warning threshold for battery last replace time (in seconds). + +=item B<--critical-replace-lasttime> + +Critical threshold for battery last replace time (in seconds). + +=item B<--warning-timeon> + +Warning threshold for time on battery (in minutes). + +=item B<--critical-timeon> + +Critical threshold for time on battery (in minutes). =back diff --git a/src/network/aruba/aoscx/snmp/mode/hardware.pm b/src/network/aruba/aoscx/snmp/mode/hardware.pm index 605f2a9ca..97d5c22cc 100644 --- a/src/network/aruba/aoscx/snmp/mode/hardware.pm +++ b/src/network/aruba/aoscx/snmp/mode/hardware.pm @@ -75,7 +75,7 @@ Check hardware. =item B<--component> Which component to check (default: '.*'). -Can be: 'psu', 'temperature', 'fan', 'fantry'. +Can be: C, C, C, C. =item B<--filter> diff --git a/src/network/f5/bigip/snmp/mode/apm.pm b/src/network/f5/bigip/snmp/mode/apm.pm index 022b64985..3d000b5ac 100644 --- a/src/network/f5/bigip/snmp/mode/apm.pm +++ b/src/network/f5/bigip/snmp/mode/apm.pm @@ -26,6 +26,24 @@ use strict; use warnings; use Digest::MD5 qw(md5_hex); +sub prefix_vs_output { + my ($self, %options) = @_; + + return "Virtual server '" . $options{instance_value}->{display} . "' : "; +} + +sub vs_long_output { + my ($self, %options) = @_; + + return "checking virtual server '" . $options{instance_value}->{display} . "'"; +} + +sub prefix_ap_output { + my ($self, %options) = @_; + + return "access profile '" . $options{instance_value}->{display} . "' "; +} + sub set_counters { my ($self, %options) = @_; @@ -93,24 +111,6 @@ sub set_counters { ]; } -sub prefix_vs_output { - my ($self, %options) = @_; - - return "Virtual server '" . $options{instance_value}->{display} . "' : "; -} - -sub vs_long_output { - my ($self, %options) = @_; - - return "checking virtual server '" . $options{instance_value}->{display} . "'"; -} - -sub prefix_ap_output { - my ($self, %options) = @_; - - return "access profile '" . $options{instance_value}->{display} . "' "; -} - sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1, statefile => 1); @@ -214,12 +214,54 @@ Filter virtual server name (can be a regexp). Filter access profile name (can be a regexp). -=item B<--warning-*> B<--critical-*> +=item B<--warning-sessions-created> + +Thresholds. + +=item B<--critical-sessions-created> + +Thresholds. + +=item B<--warning-sessions-active> + +Thresholds. + +=item B<--critical-sessions-active> + +Thresholds. + +=item B<--warning-sessions-pending> + +Thresholds. + +=item B<--critical-sessions-pending> + +Thresholds. + +=item B<--warning-ap-sessions-created> + +Thresholds. + +=item B<--critical-ap-sessions-created> + +Thresholds. + +=item B<--warning-ap-sessions-active> + +Thresholds. + +=item B<--critical-ap-sessions-active> + +Thresholds. + +=item B<--warning-ap-sessions-pending> + +Thresholds. + +=item B<--critical-ap-sessions-pending> Thresholds. -Can be: 'sessions-created', 'sessions-active', 'sessions-pending', -'ap-sessions-created', 'ap-sessions-active', 'ap-sessions-pending'. =back -=cut +=cut \ No newline at end of file diff --git a/src/network/f5/bigip/snmp/mode/components/fan.pm b/src/network/f5/bigip/snmp/mode/components/fan.pm index 50275a116..13c6bb2ec 100644 --- a/src/network/f5/bigip/snmp/mode/components/fan.pm +++ b/src/network/f5/bigip/snmp/mode/components/fan.pm @@ -59,25 +59,37 @@ sub check { $self->{components}->{fan}->{total}++; - $self->{output}->output_add(long_msg => sprintf("fan '%s' status is '%s' [instance: %s, speed: %s].", - $instance, $result->{sysChassisFanStatus}, $instance, - defined($result->{sysChassisFanSpeed}) ? $result->{sysChassisFanSpeed} : '-')); + $self->{output}->output_add( + long_msg => sprintf( + "fan '%s' status is '%s' [instance: %s, speed: %s].", + $instance, $result->{sysChassisFanStatus}, $instance, + defined($result->{sysChassisFanSpeed}) ? $result->{sysChassisFanSpeed} : '-' + ) + ); + my $exit = $self->get_severity(section => 'fan', value => $result->{sysChassisFanStatus}); if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) { - $self->{output}->output_add(severity => $exit, - short_msg => sprintf("Fan '%s' status is '%s'", - $instance, $result->{sysChassisFanStatus})); + $self->{output}->output_add( + severity => $exit, + short_msg => sprintf( + "Fan '%s' status is '%s'", + $instance, $result->{sysChassisFanStatus} + ) + ); } if (defined($result->{sysChassisFanSpeed}) && $result->{sysChassisFanSpeed} =~ /[0-9]/) { my ($exit2, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'fan', instance => $instance, value => $result->{sysChassisFanSpeed}); if (!$self->{output}->is_status(value => $exit2, compare => 'ok', litteral => 1)) { - $self->{output}->output_add(severity => $exit2, - short_msg => sprintf("fan speed '%s' is %s rpm", $instance, $result->{sysChassisFanSpeed})); + $self->{output}->output_add( + severity => $exit2, + short_msg => sprintf("fan speed '%s' is %s rpm", $instance, $result->{sysChassisFanSpeed}) + ); } + $self->{output}->perfdata_add( - label => "fan", unit => 'rpm', nlabel => 'hardware.fan.speed.rpm', + unit => 'rpm', instances => $instance, value => $result->{sysChassisFanSpeed}, warning => $warn, diff --git a/src/network/f5/bigip/snmp/mode/components/psu.pm b/src/network/f5/bigip/snmp/mode/components/psu.pm index dcfadbd15..faec57bb6 100644 --- a/src/network/f5/bigip/snmp/mode/components/psu.pm +++ b/src/network/f5/bigip/snmp/mode/components/psu.pm @@ -57,14 +57,22 @@ sub check { $self->{components}->{psu}->{total}++; - $self->{output}->output_add(long_msg => sprintf("power supply '%s' status is '%s' [instance: %s].", - $instance, $result->{sysChassisPowerSupplyStatus}, $instance - )); + $self->{output}->output_add( + long_msg => sprintf( + "power supply '%s' status is '%s' [instance: %s].", + $instance, $result->{sysChassisPowerSupplyStatus}, $instance + ) + ); + my $exit = $self->get_severity(section => 'psu', value => $result->{sysChassisPowerSupplyStatus}); if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) { - $self->{output}->output_add(severity => $exit, - short_msg => sprintf("Power supply '%s' status is '%s'", - $instance, $result->{sysChassisPowerSupplyStatus})); + $self->{output}->output_add( + severity => $exit, + short_msg => sprintf( + "Power supply '%s' status is '%s'", + $instance, $result->{sysChassisPowerSupplyStatus} + ) + ); } } } diff --git a/src/network/f5/bigip/snmp/mode/components/temperature.pm b/src/network/f5/bigip/snmp/mode/components/temperature.pm index 6cd7348e8..cd1de4ec2 100644 --- a/src/network/f5/bigip/snmp/mode/components/temperature.pm +++ b/src/network/f5/bigip/snmp/mode/components/temperature.pm @@ -48,19 +48,25 @@ sub check { next if ($self->check_filter(section => 'temperature', instance => $instance)); $self->{components}->{temperature}->{total}++; - $self->{output}->output_add(long_msg => sprintf("temperature '%s' is %.2f C [instance: %s].", - $instance, $result->{sysChassisTempTemperature}, $instance - )); + $self->{output}->output_add( + long_msg => sprintf( + "temperature '%s' is %.2f C [instance: %s].", + $instance, $result->{sysChassisTempTemperature}, $instance + ) + ); if (defined($result->{sysChassisTempTemperature}) && $result->{sysChassisTempTemperature} =~ /[0-9]/) { my ($exit, $warn, $crit, $checked) = $self->get_severity_numeric(section => 'temperature', instance => $instance, value => $result->{sysChassisTempTemperature}); if (!$self->{output}->is_status(value => $exit, compare => 'ok', litteral => 1)) { - $self->{output}->output_add(severity => $exit, - short_msg => sprintf("Temperature '%s' is %.2f C", $instance, $result->{sysChassisTempTemperature})); + $self->{output}->output_add( + severity => $exit, + short_msg => sprintf("Temperature '%s' is %.2f C", $instance, $result->{sysChassisTempTemperature}) + ); } + $self->{output}->perfdata_add( - label => "temp", unit => 'C', nlabel => 'hardware.temperature.celsius', + unit => 'C', instances => $instance, value => sprintf("%.2f", $result->{sysChassisTempTemperature}), warning => $warn, diff --git a/src/network/f5/bigip/snmp/mode/connections.pm b/src/network/f5/bigip/snmp/mode/connections.pm index 89d52e80c..364b4ecf3 100644 --- a/src/network/f5/bigip/snmp/mode/connections.pm +++ b/src/network/f5/bigip/snmp/mode/connections.pm @@ -42,67 +42,69 @@ sub set_counters { $self->{maps_counters_type} = [ { name => 'global', type => 0 }, ]; + $self->{maps_counters}->{global} = [ - { label => 'client', set => { + { label => 'client', nlabel => 'connections.client.current.count', set => { key_values => [ { name => 'client' } ], output_template => 'Current client connections : %s', perfdatas => [ - { label => 'Client', template => '%s', min => 0, unit => 'con' }, - ], + { template => '%s', min => 0 } + ] } }, - { label => 'client-ssl', set => { + { label => 'client-ssl', nlabel => 'connections.client.ssl.current.count', set => { key_values => [ { name => 'client_ssl' } ], output_template => 'Current client SSL connections : %s', perfdatas => [ - { label => 'ClientSSL', template => '%s', min => 0, unit => 'con' }, - ], + { template => '%s', min => 0 } + ] } }, - { label => 'client-ssl-tps', set => { + { label => 'client-ssl-tps', nlabel => 'connections.client.ssl.persecond', set => { key_values => [ { name => 'client_ssl_tot_native', diff => 1 }, { name => 'client_ssl_tot_compat', diff => 1 } ], - output_template => 'TPS client SSL connections : %.2f', threshold_use => 'client_ssl_tps', output_use => 'client_ssl_tps', + output_template => 'TPS client SSL connections : %.2f', + threshold_use => 'client_ssl_tps', + output_use => 'client_ssl_tps', closure_custom_calc => $self->can('custom_client_tps_calc'), perfdatas => [ - { label => 'ClientSSL_Tps', value => 'client_ssl_tps', template => '%.2f', - unit => 'tps', min => 0 }, - ], + { value => 'client_ssl_tps', template => '%.2f', min => 0 } + ] } }, - { label => 'server', set => { + { label => 'server', nlabel => 'connections.server.current.count', set => { key_values => [ { name => 'server' } ], output_template => 'Current server connections: %s', perfdatas => [ - { label => 'Server', template => '%s', min => 0, unit => 'con' }, - ], + { template => '%s', min => 0 } + ] } }, - { label => 'server-ssl', set => { + { label => 'server-ssl', nlabel => 'connections.server.ssl.current.count', set => { key_values => [ { name => 'server_ssl' } ], output_template => 'Current server SSL connections : %s', perfdatas => [ - { label => 'ServerSSL', template => '%s', min => 0, unit => 'con' }, - ], + { template => '%s', min => 0 } + ] } - }, + } ]; } sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1, force_new_perfdata => 1); bless $self, $class; - + $options{options}->add_options(arguments => { }); - + return $self; } sub manage_selection { my ($self, %options) = @_; - $self->{cache_name} = "f5_bipgip_" . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' . + $self->{cache_name} = 'f5_bipgip_' . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' . (defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')); my $oid_sysStatClientCurConns = '.1.3.6.1.4.1.3375.2.1.1.2.1.8.0'; @@ -111,12 +113,12 @@ sub manage_selection { my $oid_sysServersslStatCurConns = '.1.3.6.1.4.1.3375.2.1.1.2.10.2.0'; my $oid_sysClientsslStatTotNativeConns = '.1.3.6.1.4.1.3375.2.1.1.2.9.6.0'; my $oid_sysClientsslStatTotCompatConns = '.1.3.6.1.4.1.3375.2.1.1.2.9.9.0'; - + if ($options{snmp}->is_snmpv1()) { $self->{output}->add_option_msg(short_msg => "Need to use SNMP v2c or v3."); $self->{output}->option_exit(); } - + my $result = $options{snmp}->get_leef( oids => [ $oid_sysStatClientCurConns, $oid_sysStatServerCurConns, @@ -125,13 +127,14 @@ sub manage_selection { ], nothing_quit => 1 ); + $self->{global} = { client => $result->{$oid_sysStatClientCurConns}, client_ssl => $result->{$oid_sysClientsslStatCurConns}, client_ssl_tot_native => $result->{$oid_sysClientsslStatTotNativeConns}, client_ssl_tot_compat => $result->{$oid_sysClientsslStatTotCompatConns}, server => $result->{$oid_sysStatServerCurConns}, - server_ssl => $result->{$oid_sysServersslStatCurConns}, + server_ssl => $result->{$oid_sysServersslStatCurConns} }; } @@ -150,15 +153,45 @@ Check current connections on F5 BIG IP device. Only display some counters (regexp can be used). Example to check SSL connections only : --filter-counters='^client-ssl|server-ssl$' -=item B<--warning-*> +=item B<--warning-client> -Warning threshold. -Can be: 'client', 'server', 'client-ssl', 'server-ssl', 'client-ssl-tps'. +Thresholds. -=item B<--critical-*> +=item B<--critical-client> -Critical threshold. -Can be: 'client', 'server', 'client-ssl', 'server-ssl', 'client-ssl-tps'. +Thresholds. + +=item B<--warning-server> + +Thresholds. + +=item B<--critical-server> + +Thresholds. + +=item B<--warning-client-ssl> + +Thresholds. + +=item B<--critical-client-ssl> + +Thresholds. + +=item B<--warning-server-ssl> + +Thresholds. + +=item B<--critical-server-ssl> + +Thresholds. + +=item B<--warning-client-ssl-tps> + +Thresholds. + +=item B<--critical-client-ssl-tps> + +Thresholds. =back diff --git a/src/network/f5/bigip/snmp/mode/cpuusage.pm b/src/network/f5/bigip/snmp/mode/cpuusage.pm new file mode 100644 index 000000000..39c098cbd --- /dev/null +++ b/src/network/f5/bigip/snmp/mode/cpuusage.pm @@ -0,0 +1,290 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package network::f5::bigip::snmp::mode::cpuusage; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use Digest::MD5 qw(md5_hex); + +sub custom_usage_perfdata { + my ($self, %options) = @_; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'cpu', type => 1, cb_prefix_output => 'prefix_cpu_output', message_multiple => 'All CPU are ok', skipped_code => { -10 => 1 } }, + ]; + + $self->{maps_counters}->{cpu} = [ + { label => 'usage-5s', set => { + key_values => [ { name => 'sysMultiHostCpuUsageRatio5s' }, { name => 'display' } ], + output_template => 'CPU Usage 5sec : %s %%', output_error_template => "CPU Usage 5sec : %s", + perfdatas => [ + { label => 'usage_5s', value => 'sysMultiHostCpuUsageRatio5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'usage-1m', set => { + key_values => [ { name => 'sysMultiHostCpuUsageRatio1m' }, { name => 'display' } ], + output_template => 'CPU Usage 1min : %s %%', output_error_template => "CPU Usage 1min : %s", + perfdatas => [ + { label => 'usage_1m', value => 'sysMultiHostCpuUsageRatio1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'usage-5m', set => { + key_values => [ { name => 'sysMultiHostCpuUsageRatio5m' }, { name => 'display' } ], + output_template => 'CPU Usage 5min : %s %%', output_error_template => "CPU Usage 5min : %s", + perfdatas => [ + { label => 'usage_5m', value => 'sysMultiHostCpuUsageRatio5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'user-5s', set => { + key_values => [ { name => 'sysMultiHostCpuUser5s' }, { name => 'display' } ], + output_template => 'CPU User 5sec : %s %%', output_error_template => "CPU User 5sec : %s", + perfdatas => [ + { label => 'user_5s', value => 'sysMultiHostCpuUser5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'user-1m', set => { + key_values => [ { name => 'sysMultiHostCpuUser1m' }, { name => 'display' } ], + output_template => 'CPU User 1min : %s %%', output_error_template => "CPU User 1min : %s", + perfdatas => [ + { label => 'user_1m', value => 'sysMultiHostCpuUser1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'user-5m', set => { + key_values => [ { name => 'sysMultiHostCpuUser5m' }, { name => 'display' } ], + output_template => 'CPU User 5min : %s %%', output_error_template => "CPU User 5min : %s", + perfdatas => [ + { label => 'user_5m', value => 'sysMultiHostCpuUser5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'iowait-5s', set => { + key_values => [ { name => 'sysMultiHostCpuIowait5s' }, { name => 'display' } ], + output_template => 'CPU IO Wait 5sec : %s %%', output_error_template => "CPU IO Wait 5sec : %s", + perfdatas => [ + { label => 'iowait_5s', value => 'sysMultiHostCpuIowait5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'iowait-1m', set => { + key_values => [ { name => 'sysMultiHostCpuIowait1m' }, { name => 'display' } ], + output_template => 'CPU IO Wait 1min : %s %%', output_error_template => "CPU IO Wait 1min : %s", + perfdatas => [ + { label => 'iowait_1m', value => 'sysMultiHostCpuIowait1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'iowait-5m', set => { + key_values => [ { name => 'sysMultiHostCpuIowait5m' }, { name => 'display' } ], + output_template => 'CPU IO Wait 5min : %s %%', output_error_template => "CPU IO Wait 5min : %s", + perfdatas => [ + { label => 'iowait_5m', value => 'sysMultiHostCpuIowait5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'system-5s', set => { + key_values => [ { name => 'sysMultiHostCpuSystem5s' }, { name => 'display' } ], + output_template => 'CPU System 5sec : %s %%', output_error_template => "CPU System 5sec : %s", + perfdatas => [ + { label => 'system_5s', value => 'sysMultiHostCpuSystem5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'system-1m', set => { + key_values => [ { name => 'sysMultiHostCpuSystem1m' }, { name => 'display' } ], + output_template => 'CPU System 1min : %s %%', output_error_template => "CPU System 1min : %s", + perfdatas => [ + { label => 'system_1m', value => 'sysMultiHostCpuSystem1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'system-5m', set => { + key_values => [ { name => 'sysMultiHostCpuSystem5m' }, { name => 'display' } ], + output_template => 'CPU System 5min : %s %%', output_error_template => "CPU System 5min : %s", + perfdatas => [ + { label => 'system_5m', value => 'sysMultiHostCpuSystem5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'idle-5s', set => { + key_values => [ { name => 'sysMultiHostCpuIdle5s' }, { name => 'display' } ], + output_template => 'CPU Idle 5sec : %s %%', output_error_template => "CPU Idle 5sec : %s", + perfdatas => [ + { label => 'idle_5s', value => 'sysMultiHostCpuIdle5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'idle-1m', set => { + key_values => [ { name => 'sysMultiHostCpuIdle1m' }, { name => 'display' } ], + output_template => 'CPU Idle 1min : %s %%', output_error_template => "CPU Idle 1min : %s", + perfdatas => [ + { label => 'idle_1m', value => 'sysMultiHostCpuIdle1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'idle-5m', set => { + key_values => [ { name => 'sysMultiHostCpuIdle5m' }, { name => 'display' } ], + output_template => 'CPU Idle 5min : %s %%', output_error_template => "CPU Idle 5min : %s", + perfdatas => [ + { label => 'idle_5m', value => 'sysMultiHostCpuIdle5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + ]; +} + +sub prefix_cpu_output { + my ($self, %options) = @_; + + return "CPU '" . $options{instance_value}->{display} . "' "; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-name:s' => { name => 'filter_name' }, + }); + + return $self; +} + +my $mapping = { + sysMultiHostCpuId => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.3' }, + sysMultiHostCpuUsageRatio5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.19' }, + sysMultiHostCpuUsageRatio1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.27' }, + sysMultiHostCpuUsageRatio5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.35' }, + sysMultiHostCpuUser5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.12' }, + sysMultiHostCpuUser1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.20' }, + sysMultiHostCpuUser5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.28' }, + sysMultiHostCpuIowait5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.18' }, + sysMultiHostCpuIowait1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.26' }, + sysMultiHostCpuIowait5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.34' }, + sysMultiHostCpuSystem5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.14' }, + sysMultiHostCpuSystem1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.22' }, + sysMultiHostCpuSystem5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.30' }, + sysMultiHostCpuIdle5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.15' }, + sysMultiHostCpuIdle1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.23' }, + sysMultiHostCpuIdle5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.31' }, +}; +my $oid_sysMultiHostCpuEntry = '.1.3.6.1.4.1.3375.2.1.7.5.2.1'; + +sub manage_selection { + my ($self, %options) = @_; + + if ($options{snmp}->is_snmpv1()) { + $self->{output}->add_option_msg(short_msg => "Need to use SNMP v2c or v3."); + $self->{output}->option_exit(); + } + + my $results = $options{snmp}->get_table( + oid => $oid_sysMultiHostCpuEntry, + nothing_quit => 1 + ); + + $self->{cpu} = {}; + foreach my $oid (keys %$results) { + next if ($oid !~ /^$mapping->{sysMultiHostCpuId}->{oid}\.(.*)$/); + my $instance = $1; + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $results, instance => $instance); + + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $result->{sysMultiHostCpuId} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{sysMultiHostCpuId} . "': no matching filter name.", debug => 1); + next; + } + + $self->{cpu}->{$result->{sysMultiHostCpuId}} = { + display => $result->{sysMultiHostCpuId}, + %$result + }; + } + + if (scalar(keys %{$self->{cpu}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No CPU found."); + $self->{output}->option_exit(); + } + + $self->{cache_name} = "f5_bipgip_" . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' . + (defined($self->{option_results}->{filter_name}) ? md5_hex($self->{option_results}->{filter_name}) : md5_hex('all')) . '_' . + (defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')); +} + +1; + +__END__ + +=head1 MODE + +Check CPU usages. + +=over 8 + +=item B<--filter-counters> + +Only display some counters (regexp can be used). +Example : --filter-counters='^usage$' + +=item B<--filter-name> + +Filter by CPU id (regexp can be used). +Example : --filter-name='2' + +=item B<--warning-*> + +Warning threshold. +Can be: 'usage-1m', 'usage-5m', 'iowait-5s'. + +=item B<--critical-*> + +Critical threshold. +Can be: 'usage-1m', 'usage-5m', 'iowait-5s'. + +=back + +=cut diff --git a/src/network/f5/bigip/snmp/mode/failover.pm b/src/network/f5/bigip/snmp/mode/failover.pm index c856f96c8..4af9be9d0 100644 --- a/src/network/f5/bigip/snmp/mode/failover.pm +++ b/src/network/f5/bigip/snmp/mode/failover.pm @@ -24,7 +24,19 @@ use base qw(centreon::plugins::templates::counter); use strict; use warnings; -use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold); +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); + +sub custom_syncstatus_output { + my ($self, %options) = @_; + + return "Sync status is '" . $self->{result_values}->{syncstatus} . "'"; +} + +sub custom_failoverstatus_output { + my ($self, %options) = @_; + + return "Failover status is '" . $self->{result_values}->{failoverstatus} . "'"; +} sub set_counters { my ($self, %options) = @_; @@ -34,78 +46,36 @@ sub set_counters { ]; $self->{maps_counters}->{global} = [ - { label => 'sync-status', threshold => 0, set => { + { label => 'sync-status', type => 2, critical_default => '%{syncstatus} =~ /unknown|syncFailed|syncDisconnected|incompatibleVersion/', set => { key_values => [ { name => 'syncstatus' } ], - closure_custom_calc => \&custom_syncstatus_calc, closure_custom_output => \&custom_syncstatus_output, closure_custom_perfdata => sub { return 0; }, - closure_custom_threshold_check => \&catalog_status_threshold, + closure_custom_threshold_check => \&catalog_status_threshold_ng } }, - { label => 'failover-status', threshold => 0, set => { + { label => 'failover-status', type => 2, critical_default => '%{failoverstatus} =~ /unknown/', set => { key_values => [ { name => 'failoverstatus' } ], - closure_custom_calc => \&custom_failoverstatus_calc, closure_custom_output => \&custom_failoverstatus_output, closure_custom_perfdata => sub { return 0; }, - closure_custom_threshold_check => \&catalog_status_threshold, + closure_custom_threshold_check => \&catalog_status_threshold_ng } }, ]; } -sub custom_syncstatus_output { - my ($self, %options) = @_; - my $msg = "Sync status is '" . $self->{result_values}->{syncstatus} . "'"; - - return $msg; -} - -sub custom_syncstatus_calc { - my ($self, %options) = @_; - - $self->{result_values}->{syncstatus} = $options{new_datas}->{$self->{instance} . '_syncstatus'}; - return 0; -} - -sub custom_failoverstatus_output { - my ($self, %options) = @_; - my $msg = "Failover status is '" . $self->{result_values}->{failoverstatus} . "'"; - - return $msg; -} - -sub custom_failoverstatus_calc { - my ($self, %options) = @_; - - $self->{result_values}->{failoverstatus} = $options{new_datas}->{$self->{instance} . '_failoverstatus'}; - return 0; -} - sub new { my ($class, %options) = @_; my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; - $options{options}->add_options(arguments => { - 'warning-sync-status:s' => { name => 'warning_sync_status', default => '' }, - 'critical-sync-status:s' => { name => 'critical_sync_status', default => '%{syncstatus} =~ /unknown|syncFailed|syncDisconnected|incompatibleVersion/' }, - 'warning-failover-status:s' => { name => 'warning_failover_status', default => '' }, - 'critical-failover-status:s' => { name => 'critical_failover_status', default => '%{failoverstatus} =~ /unknown/' }, - }); + $options{options}->add_options(arguments => {}); return $self; } -sub check_options { - my ($self, %options) = @_; - $self->SUPER::check_options(%options); - - $self->change_macros(macros => ['warning_sync_status', 'critical_sync_status', 'warning_failover_status', 'critical_failover_status']); -} - my %map_boolean = ( 0 => 'false', - 1 => 'true', + 1 => 'true' ); my %map_sync_status = ( 0 => 'unknown', @@ -117,21 +87,21 @@ my %map_sync_status = ( 6 => 'standalone', 7 => 'awaitingInitialSync', 8 => 'incompatibleVersion', - 9 => 'partialSync', + 9 => 'partialSync' ); my %map_failover_status = ( 0 => 'unknown', 1 => 'offline', 2 => 'forcedOffline', 3 => 'standby', - 4 => 'active', + 4 => 'active' ); my $mapping = { sysAttrFailoverIsRedundant => { oid => '.1.3.6.1.4.1.3375.2.1.1.1.1.13', map => \%map_boolean }, sysAttrModeMaint => { oid => '.1.3.6.1.4.1.3375.2.1.1.1.1.21', map => \%map_boolean }, sysCmSyncStatusId => { oid => '.1.3.6.1.4.1.3375.2.1.14.1.1', map => \%map_sync_status }, - sysCmFailoverStatusId => { oid => '.1.3.6.1.4.1.3375.2.1.14.3.1', map => \%map_failover_status }, + sysCmFailoverStatusId => { oid => '.1.3.6.1.4.1.3375.2.1.14.3.1', map => \%map_failover_status } }; sub manage_selection { @@ -164,7 +134,7 @@ sub manage_selection { $self->{output}->display(); $self->{output}->exit(); } - + $self->{global} = { syncstatus => $result->{sysCmSyncStatusId}, failoverstatus => $result->{sysCmFailoverStatusId}, @@ -187,22 +157,22 @@ Only display some counters (regexp can be used). =item B<--warning-sync-status> -Set warning threshold for sync status +Define the conditions to match for the status to be WARNING. You can use the following variables: %{syncstatus} =item B<--critical-sync-status> -Set critical threshold for sync status (default: '%{syncstatus} =~ /unknown|syncFailed|syncDisconnected|incompatibleVersion/'). +Define the conditions to match for the status to be CRITICAL (default: '%{syncstatus} =~ /unknown|syncFailed|syncDisconnected|incompatibleVersion/'). You can use the following variables: %{syncstatus} =item B<--warning-failover-status> -Set warning threshold for failover status +Define the conditions to match for the status to be WARNING. You can use the following variables: %{failoverstatus} =item B<--critical-failover-status> -Set critical threshold for failover status (default: '%{failoverstatus} =~ /unknown/'). +Define the conditions to match for the status to be CRITICAL (Default: '%{failoverstatus} =~ /unknown/'). You can use the following variables: %{failoverstatus} =back diff --git a/src/network/f5/bigip/snmp/mode/hardware.pm b/src/network/f5/bigip/snmp/mode/hardware.pm index f249df843..a2cb86d56 100644 --- a/src/network/f5/bigip/snmp/mode/hardware.pm +++ b/src/network/f5/bigip/snmp/mode/hardware.pm @@ -58,7 +58,7 @@ sub snmp_execute { sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; $options{options}->add_options(arguments => {}); diff --git a/src/network/f5/bigip/snmp/mode/listnodes.pm b/src/network/f5/bigip/snmp/mode/listnodes.pm index d8a9fbbef..a7ce3526a 100644 --- a/src/network/f5/bigip/snmp/mode/listnodes.pm +++ b/src/network/f5/bigip/snmp/mode/listnodes.pm @@ -103,8 +103,10 @@ sub run { ); } - $self->{output}->output_add(severity => 'OK', - short_msg => 'List nodes:'); + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List nodes:' + ); $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); $self->{output}->exit(); } diff --git a/src/network/f5/bigip/snmp/mode/listpools.pm b/src/network/f5/bigip/snmp/mode/listpools.pm index 0229c9af6..3fd47254f 100644 --- a/src/network/f5/bigip/snmp/mode/listpools.pm +++ b/src/network/f5/bigip/snmp/mode/listpools.pm @@ -106,8 +106,10 @@ sub run { ); } - $self->{output}->output_add(severity => 'OK', - short_msg => 'List pools:'); + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List pools:' + ); $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); $self->{output}->exit(); } diff --git a/src/network/f5/bigip/snmp/mode/listvirtualservers.pm b/src/network/f5/bigip/snmp/mode/listvirtualservers.pm index 57d9b95ba..eccf6e901 100644 --- a/src/network/f5/bigip/snmp/mode/listvirtualservers.pm +++ b/src/network/f5/bigip/snmp/mode/listvirtualservers.pm @@ -122,8 +122,10 @@ sub run { ); } - $self->{output}->output_add(severity => 'OK', - short_msg => 'List virtual servers:'); + $self->{output}->output_add( + severity => 'OK', + short_msg => 'List virtual servers:' + ); $self->{output}->display(nolabel => 1, force_ignore_perfdata => 1, force_long_output => 1); $self->{output}->exit(); } diff --git a/src/network/f5/bigip/snmp/mode/nodestatus.pm b/src/network/f5/bigip/snmp/mode/nodestatus.pm index 69c6365bb..4562ef6a4 100644 --- a/src/network/f5/bigip/snmp/mode/nodestatus.pm +++ b/src/network/f5/bigip/snmp/mode/nodestatus.pm @@ -64,12 +64,11 @@ sub set_counters { closure_custom_threshold_check => \&catalog_status_threshold_ng } }, - { label => 'current-server-connections', set => { + { label => 'current-server-connections', nlabel => 'node.connections.server.current.count', set => { key_values => [ { name => 'ltmNodeAddrStatServerCurConns' }, { name => 'display' } ], output_template => 'current server connections : %s', perfdatas => [ - { label => 'current_server_connections', template => '%s', - min => 0, label_extra_instance => 1, instance_use => 'display' } + { template => '%s', min => 0, label_extra_instance => 1, instance_use => 'display' } ] } } @@ -78,7 +77,7 @@ sub set_counters { sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); bless $self, $class; $options{options}->add_options(arguments => { @@ -135,7 +134,7 @@ sub manage_selection { foreach my $oid (keys %{$snmp_result->{$branch_name}}) { $oid =~ /^$branch_name\.(.*?)\.(.*)$/; my ($num, $index) = ($1, $2); - + my $result = $options{snmp}->map_instance(mapping => $mapping->{$map}, results => $snmp_result->{$branch_name}, instance => $num . '.' . $index); my $name = $self->{output}->decode(join('', map(chr($_), split(/\./, $index)))); @@ -207,10 +206,13 @@ You can use the following variables: %{state}, %{status}, %{display} Define the conditions to match for the status to be CRITICAL (default: '%{state} eq "enabled" and %{status} eq "red"'). You can use the following variables: %{state}, %{status}, %{display} -=item B<--warning-*> B<--critical-*> +=item B<--warning-current-server-connections> + +Thresholds. + +=item B<--critical-current-server-connections> Thresholds. -Can be: 'current-server-connections'. =back diff --git a/src/network/f5/bigip/snmp/mode/poolstatus.pm b/src/network/f5/bigip/snmp/mode/poolstatus.pm index 2d714d9da..ac479ade5 100644 --- a/src/network/f5/bigip/snmp/mode/poolstatus.pm +++ b/src/network/f5/bigip/snmp/mode/poolstatus.pm @@ -91,7 +91,7 @@ sub set_counters { ]; $self->{maps_counters}->{pool_connections} = [ - { label => 'current-server-connections', nlabel => 'pool.connections.server.count', set => { + { label => 'current-server-connections', nlabel => 'pool.connections.server.current.count', set => { key_values => [ { name => 'ltmPoolStatServerCurConns' }, { name => 'display' } ], output_template => 'current server connections: %s', perfdatas => [ @@ -360,10 +360,29 @@ You can use the following variables: %{state}, %{status}, %{poolName}, %{nodeNam Define the conditions to match for the status to be CRITICAL. You can use the following variables: %{state}, %{status}, %{poolName}, %{nodeName} -=item B<--warning-*> B<--critical-*> +=item B<--warning-current-server-connections> + +Thresholds. + +=item B<--critical-current-server-connections> + +Thresholds. + +=item B<--warning-current-active-members> + +Thresholds. + +=item B<--critical-current-active-members> + +Thresholds. + +=item B<--warning-current-total-members> + +Thresholds. + +=item B<--critical-current-total-members> Thresholds. -Can be: 'current-server-connections', 'current-active-members', 'current-total-members'. =back diff --git a/src/network/f5/bigip/snmp/mode/tmmusage.pm b/src/network/f5/bigip/snmp/mode/tmmusage.pm index 1c7e8cb1d..b5379ce51 100644 --- a/src/network/f5/bigip/snmp/mode/tmmusage.pm +++ b/src/network/f5/bigip/snmp/mode/tmmusage.pm @@ -30,8 +30,9 @@ sub custom_usage_perfdata { my ($self, %options) = @_; $self->{output}->perfdata_add( - label => 'memory_used', unit => 'B', - instances => $self->use_instances(extra_instance => $options{extra_instance}) ? $self->{result_values}->{display} : undef, + nlabel => $self->{nlabel}, + unit => 'B', + instances => $self->{result_values}->{display}, value => $self->{result_values}->{used}, warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}, total => $self->{result_values}->{total}, cast_int => 1), critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}, total => $self->{result_values}->{total}, cast_int => 1), @@ -53,11 +54,12 @@ sub custom_usage_output { my ($total_used_value, $total_used_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{used}); my ($total_free_value, $total_free_unit) = $self->{perfdata}->change_bytes(value => $self->{result_values}->{free}); - my $msg = sprintf("Memory Total: %s Used: %s (%.2f%%) Free: %s (%.2f%%)", - $total_size_value . " " . $total_size_unit, - $total_used_value . " " . $total_used_unit, $self->{result_values}->{prct_used}, - $total_free_value . " " . $total_free_unit, $self->{result_values}->{prct_free}); - return $msg; + return sprintf( + "Memory Total: %s Used: %s (%.2f%%) Free: %s (%.2f%%)", + $total_size_value . " " . $total_size_unit, + $total_used_value . " " . $total_used_unit, $self->{result_values}->{prct_used}, + $total_free_value . " " . $total_free_unit, $self->{result_values}->{prct_free} + ); } sub custom_usage_calc { @@ -73,6 +75,12 @@ sub custom_usage_calc { return 0; } +sub prefix_tmm_output { + my ($self, %options) = @_; + + return "TMM '" . $options{instance_value}->{display} . "' "; +} + sub set_counters { my ($self, %options) = @_; @@ -81,84 +89,73 @@ sub set_counters { ]; $self->{maps_counters}->{tmm} = [ - { label => 'memory-usage', set => { + { label => 'memory-usage', nlabel => 'tmm.memory.usage.bytes', set => { key_values => [ { name => 'display' }, { name => 'sysTmmStatMemoryTotal' }, { name => 'sysTmmStatMemoryUsed' } ], closure_custom_calc => $self->can('custom_usage_calc'), closure_custom_output => $self->can('custom_usage_output'), closure_custom_perfdata => $self->can('custom_usage_perfdata'), - closure_custom_threshold_check => $self->can('custom_usage_threshold'), + closure_custom_threshold_check => $self->can('custom_usage_threshold') } }, - { label => 'cpu-1m', set => { + { label => 'cpu-1m', nlabel => 'tmm.cpu.utilization.1m.percentage', set => { key_values => [ { name => 'sysTmmStatTmUsageRatio1m' }, { name => 'display' } ], output_template => 'CPU Usage 1min : %s %%', output_error_template => "CPU Usage 1min : %s", perfdatas => [ - { label => 'cpu_1m', value => 'sysTmmStatTmUsageRatio1m', template => '%s', - unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, - ], + { template => '%s', unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' } + ] } }, - { label => 'cpu-5m', set => { + { label => 'cpu-5m', nlabel => 'tmm.cpu.utilization.5m.percentage', set => { key_values => [ { name => 'sysTmmStatTmUsageRatio5m' }, { name => 'display' } ], output_template => 'CPU Usage 5min : %s %%', output_error_template => "CPU Usage 5min : %s", perfdatas => [ - { label => 'cpu_5m', value => 'sysTmmStatTmUsageRatio5m', template => '%s', - unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, - ], + { template => '%s', unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' } + ] } }, - { label => 'current-client-connections', set => { + { label => 'current-client-connections', nlabel => 'tmm.connections.client.curent.count', set => { key_values => [ { name => 'sysTmmStatClientCurConns' }, { name => 'display' } ], output_template => 'Current Client Connections : %s', output_error_template => "Current Client Connections : %s", perfdatas => [ - { label => 'current_client_connections', value => 'sysTmmStatClientCurConns', template => '%s', - min => 0, label_extra_instance => 1, instance_use => 'display' }, - ], + { label => 'current_client_connections', template => '%s', + min => 0, label_extra_instance => 1, instance_use => 'display' } + ] } }, - { label => 'total-client-connections', set => { + { label => 'total-client-connections', nlabel => 'tmm.connections.client.total.count', set => { key_values => [ { name => 'sysTmmStatClientTotConns', diff => 1 }, { name => 'display' } ], output_template => 'Total Client Connections : %s', output_error_template => "Total Client Connections : %s", perfdatas => [ - { label => 'total_client_connections', value => 'sysTmmStatClientTotConns', template => '%s', - min => 0, label_extra_instance => 1, instance_use => 'display' }, - ], + { template => '%s', min => 0, label_extra_instance => 1, instance_use => 'display' } + ] } }, - { label => 'current-server-connections', set => { + { label => 'current-server-connections', nlabel => 'tmm.connections.server.current.count', set => { key_values => [ { name => 'sysTmmStatServerCurConns' }, { name => 'display' } ], output_template => 'Current Server Connections : %s', output_error_template => "Current Server Connections : %s", perfdatas => [ - { label => 'current_server_connections', value => 'sysTmmStatServerCurConns', template => '%s', - min => 0, label_extra_instance => 1, instance_use => 'display' }, - ], + { template => '%s', min => 0, label_extra_instance => 1, instance_use => 'display' } + ] } }, - { label => 'total-server-connections', set => { + { label => 'total-server-connections', nlabel => 'tmm.connections.server.total.count', set => { key_values => [ { name => 'sysTmmStatServerTotConns', diff => 1 }, { name => 'display' } ], output_template => 'Total Server Connections : %s', output_error_template => "Total Server Connections : %s", perfdatas => [ - { label => 'total_server_connections', value => 'sysTmmStatServerTotConns', template => '%s', - min => 0, label_extra_instance => 1, instance_use => 'display' }, - ], + { template => '%s', min => 0, label_extra_instance => 1, instance_use => 'display' } + ] } - }, + } ]; } -sub prefix_tmm_output { - my ($self, %options) = @_; - - return "TMM '" . $options{instance_value}->{display} . "' "; -} - sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1, force_new_perfdata => 1); bless $self, $class; $options{options}->add_options(arguments => { - 'filter-name:s' => { name => 'filter_name' }, + 'filter-name:s' => { name => 'filter_name' } }); return $self; @@ -207,12 +204,12 @@ sub manage_selection { %$result }; } - + if (scalar(keys %{$self->{tmm}}) <= 0) { $self->{output}->add_option_msg(short_msg => "No TMM found."); $self->{output}->option_exit(); } - + $self->{cache_name} = "f5_bipgip_" . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' . (defined($self->{option_results}->{filter_name}) ? md5_hex($self->{option_results}->{filter_name}) : md5_hex('all')) . '_' . (defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')); @@ -224,7 +221,7 @@ __END__ =head1 MODE -Check TMM usages. +Check TMM (Traffic Management Microkernel) usages. =over 8 @@ -235,19 +232,63 @@ Example : --filter-counters='^memory-usage$' =item B<--filter-name> -Filter by TMM name (regexp can be used). +Filter by TMM (Traffic Management Microkernel) name (regexp can be used). -=item B<--warning-*> +=item B<--warning-cpu-1m> -Warning threshold. -Can be: 'cpu-1m', 'cpu-5m', 'memory-usage' (%), 'total-client-connections', 'current-client-connections', -'total-server-connections', 'current-server-connections'. +Thresholds. -=item B<--critical-*> +=item B<--critical-cpu-1m> -Critical threshold. -Can be: 'cpu-1m', 'cpu-5m', 'memory-usage' (%), 'total-client-connections', 'current-client-connections', -'total-server-connections', 'current-server-connections'. +Thresholds. + +=item B<--warning-cpu-5m> + +Thresholds. + +=item B<--critical-cpu-5m> + +Thresholds. + +=item B<--warning-memory-usage> + +Thresholds in %. + +=item B<--critical-memory-usage> + +Thresholds in %. + +=item B<--warning-total-client-connections> + +Thresholds. + +=item B<--critical-total-client-connections> + +Thresholds. + +=item B<--warning-current-client-connections> + +Thresholds. + +=item B<--critical-current-client-connections> + +Thresholds. + +=item B<--warning-total-server-connections> + +Thresholds. + +=item B<--critical-total-server-connections> + +Thresholds. + +=item B<--warning-current-server-connections> + +Thresholds. + +=item B<--critical-current-server-connections> + +Thresholds. =back diff --git a/src/network/f5/bigip/snmp/mode/trunks.pm b/src/network/f5/bigip/snmp/mode/trunks.pm index 8d5678b57..633eaadca 100644 --- a/src/network/f5/bigip/snmp/mode/trunks.pm +++ b/src/network/f5/bigip/snmp/mode/trunks.pm @@ -42,8 +42,9 @@ sub custom_traffic_perfdata { my $speed = $self->{result_values}->{speed} > 0 ? $self->{result_values}->{speed} : undef; $self->{output}->perfdata_add( - label => 'traffic_' . $self->{result_values}->{label}, unit => 'b/s', - instances => $self->use_instances(extra_instance => $options{extra_instance}) ? $self->{result_values}->{display} : undef, + nlabel => $self->{nlabel}, + unit => 'b/s', + instances => $self->{result_values}->{display}, value => sprintf("%.2f", $self->{result_values}->{traffic_per_seconds}), warning => $warning, critical => $critical, @@ -101,8 +102,9 @@ sub custom_errors_perfdata { my $critical = $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}); $self->{output}->perfdata_add( - label => 'packets_error_' . $self->{result_values}->{label}, unit => '%', - instances => $self->use_instances(extra_instance => $options{extra_instance}) ? $self->{result_values}->{display} : undef, + nlabel => $self->{nlabel}, + unit => '%', + instances => $self->{result_values}->{display}, value => sprintf("%.2f", $self->{result_values}->{errors_prct}), warning => $warning, critical => $critical, @@ -150,8 +152,9 @@ sub custom_drops_perfdata { my $critical = $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}); $self->{output}->perfdata_add( - label => 'packets_drop_' . $self->{result_values}->{label}, unit => '%', - instances => $self->use_instances(extra_instance => $options{extra_instance}) ? $self->{result_values}->{display} : undef, + nlabel => $self->{nlabel}, + unit => '%', + instances => $self->{result_values}->{display}, value => sprintf("%.2f", $self->{result_values}->{drops_prct}), warning => $warning, critical => $critical, @@ -233,7 +236,7 @@ sub set_counters { closure_custom_threshold_check => \&catalog_status_threshold_ng } }, - { label => 'traffic-in', set => { + { label => 'traffic-in', nlabel => 'trunk.traffic.in.bitspersecond', set => { key_values => [ { name => 'sysTrunkStatBytesIn', diff => 1 }, { name => 'sysTrunkOperBw', diff => 1 }, { name => 'display' } ], closure_custom_calc => $self->can('custom_traffic_calc'), closure_custom_calc_extra_options => { label_ref => 'sysTrunkStatBytesIn', speed => 'sysTrunkOperBw', label => 'in' }, @@ -242,7 +245,7 @@ sub set_counters { closure_custom_threshold_check => $self->can('custom_traffic_threshold') } }, - { label => 'traffic-out', set => { + { label => 'traffic-out', nlabel => 'trunk.traffic.out.bitspersecond', set => { key_values => [ { name => 'sysTrunkStatBytesOut', diff => 1 }, { name => 'sysTrunkOperBw', diff => 1 }, { name => 'display' } ], closure_custom_calc => $self->can('custom_traffic_calc'), closure_custom_calc_extra_options => { label_ref => 'sysTrunkStatBytesOut', speed => 'sysTrunkOperBw', label => 'out' }, @@ -251,7 +254,7 @@ sub set_counters { closure_custom_threshold_check => $self->can('custom_traffic_threshold') } }, - { label => 'packets-error-in', set => { + { label => 'packets-error-in', nlabel => 'trunk.packets.in.error.percentage', set => { key_values => [ { name => 'sysTrunkStatErrorsIn', diff => 1 }, { name => 'sysTrunkStatPktsIn', diff => 1 }, { name => 'display' } ], closure_custom_calc => $self->can('custom_errors_calc'), closure_custom_calc_extra_options => { errors => 'sysTrunkStatErrorsIn', packets => 'sysTrunkStatPktsIn', label => 'in' }, @@ -260,7 +263,7 @@ sub set_counters { closure_custom_threshold_check => $self->can('custom_errors_threshold') } }, - { label => 'packets-error-out', set => { + { label => 'packets-error-out', nlabel => 'trunk.packets.out.error.percentage', set => { key_values => [ { name => 'sysTrunkStatErrorsOut', diff => 1 }, { name => 'sysTrunkStatPktsOut', diff => 1 }, { name => 'display' } ], closure_custom_calc => $self->can('custom_errors_calc'), closure_custom_calc_extra_options => { errors => 'sysTrunkStatErrorsOut', packets => 'sysTrunkStatPktsOut', label => 'out' }, @@ -269,7 +272,7 @@ sub set_counters { closure_custom_threshold_check => $self->can('custom_errors_threshold') } }, - { label => 'packets-drop-in', set => { + { label => 'packets-drop-in', nlabel => 'trunk.packets.in.dropped.percentage', set => { key_values => [ { name => 'sysTrunkStatDropsIn', diff => 1 }, { name => 'sysTrunkStatPktsIn', diff => 1 }, { name => 'display' } ], closure_custom_calc => $self->can('custom_drops_calc'), closure_custom_calc_extra_options => { drops => 'sysTrunkStatDropsIn', packets => 'sysTrunkStatPktsIn', label => 'in' }, @@ -278,7 +281,7 @@ sub set_counters { closure_custom_threshold_check => $self->can('custom_drops_threshold') } }, - { label => 'packets-drop-out', set => { + { label => 'packets-drop-out', nlabel => 'trunk.packets.out.dropped.percentage', set => { key_values => [ { name => 'sysTrunkStatDropsOut', diff => 1 }, { name => 'sysTrunkStatPktsOut', diff => 1 }, { name => 'display' } ], closure_custom_calc => $self->can('custom_drops_calc'), closure_custom_calc_extra_options => { drops => 'sysTrunkStatDropsOut', packets => 'sysTrunkStatPktsOut', label => 'out' }, @@ -291,7 +294,7 @@ sub set_counters { key_values => [ { name => 'total_interfaces' }, { name => 'display' } ], output_template => 'total interfaces: %s', perfdatas => [ - { label => 'total_interfaces', template => '%d', min => 0, label_extra_instance => 1 } + { template => '%d', min => 0, label_extra_instance => 1 } ] } } @@ -310,7 +313,7 @@ sub set_counters { sub new { my ($class, %options) = @_; - my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1); + my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1, force_new_perfdata => 1); bless $self, $class; $options{options}->add_options(arguments => { @@ -465,8 +468,8 @@ Units of thresholds for the traffic (default: '%') ('%', 'b/s'). =item B<--speed> -Set trunk speed in Mbps (default: sysTrunkOperBw). -If not set and sysTrunkOperBw OID value is 0, +Set trunk speed in Mbps (default: C). +If not set and C OID value is 0, percentage thresholds will not be applied on traffic metrics. =item B<--add-interfaces> @@ -503,12 +506,61 @@ You can use the following variables: %{status}, %{display} Define the conditions to match for the status to be CRITICAL. You can use the following variables: %{status}, %{display} -=item B<--warning-*> B<--critical-*> +=item B<--warning-traffic-in> + +Thresholds. + +=item B<--critical-traffic-in> + +Thresholds. + +=item B<--warning-traffic-out> + +Thresholds. + +=item B<--critical-traffic-out> + +Thresholds. + +=item B<--warning-packets-error-in> + +Thresholds in %. + +=item B<--critical-packets-error-in> + +Thresholds in %. + +=item B<--warning-packets-error-out> + +Thresholds in %. + +=item B<--critical-packets-error-out> + +Thresholds in %. + +=item B<--warning-packets-drop-in> + +Thresholds in %. + +=item B<--critical-packets-drop-in> + +Thresholds in %. + +=item B<--warning-packets-drop-out> + +Thresholds in %. + +=item B<--critical-packets-drop-out> + +Thresholds in %. + +=item B<--warning-total-interfaces> + +Thresholds. + +=item B<--critical-total-interfaces> Thresholds. -Can be: 'traffic-in', 'traffic-out', 'packets-error-in' (%), -'packets-error-out' (%), 'packets-drop-in' (%), 'packets-drop-out' (%), -'total-interfaces'. =back diff --git a/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm b/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm index 53fbcf61d..2e720f002 100644 --- a/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm +++ b/src/network/f5/bigip/snmp/mode/virtualserverstatus.pm @@ -197,10 +197,13 @@ You can use the following variables: %{state}, %{status}, %{display} Define the conditions to match for the status to be CRITICAL (default: '%{state} eq "enabled" and %{status} eq "red"'). You can use the following variables: %{state}, %{status}, %{display} -=item B<--warning-*> B<--critical-*> +=item B<--warning-current-client-connections> + +Thresholds. + +=item B<--critical-current-client-connections> Thresholds. -Can be: 'current-client-connections'. =back diff --git a/src/network/f5/bigip/snmp/plugin.pm b/src/network/f5/bigip/snmp/plugin.pm index 29ed15ec8..2d13b8b67 100644 --- a/src/network/f5/bigip/snmp/plugin.pm +++ b/src/network/f5/bigip/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2024 Centreon (http://www.centreon.com/) +# Copyright 2025 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -29,7 +29,6 @@ sub new { my $self = $class->SUPER::new(package => __PACKAGE__, %options); bless $self, $class; - $self->{version} = '1.0'; $self->{modes} = { 'apm' => 'network::f5::bigip::snmp::mode::apm', 'connections' => 'network::f5::bigip::snmp::mode::connections', @@ -42,6 +41,7 @@ sub new { 'node-status' => 'network::f5::bigip::snmp::mode::nodestatus', 'pool-status' => 'network::f5::bigip::snmp::mode::poolstatus', 'tmm-usage' => 'network::f5::bigip::snmp::mode::tmmusage', + 'cpu-usage' => 'network::f5::bigip::snmp::mode::cpuusage', 'trunks' => 'network::f5::bigip::snmp::mode::trunks', 'virtualserver-status' => 'network::f5::bigip::snmp::mode::virtualserverstatus' }; diff --git a/src/network/fortinet/fortigate/restapi/mode/certificates.pm b/src/network/fortinet/fortigate/restapi/mode/certificates.pm new file mode 100644 index 000000000..c13c2636a --- /dev/null +++ b/src/network/fortinet/fortigate/restapi/mode/certificates.pm @@ -0,0 +1,199 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package network::fortinet::fortigate::restapi::mode::certificates; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use centreon::plugins::templates::catalog_functions qw(catalog_status_threshold_ng); +use centreon::plugins::misc; +use POSIX; + +my $unitdiv = { s => 1, w => 604800, d => 86400, h => 3600, m => 60 }; +my $unitdiv_long = { s => 'seconds', w => 'weeks', d => 'days', h => 'hours', m => 'minutes' }; + +sub custom_expires_perfdata { + my ($self, %options) = @_; + + $self->{output}->perfdata_add( + nlabel => $self->{nlabel} . '.' . $unitdiv_long->{ $self->{instance_mode}->{option_results}->{unit} }, + unit => $self->{instance_mode}->{option_results}->{unit}, + instances => $self->{result_values}->{name}, + value => floor($self->{result_values}->{expires_seconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning-' . $self->{thlabel}), + critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical-' . $self->{thlabel}), + min => 0 + ); +} + +sub custom_expires_threshold { + my ($self, %options) = @_; + + return $self->{perfdata}->threshold_check( + value => floor($self->{result_values}->{expires_seconds} / $unitdiv->{ $self->{instance_mode}->{option_results}->{unit} }), + threshold => [ + { label => 'critical-' . $self->{thlabel}, exit_litteral => 'critical' }, + { label => 'warning-'. $self->{thlabel}, exit_litteral => 'warning' }, + { label => 'unknown-'. $self->{thlabel}, exit_litteral => 'unknown' } + ] + ); +} + +sub custom_status_output { + my ($self, %options) = @_; + + return 'status: ' . $self->{result_values}->{status}; +} + +sub prefix_certificate_output { + my ($self, %options) = @_; + + return sprintf( + "Certificate '%s' ", + $options{instance_value}->{name} + ); +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'certificates', type => 1, cb_prefix_output => 'prefix_certificate_output', message_multiple => 'All certificates are ok', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{certificates} = [ + { label => 'status', type => 2, critical_default => '%{status} =~ /expired/i', set => { + key_values => [ { name => 'name' }, { name => 'status' } ], + closure_custom_output => $self->can('custom_status_output'), + closure_custom_perfdata => sub { return 0; }, + closure_custom_threshold_check => \&catalog_status_threshold_ng + } + }, + { label => 'expires', nlabel => 'certificate.expires', set => { + key_values => [ { name => 'expires_seconds' }, { name => 'expires_human' }, { name => 'name' } ], + output_template => 'expires in %s', + output_use => 'expires_human', + closure_custom_perfdata => $self->can('custom_expires_perfdata'), + closure_custom_threshold_check => $self->can('custom_expires_threshold') + } + } + ]; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-name:s' => { name => 'filter_name' }, + 'unit:s' => { name => 'unit', default => 's' } + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); + + if ($self->{option_results}->{unit} eq '' || !defined($unitdiv->{$self->{option_results}->{unit}})) { + $self->{option_results}->{unit} = 's'; + } +} + +sub add_certificate { + my ($self, %options) = @_; + + return if (!defined($options{entry}->{status})); + return if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $options{name} !~ /$self->{option_results}->{filter_name}/); + + $self->{certificates}->{ $options{name} } = { + name => $options{name}, + status => $options{entry}->{status} + }; + if (defined($options{entry}->{valid_to})) { + $self->{certificates}->{ $options{name} }->{expires_seconds} = $options{entry}->{valid_to} - time(); + $self->{certificates}->{ $options{name} }->{expires_seconds} = 0 if ($self->{certificates}->{ $options{name} }->{expires_seconds} < 0); + $self->{certificates}->{ $options{name} }->{expires_human} = centreon::plugins::misc::change_seconds( + value => $self->{certificates}->{ $options{name} }->{expires_seconds} + ); + } +} + +sub manage_selection { + my ($self, %options) = @_; + + my $certificates = $options{custom}->request_api( + endpoint => '/api/v2/monitor/system/available-certificates' + ); + + $self->{certificates} = {}; + + foreach my $certificate (@{ $certificates->{results} }) { + if (defined($certificate->{name}) and defined($certificate->{valid_to}) and defined($certificate->{status})) { + $self->add_certificate(name => $certificate->{name}, entry => $certificate); + } + } +} + +1; + +__END__ + +=head1 MODE + +Check certificates. + +=over 8 + +=item B<--filter-name> + +Filter certificates by name (can be a regexp). + +=item B<--warning-status> + +Define the conditions to match for the status to be WARNING. +You can use the following variables: %{name}, %{status}. + +=item B<--critical-status> + +Define the conditions to match for the status to be CRITICAL (Default: '%{status} =~ /expired/i'). +You can use the following variables: %{name}, %{status}. + +=item B<--unit> + +Select the unit for expires threshold. May be 's' for seconds, 'm' for minutes, +'h' for hours, 'd' for days, 'w' for weeks. Default is seconds. + +=item B<--warning-expires> + +Thresholds. + +=item B<--critical-expires> + +Thresholds. + +=back + +=cut diff --git a/src/network/fortinet/fortigate/restapi/plugin.pm b/src/network/fortinet/fortigate/restapi/plugin.pm index c8d05fa03..20214d5ee 100644 --- a/src/network/fortinet/fortigate/restapi/plugin.pm +++ b/src/network/fortinet/fortigate/restapi/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2024 Centreon (http://www.centreon.com/) +# Copyright 2025 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -33,6 +33,7 @@ sub new { 'ha' => 'network::fortinet::fortigate::restapi::mode::ha', 'health' => 'network::fortinet::fortigate::restapi::mode::health', 'licenses' => 'network::fortinet::fortigate::restapi::mode::licenses', + 'certificates' => 'network::fortinet::fortigate::restapi::mode::certificates', 'system' => 'network::fortinet::fortigate::restapi::mode::system' }; diff --git a/src/network/fortinet/fortigate/snmp/plugin.pm b/src/network/fortinet/fortigate/snmp/plugin.pm index 3e0b7f70e..d15c78ec8 100644 --- a/src/network/fortinet/fortigate/snmp/plugin.pm +++ b/src/network/fortinet/fortigate/snmp/plugin.pm @@ -36,17 +36,19 @@ sub new { 'cpu' => 'centreon::common::fortinet::fortigate::snmp::mode::cpu', 'disk' => 'centreon::common::fortinet::fortigate::snmp::mode::disk', 'hardware' => 'centreon::common::fortinet::fortigate::snmp::mode::hardware', - 'interfaces' => 'centreon::common::fortinet::fortigate::snmp::mode::interfaces', + 'interfaces' => 'centreon::common::fortinet::fortigate::snmp::mode::interfaces', 'ips-stats' => 'centreon::common::fortinet::fortigate::snmp::mode::ipsstats', 'link-monitor' => 'centreon::common::fortinet::fortigate::snmp::mode::linkmonitor', 'list-interfaces' => 'snmp_standard::mode::listinterfaces', 'list-link-monitors' => 'centreon::common::fortinet::fortigate::snmp::mode::listlinkmonitors', 'list-virtualdomains' => 'centreon::common::fortinet::fortigate::snmp::mode::listvirtualdomains', + 'list-switches' => 'centreon::common::fortinet::fortigate::snmp::mode::listswitches', 'memory' => 'centreon::common::fortinet::fortigate::snmp::mode::memory', 'sessions' => 'centreon::common::fortinet::fortigate::snmp::mode::sessions', 'signatures' => 'centreon::common::fortinet::fortigate::snmp::mode::signatures', 'uptime' => 'snmp_standard::mode::uptime', 'sdwan' => 'centreon::common::fortinet::fortigate::snmp::mode::sdwan', + 'switch-usage' => 'centreon::common::fortinet::fortigate::snmp::mode::switchusage', 'vdom-usage' => 'centreon::common::fortinet::fortigate::snmp::mode::vdomusage', 'virus' => 'centreon::common::fortinet::fortigate::snmp::mode::virus', 'vpn' => 'centreon::common::fortinet::fortigate::snmp::mode::vpn' diff --git a/src/network/sonus/sbc/snmp/mode/dspstats.pm b/src/network/sonus/sbc/snmp/mode/dspstats.pm index cc9583a86..40dc6f91f 100644 --- a/src/network/sonus/sbc/snmp/mode/dspstats.pm +++ b/src/network/sonus/sbc/snmp/mode/dspstats.pm @@ -106,7 +106,7 @@ sub manage_selection { foreach my $oid (keys %$snmp_result) { next if($oid !~ /^$mapping->{uxDSPServiceStatus}->{oid}\.(.*)$/); my $instance = $1; - my $result = $self->{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $snmp_result, instance => $instance); next if ($result->{uxDSPIsPresent} eq '0'); diff --git a/src/notification/jasminsms/httpapi/custom/api.pm b/src/notification/jasminsms/httpapi/custom/api.pm index a44f15d54..00a89d552 100644 --- a/src/notification/jasminsms/httpapi/custom/api.pm +++ b/src/notification/jasminsms/httpapi/custom/api.pm @@ -150,7 +150,7 @@ __END__ Jasmin SMS HTTP-API -=head1 HTTP API OPTIONS +=head1 REST API OPTIONS Jasmin SMS HTTP API diff --git a/src/storage/ibm/fs900/snmp/mode/hardware.pm b/src/storage/ibm/fs900/snmp/mode/hardware.pm index 39a046c2f..60a127a32 100644 --- a/src/storage/ibm/fs900/snmp/mode/hardware.pm +++ b/src/storage/ibm/fs900/snmp/mode/hardware.pm @@ -79,8 +79,8 @@ Check hardware (batteries, fan modules, fibre channels, flashcards, power suppli =item B<--component> -Which component to check (default: 'all'). -Can be: 'battery', 'fan', 'fibrechannel', 'flashcard', 'psu'. +Which component to check (default: '.*'). +Can be: C, C, C, C, C. =item B<--filter> @@ -89,7 +89,7 @@ You can also exclude items from specific instances: --filter=fan,1 =item B<--absent-problem> -Return an error if an entity is not 'notAvailable' (default is skipping) (comma separated list) +Return an error if an entity is not C (default is skipping) (comma separated list). Can be specific or global: --absent-problem=fan,2 =item B<--no-component> diff --git a/tests/apps/backup/veeam/vbem/restapi/jobs.robot b/tests/apps/backup/veeam/vbem/restapi/jobs.robot new file mode 100644 index 000000000..36862d869 --- /dev/null +++ b/tests/apps/backup/veeam/vbem/restapi/jobs.robot @@ -0,0 +1,51 @@ +*** Settings *** +Documentation Check Veeam Backup Enterprise Manager using Rest API,Check jobs. + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}restapi.json + +${cmd} ${CENTREON_PLUGINS} +... --plugin=apps::backup::veeam::vbem::restapi::plugin +... --hostname=${HOSTNAME} +... --api-username='username' +... --api-password='password' +... --proto='http' +... --port=${APIPORT} + +*** Test Cases *** +Create cache from API + [Tags] apps backup veeam vbem restapi jobs cache + ${output} Run + ... ${CMD} --mode=cache --proto=http --port=${APIPORT} --hostname=${HOSTNAME} + + Log ${output} + Should Contain ${output} OK: Cache files created successfully + +jobs ${tc} + [Tags] apps backup veeam vbem restapi jobs + + ${command} Catenate + ... ${cmd} + ... --mode=jobs + ... --cache-use + ... ${extraoptions} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} OK: All jobs are ok | 'jobs.executions.detected.count'=2;;;0; 'Backup client 2 - Tous les jours#job.executions.failed.percentage'=5.26%;;;0;100 'client 6 - Backup - VM Test et Lab#job.execution.last.seconds' + ... 2 --critical-execution-status='\\\%{status} eq "Success"' CRITICAL: job 'Backup client 2 - Tous les jours' [type: Backup] execution started: 2025-02-19T11:30:08.103Z status: Success - job 'PROD Job 1' [type: Backup] execution started: 2025-02-19T12:00:11.94Z status: Success | 'jobs.executions.detected.count'=2;;;0; + ... 3 --warning-execution-status='\\\%{status} eq "Success"' WARNING: job 'Backup client 2 - Tous les jours' [type: Backup] execution started: 2025-02-19T11:30:08.103Z status: Success - job 'PROD Job 1' [type: Backup] execution started: 2025-02-19T12:00:11.94Z status: Success | 'jobs.executions.detected.count'=2;;;0; + ... 4 --filter-uid='urn:veeam:Job' OK: All jobs are ok | 'jobs.executions.detected.count'=2;;;0; 'Backup client 2 - Tous les jours#job.executions.failed.percentage'=5.26%;;;0;100 'client 6 - Backup - VM Test et Lab#job.execution.last.seconds' + ... 5 --filter-name='PROD Job 1' CRITICAL: job 'PROD Job 1' [type: Backup] execution started: 2025-02-19T03:51:03.037Z status: Failed | 'jobs.executions.detected.count'=2;;;0; 'PROD Job 1#job.executions.failed.percentage'=50.00%;;;0;100 + ... 6 --filter-type='toto' OK: | 'jobs.executions.detected.count'=0;;;0; + ... 7 --timeframe='0' OK: All jobs are ok | 'jobs.executions.detected.count'=2;;;0; 'Backup client 2 - Tous les jours#job.executions.failed.percentage'=5.26%;;;0;100 'client 6 - Backup - VM Test et Lab#job.execution.last.seconds' + ... 8 --unknown-execution-status='\\\%{status} eq "Success"' --filter-name='client 6' --filter-type='Backup' UNKNOWN: job 'client 6 - Backup - Infrastructure g0t0-oob' [type: Backup] execution started: 2025-02-19T11:30:08.103Z status: Success - job 'client 6 - Backup - Infrastructure g0t0-bck' [type: Backup] execution started: 2025-02-19T12:00:11.94Z status: Success | 'jobs.executions.detected.count'=2;;;0; + ... 9 --warning-job-executions-failed-prct=0 --critical-job-executions-failed-prct=10 CRITICAL: job 'PROD Job 1' [type: Backup] number of failed executions: 60.00 % WARNING: job 'Backup client 2 - Tous les jours' [type: Backup] \ No newline at end of file diff --git a/tests/apps/backup/veeam/vbem/restapi/list-jobs.robot b/tests/apps/backup/veeam/vbem/restapi/list-jobs.robot new file mode 100644 index 000000000..602ef03ca --- /dev/null +++ b/tests/apps/backup/veeam/vbem/restapi/list-jobs.robot @@ -0,0 +1,34 @@ +*** Settings *** +Documentation Check Veeam Backup Enterprise Manager using Rest API,Check jobs. + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}restapi.json + +${cmd} ${CENTREON_PLUGINS} +... --plugin=apps::backup::veeam::vbem::restapi::plugin +... --mode=list-jobs +... --hostname=${HOSTNAME} +... --api-username='username' +... --api-password='password' +... --proto='http' +... --port=${APIPORT} + +*** Test Cases *** +list-jobs ${tc} + [Tags] apps backup veeam vbem restapi list-jobs + + ${command} Catenate + ... ${cmd} + ... ${extraoptions} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 --timeframe='' List jobs: [uid: urn:veeam:Job][jobName: Backup client 2 - Tous les jours][jobType: Backup] [uid: urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa][jobName: PROD Job 1][jobType: Backup] \ No newline at end of file diff --git a/tests/apps/backup/veeam/vbem/restapi/restapi.json b/tests/apps/backup/veeam/vbem/restapi/restapi.json new file mode 100644 index 000000000..1003858de --- /dev/null +++ b/tests/apps/backup/veeam/vbem/restapi/restapi.json @@ -0,0 +1,159 @@ +{ + "uuid": "e735dbdb-d185-4381-aadd-99b0f01f1454", + "lastMigration": 32, + "name": "Restapi", + "endpointPrefix": "", + "latency": 0, + "port": 3002, + "hostname": "", + "folders": [], + "routes": [ + { + "uuid": "80cbe08d-58fd-40fb-9b51-22ea1aefa331", + "type": "http", + "documentation": "", + "method": "post", + "endpoint": "api/sessionMngr", + "responses": [ + { + "uuid": "a42239fd-5ded-45f1-a86f-e7d0509ca5bb", + "body": "{\r\n \"Refs\":null,\r\n \"Entities\":{\r\n \"Jobs\":null,\r\n \"FailoverPlans\":null,\r\n \"Backups\":null,\r\n \"Replicas\":null,\r\n \"Repositories\":null,\r\n \"RestorePoints\":null,\r\n \"VmRestorePoints\":null,\r\n \"VAppRestorePoints\":null,\r\n \"VmReplicaPoints\":null,\r\n \"BackupJobSessions\":{\r\n \"BackupJobSessions\":[\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:33:17.233Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:46:02.513Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 03:33:17\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Alternate\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1@2025-02-19 03:33:17\",\r\n \"Type\":\"BackupJobSessionReference\"\r\n },\r\n {\r\n \"Rel\":\"Down\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":null,\r\n \"Type\":\"BackupTaskSessionReferenceList\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:51:03.037Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:54:52.757Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 03:51:03\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Alternate\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1@2025-02-19 03:51:03\",\r\n \"Type\":\"BackupJobSessionReference\"\r\n },\r\n {\r\n \"Rel\":\"Down\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa/taskSessions\",\r\n \"Name\":null,\r\n \"Type\":\"BackupTaskSessionReferenceList\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:51AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"client - Backup - VM IaaS\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T17:00:13.463Z\",\r\n \"EndTimeUTC\":\"2025-02-18T17:04:02.057Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client - Backup - VM IaaS@2025-02-18 17:00:13\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"client - Backup - VM IaaS\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Alternate\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"client - Backup - VM IaaS@2025-02-18 17:00:13\",\r\n \"Type\":\"BackupJobSessionReference\"\r\n },\r\n {\r\n \"Rel\":\"Down\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa/taskSessions\",\r\n \"Name\":null,\r\n \"Type\":\"BackupTaskSessionReferenceList\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 5:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"Backup client 2 - Tous les jours\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T00:00:15.463Z\",\r\n \"EndTimeUTC\":\"2025-02-19T00:25:42.28Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"Backup client 2 - Tous les jours@2025-02-19 00:00:15\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 12:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-bck\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T12:00:11.94Z\",\r\n \"EndTimeUTC\":\"2025-02-19T12:08:43.853Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-bck@2025-02-19 12:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/d29dd852-c1b8-43f8-befc-35890e259b5e\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/ad86d089-edd1-4cec-8873-fa57e4f0fe36\",\r\n \"Name\":\"Feb 19 2025 12:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/ddd68e2d-9dfe-42a2-b159-3b6787e075c7?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PREPROD\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T04:00:05.26Z\",\r\n \"EndTimeUTC\":\"2025-02-19T04:06:14.163Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PREPROD@2025-02-19 04:00:05\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-NFS_PREPROD\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T01:00:06.437Z\",\r\n \"EndTimeUTC\":\"2025-02-19T02:28:03.183Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Warning\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-NFS_PREPROD@2025-02-19 01:00:06\",\r\n \"UID\":\"urn:veeam:BackupJobSession:57c16596-7df2-40e1-a379-497fe762f05a\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-oob\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T22:00:11.477Z\",\r\n \"EndTimeUTC\":\"2025-02-18T22:12:18.33Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-oob@2025-02-18 22:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 10:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Test Repo OOTBI Immut\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T08:00:15.507Z\",\r\n \"EndTimeUTC\":\"2025-02-19T08:05:19.02Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Test Repo OOTBI Immut@2025-02-19 08:00:15\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 8:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 4 - Backup - VM IaaS\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T09:00:14.333Z\",\r\n \"EndTimeUTC\":\"2025-02-19T09:06:00.823Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 4 - Backup - VM IaaS@2025-02-19 09:00:14\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 9:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 9:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-NFS\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T02:00:02.393Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:19:14.577Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-NFS@2025-02-19 02:00:02\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - VM Test et Lab\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T11:30:08.103Z\",\r\n \"EndTimeUTC\":\"2025-02-19T11:33:06.217Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - VM Test et Lab@2025-02-19 11:30:08\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"client 6 - Backup - VM Test et Lab\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 11:30AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 5 - Backup - VM IaaS\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T09:30:02.51Z\",\r\n \"EndTimeUTC\":\"2025-02-19T09:35:07.85Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 5 - Backup - VM IaaS@2025-02-19 09:30:02\",\r\n \"UID\":\"urn:veeam:BackupJobSession:21dd3933-c8d9-46bd-91bf-9ef4bbdf622f\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 9:30AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_CLIENTS\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:00:19.93Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:06:45.247Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_CLIENTS@2025-02-19 05:00:19\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:07:02.527Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:10:56.137Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 05:07:02\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 5:07AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PROD\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T04:00:05.21Z\",\r\n \"EndTimeUTC\":\"2025-02-19T04:32:57.113Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Warning\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PROD@2025-02-19 04:00:05\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-prod\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T21:00:19.183Z\",\r\n \"EndTimeUTC\":\"2025-02-18T21:08:24.773Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-prod@2025-02-18 21:00:19\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 9:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_INTERNE\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:00:19.977Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:07:03.45Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_INTERNE@2025-02-19 05:00:19\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-client\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T23:00:11.747Z\",\r\n \"EndTimeUTC\":\"2025-02-18T23:04:24.88Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-client@2025-02-18 23:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaaxxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 11:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-NFS\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:24:14.833Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:28:45.633Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-NFS@2025-02-19 03:24:14\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PROD Job SERIMAX\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T22:00:11.523Z\",\r\n \"EndTimeUTC\":\"2025-02-18T22:31:18.37Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job SERIMAX@2025-02-18 22:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - VM Veeam Infrastructure\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T10:30:12.947Z\",\r\n \"EndTimeUTC\":\"2025-02-19T10:43:31.733Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - VM Veeam Infrastructure@2025-02-19 10:30:12\",\r\n \"UID\":\"urn:veeam:BackupJobSession:53d659dd-006d-43e4-a89d-f3ca7abea2b6\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 10:30AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PPROD Job Silver D4\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:00:20.023Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:04:47.857Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PPROD Job Silver D4@2025-02-19 05:00:20\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 5:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:00:16.55Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:28:10.307Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 03:00:16\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://10.43.4.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n }\r\n ]\r\n },\r\n \"ReplicaJobSessions\":null,\r\n \"ReplicaTaskSessions\":null,\r\n \"RestoreSessions\":null,\r\n \"HierarchyRoots\":null,\r\n \"BackupTaskSessions\":null,\r\n \"BackupServers\":null,\r\n \"ManagedServers\":null,\r\n \"EnterpiseRoles\":null,\r\n \"EnterpiseAccounts\":null,\r\n \"WanAccelerators\":null,\r\n \"CloudGateways\":null,\r\n \"CloudTenants\":null,\r\n \"CloudReplicas\":null,\r\n \"VCloudOrganizationConfigs\":null,\r\n \"BackupFiles\":null,\r\n \"VSphereSelfServiceConfigs\":null,\r\n \"CloudPublicIps\":null,\r\n \"CloudHardwarePlans\":null,\r\n \"CloudVmReplicaPoints\":null,\r\n \"AgentRestorePoints\":null,\r\n \"AgentBackupJob\":null,\r\n \"CloudGatewayPools\":null,\r\n \"CloudFailoverPlans\":null,\r\n \"ExternalRepositories\":null,\r\n \"VlanConfigurations\":null,\r\n \"CloudFailoverSessions\":null,\r\n \"AgentProtectionGroups\":null,\r\n \"DiscoveredComputers\":null,\r\n \"FileServers\":null,\r\n \"NASJobs\":null,\r\n \"CdpReplicas\":null,\r\n \"CdpReplicaVms\":null,\r\n \"CdpPolicies\":null,\r\n \"CdpReplicaSessions\":null,\r\n \"CdpReplicaTaskSessions\":null,\r\n \"VAppReplicaPoints\":null,\r\n \"VmCdpReplicas\":null,\r\n \"VAppCdpReplicas\":null,\r\n \"VAppCdpReplicaVms\":null,\r\n \"SystemSessions\":null\r\n },\r\n \"Resources\":null,\r\n \"Links\":null,\r\n \"PagingInfo\":{\r\n \"Links\":[\r\n {\r\n \"Rel\":\"First\",\r\n \"Href\":\"https://1.2.3.8:9398/api/query?filter=CreationTime%3e%3d2025-02-18T14%3a16%3a31&format=Entities&type=BackupJobSession&pageSize=100&page=1\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Last\",\r\n \"Href\":\"https://1.2.3.8:9398/api/query?filter=CreationTime%3e%3d2025-02-18T14%3a16%3a31&format=Entities&type=BackupJobSession&pageSize=100&page=1\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"PageNum\":1,\r\n \"PageSize\":100,\r\n \"PagesCount\":1\r\n }\r\n}", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "Authorization", + "value": "Basic dXNlcm5hbWU6cGFzc3dvcmQ=" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-restsvcsessionid", + "value": "abc1234xyz" + } + ], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": true, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + }, + { + "uuid": "fa8084db-6b24-48ee-9bf3-55527c9c3f85", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "api/query", + "responses": [ + { + "uuid": "6b5dc5a7-c245-4376-862b-c9d98e72d970", + "body": "{\r\n \"Refs\":null,\r\n \"Entities\":{\r\n \"Jobs\":null,\r\n \"FailoverPlans\":null,\r\n \"Backups\":null,\r\n \"Replicas\":null,\r\n \"Repositories\":null,\r\n \"RestorePoints\":null,\r\n \"VmRestorePoints\":null,\r\n \"VAppRestorePoints\":null,\r\n \"VmReplicaPoints\":null,\r\n \"BackupJobSessions\":{\r\n \"BackupJobSessions\":[\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:33:17.233Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:46:02.513Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 03:33:17\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Alternate\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1@2025-02-19 03:33:17\",\r\n \"Type\":\"BackupJobSessionReference\"\r\n },\r\n {\r\n \"Rel\":\"Down\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":null,\r\n \"Type\":\"BackupTaskSessionReferenceList\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:33AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:51:03.037Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:54:52.757Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 03:51:03\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Alternate\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"PROD Job 1@2025-02-19 03:51:03\",\r\n \"Type\":\"BackupJobSessionReference\"\r\n },\r\n {\r\n \"Rel\":\"Down\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa/taskSessions\",\r\n \"Name\":null,\r\n \"Type\":\"BackupTaskSessionReferenceList\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:51AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"client - Backup - VM IaaS\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T17:00:13.463Z\",\r\n \"EndTimeUTC\":\"2025-02-18T17:04:02.057Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client - Backup - VM IaaS@2025-02-18 17:00:13\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"client - Backup - VM IaaS\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Alternate\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"client - Backup - VM IaaS@2025-02-18 17:00:13\",\r\n \"Type\":\"BackupJobSessionReference\"\r\n },\r\n {\r\n \"Rel\":\"Down\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa/taskSessions\",\r\n \"Name\":null,\r\n \"Type\":\"BackupTaskSessionReferenceList\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 5:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"Backup client 2 - Tous les jours\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T00:00:15.463Z\",\r\n \"EndTimeUTC\":\"2025-02-19T00:25:42.28Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"Backup client 2 - Tous les jours@2025-02-19 00:00:15\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 12:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-bck\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T12:00:11.94Z\",\r\n \"EndTimeUTC\":\"2025-02-19T12:08:43.853Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-bck@2025-02-19 12:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/d29dd852-c1b8-43f8-befc-35890e259b5e\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/ad86d089-edd1-4cec-8873-fa57e4f0fe36\",\r\n \"Name\":\"Feb 19 2025 12:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/ddd68e2d-9dfe-42a2-b159-3b6787e075c7?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PREPROD\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T04:00:05.26Z\",\r\n \"EndTimeUTC\":\"2025-02-19T04:06:14.163Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PREPROD@2025-02-19 04:00:05\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-NFS_PREPROD\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T01:00:06.437Z\",\r\n \"EndTimeUTC\":\"2025-02-19T02:28:03.183Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Warning\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-NFS_PREPROD@2025-02-19 01:00:06\",\r\n \"UID\":\"urn:veeam:BackupJobSession:57c16596-7df2-40e1-a379-497fe762f05a\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-oob\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T22:00:11.477Z\",\r\n \"EndTimeUTC\":\"2025-02-18T22:12:18.33Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-oob@2025-02-18 22:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 10:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Test Repo OOTBI Immut\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T08:00:15.507Z\",\r\n \"EndTimeUTC\":\"2025-02-19T08:05:19.02Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Test Repo OOTBI Immut@2025-02-19 08:00:15\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 8:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 4 - Backup - VM IaaS\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T09:00:14.333Z\",\r\n \"EndTimeUTC\":\"2025-02-19T09:06:00.823Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 4 - Backup - VM IaaS@2025-02-19 09:00:14\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 9:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 9:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-NFS\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T02:00:02.393Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:19:14.577Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-NFS@2025-02-19 02:00:02\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - VM Test et Lab\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T11:30:08.103Z\",\r\n \"EndTimeUTC\":\"2025-02-19T11:33:06.217Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - VM Test et Lab@2025-02-19 11:30:08\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/jobs/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"client 6 - Backup - VM Test et Lab\",\r\n \"Type\":\"JobReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 11:30AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 5 - Backup - VM IaaS\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T09:30:02.51Z\",\r\n \"EndTimeUTC\":\"2025-02-19T09:35:07.85Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 5 - Backup - VM IaaS@2025-02-19 09:30:02\",\r\n \"UID\":\"urn:veeam:BackupJobSession:21dd3933-c8d9-46bd-91bf-9ef4bbdf622f\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 9:30AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_CLIENTS\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:00:19.93Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:06:45.247Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_CLIENTS@2025-02-19 05:00:19\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:07:02.527Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:10:56.137Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 05:07:02\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 5:07AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PROD\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T04:00:05.21Z\",\r\n \"EndTimeUTC\":\"2025-02-19T04:32:57.113Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Warning\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_PROD@2025-02-19 04:00:05\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-prod\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T21:00:19.183Z\",\r\n \"EndTimeUTC\":\"2025-02-18T21:08:24.773Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-prod@2025-02-18 21:00:19\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 9:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_INTERNE\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:00:19.977Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:07:03.45Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-MAIL_INTERNE@2025-02-19 05:00:19\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - Infrastructure g0t0-client\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T23:00:11.747Z\",\r\n \"EndTimeUTC\":\"2025-02-18T23:04:24.88Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - Infrastructure g0t0-client@2025-02-18 23:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaaxxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 18 2025 11:00PM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":true,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 3 - File Backup - sto-01_VV-cli-NFS\",\r\n \"JobType\":\"NasBackup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:24:14.833Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:28:45.633Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 3 - File Backup - sto-01_VV-cli-NFS@2025-02-19 03:24:14\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PROD Job SERIMAX\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-18T22:00:11.523Z\",\r\n \"EndTimeUTC\":\"2025-02-18T22:31:18.37Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job SERIMAX@2025-02-18 22:00:11\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Stop\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?action=stop\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"client 6 - Backup - VM Veeam Infrastructure\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T10:30:12.947Z\",\r\n \"EndTimeUTC\":\"2025-02-19T10:43:31.733Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"client 6 - Backup - VM Veeam Infrastructure@2025-02-19 10:30:12\",\r\n \"UID\":\"urn:veeam:BackupJobSession:53d659dd-006d-43e4-a89d-f3ca7abea2b6\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 10:30AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PPROD Job Silver D4\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T05:00:20.023Z\",\r\n \"EndTimeUTC\":\"2025-02-19T05:04:47.857Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Success\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PPROD Job Silver D4@2025-02-19 05:00:20\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://1.2.3.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 5:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n },\r\n {\r\n \"IsRetry\":false,\r\n \"JobUid\":\"urn:veeam:Job\",\r\n \"JobName\":\"PROD Job 1\",\r\n \"JobType\":\"Backup\",\r\n \"CreationTimeUTC\":\"2025-02-19T03:00:16.55Z\",\r\n \"EndTimeUTC\":\"2025-02-19T03:28:10.307Z\",\r\n \"State\":\"Stopped\",\r\n \"Result\":\"Failed\",\r\n \"Progress\":100,\r\n \"FailureMessage\":null,\r\n \"Name\":\"PROD Job 1@2025-02-19 03:00:16\",\r\n \"UID\":\"urn:veeam:BackupJobSession:xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Links\":[\r\n {\r\n \"Rel\":\"Up\",\r\n \"Href\":\"https://1.2.3.8:9398/api/backupServers/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"serveur_veeam.domain.local\",\r\n \"Type\":\"BackupServerReference\"\r\n },\r\n {\r\n \"Rel\":\"Related\",\r\n \"Href\":\"https://10.43.4.8:9398/api/restorePoints/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa\",\r\n \"Name\":\"Feb 19 2025 3:00AM\",\r\n \"Type\":\"RestorePointReference\"\r\n }\r\n ],\r\n \"Href\":\"https://1.2.3.8:9398/api/backupSessions/xxxxxxxx-yyyy-zzzz-1111-aaaaaaaaaaaa?format=Entity\",\r\n \"Type\":\"BackupJobSession\"\r\n }\r\n ]\r\n },\r\n \"ReplicaJobSessions\":null,\r\n \"ReplicaTaskSessions\":null,\r\n \"RestoreSessions\":null,\r\n \"HierarchyRoots\":null,\r\n \"BackupTaskSessions\":null,\r\n \"BackupServers\":null,\r\n \"ManagedServers\":null,\r\n \"EnterpiseRoles\":null,\r\n \"EnterpiseAccounts\":null,\r\n \"WanAccelerators\":null,\r\n \"CloudGateways\":null,\r\n \"CloudTenants\":null,\r\n \"CloudReplicas\":null,\r\n \"VCloudOrganizationConfigs\":null,\r\n \"BackupFiles\":null,\r\n \"VSphereSelfServiceConfigs\":null,\r\n \"CloudPublicIps\":null,\r\n \"CloudHardwarePlans\":null,\r\n \"CloudVmReplicaPoints\":null,\r\n \"AgentRestorePoints\":null,\r\n \"AgentBackupJob\":null,\r\n \"CloudGatewayPools\":null,\r\n \"CloudFailoverPlans\":null,\r\n \"ExternalRepositories\":null,\r\n \"VlanConfigurations\":null,\r\n \"CloudFailoverSessions\":null,\r\n \"AgentProtectionGroups\":null,\r\n \"DiscoveredComputers\":null,\r\n \"FileServers\":null,\r\n \"NASJobs\":null,\r\n \"CdpReplicas\":null,\r\n \"CdpReplicaVms\":null,\r\n \"CdpPolicies\":null,\r\n \"CdpReplicaSessions\":null,\r\n \"CdpReplicaTaskSessions\":null,\r\n \"VAppReplicaPoints\":null,\r\n \"VmCdpReplicas\":null,\r\n \"VAppCdpReplicas\":null,\r\n \"VAppCdpReplicaVms\":null,\r\n \"SystemSessions\":null\r\n },\r\n \"Resources\":null,\r\n \"Links\":null,\r\n \"PagingInfo\":{\r\n \"Links\":[\r\n {\r\n \"Rel\":\"First\",\r\n \"Href\":\"https://1.2.3.8:9398/api/query?filter=CreationTime%3e%3d2025-02-18T14%3a16%3a31&format=Entities&type=BackupJobSession&pageSize=100&page=1\",\r\n \"Name\":null,\r\n \"Type\":null\r\n },\r\n {\r\n \"Rel\":\"Last\",\r\n \"Href\":\"https://1.2.3.8:9398/api/query?filter=CreationTime%3e%3d2025-02-18T14%3a16%3a31&format=Entities&type=BackupJobSession&pageSize=100&page=1\",\r\n \"Name\":null,\r\n \"Type\":null\r\n }\r\n ],\r\n \"PageNum\":1,\r\n \"PageSize\":100,\r\n \"PagesCount\":1\r\n }\r\n}", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "Authorization", + "value": "Basic dXNlcm5hbWU6cGFzc3dvcmQ=" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "x-restsvcsessionid", + "value": "abc1234xyz" + } + ], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": true, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + } + ], + "rootChildren": [ + { + "type": "route", + "uuid": "80cbe08d-58fd-40fb-9b51-22ea1aefa331" + }, + { + "type": "route", + "uuid": "fa8084db-6b24-48ee-9bf3-55527c9c3f85" + } + ], + "proxyMode": false, + "proxyHost": "", + "proxyRemovePrefix": false, + "tlsOptions": { + "enabled": false, + "type": "CERT", + "pfxPath": "", + "certPath": "", + "keyPath": "", + "caPath": "", + "passphrase": "" + }, + "cors": true, + "headers": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Access-Control-Allow-Origin", + "value": "*" + }, + { + "key": "Access-Control-Allow-Methods", + "value": "GET,POST,PUT,PATCH,DELETE,HEAD,OPTIONS" + }, + { + "key": "Access-Control-Allow-Headers", + "value": "Content-Type, Origin, Accept, Authorization, Content-Length, X-Requested-With" + } + ], + "proxyReqHeaders": [ + { + "key": "", + "value": "" + } + ], + "proxyResHeaders": [ + { + "key": "", + "value": "" + } + ], + "data": [], + "callbacks": [] +} \ No newline at end of file diff --git a/tests/apps/eclipse/mosquitto/mqtt/clients.robot b/tests/apps/eclipse/mosquitto/mqtt/clients.robot index bf06db72c..add2943b7 100644 --- a/tests/apps/eclipse/mosquitto/mqtt/clients.robot +++ b/tests/apps/eclipse/mosquitto/mqtt/clients.robot @@ -1,12 +1,10 @@ *** Settings *** -Documentation Eclipse Mosquitto MQTT plugin tests +Documentation Eclipse Mosquitto MQTT plugin clients mode Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s -Keyword Tags notauto - *** Variables *** ${HOSTNAME} mosquitto_openssl @@ -14,17 +12,44 @@ ${MQTT_PORT} 8883 ${MQTT_CA_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/ca.crt ${MQTT_SSL_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.crt ${MQTT_SSL_KEY} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.key -${CMD} ${CENTREON_PLUGINS} --plugin=apps::eclipse::mosquitto::mqtt::plugin --hostname=${HOSTNAME} --mqtt-port=${MQTT_PORT} --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} --mqtt-ssl-key=${MQTT_SSL_KEY} + +${CMD} ${CENTREON_PLUGINS} +... --plugin=apps::eclipse::mosquitto::mqtt::plugin +... --mode=clients +... --hostname=${HOSTNAME} +... --mqtt-port=${MQTT_PORT} +... --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} +... --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} +... --mqtt-ssl-key=${MQTT_SSL_KEY} +... --mqtt-timeout=10 *** Test Cases *** -Mosquitto MQTT clients - [Documentation] Check Mosquitto MQTT uptime +Mosquitto MQTT clients help + [Documentation] Check Mosquitto MQTT clients help [Tags] eclipse mosquitto mqtt ${command} Catenate ... ${CMD} - ... --mode=clients ... --help - ${output} Run ${command} - ${output} Strip String ${output} \ No newline at end of file + Ctn Run Command And Check Result As Regexp ${command} ^Plugin Description: + +Mosquitto MQTT clients ${tc} + [Documentation] Check Mosquitto MQTT clients + [Tags] eclipse mosquitto mqtt notauto + ${command} Catenate + ... ${CMD} + ... ${extraoptions} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} ^OK: Connected clients: \\\\d+, Maximum clients: \\\\d+, Active clients: \\\\d+, Inactive clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;;\\\\d+; 'maximum_clients'=\\\\d+;;;\\\\d+; 'active_clients'=\\\\d+;;;\\\\d+; 'inactive_clients'=\\\\d+;;;\\\\d+;$ + ... 2 --warning-clients-connected=@0 ^WARNING: Connected clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;@0:0;;\\\\d+; 'maximum_clients'=\\\\d+;;;\\\\d+; 'active_clients'=\\\\d+;;;\\\\d+; 'inactive_clients'=\\\\d+;;;\\\\d+;$ + ... 3 --critical-clients-connected=@0 ^CRITICAL: Connected clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;@0:0;\\\\d+; 'maximum_clients'=\\\\d+;;;\\\\d+; 'active_clients'=\\\\d+;;;\\\\d+; 'inactive_clients'=\\\\d+;;;\\\\d+;$ + ... 4 --warning-clients-maximum=0 ^WARNING: Maximum clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;;\\\\d+; 'maximum_clients'=\\\\d+;0:0;;\\\\d+; 'active_clients'=\\\\d+;;;\\\\d+; 'inactive_clients'=\\\\d+;;;\\\\d+;$ + ... 5 --critical-clients-maximum=0 ^CRITICAL: Maximum clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;;\\\\d+; 'maximum_clients'=\\\\d+;;0:0;\\\\d+; 'active_clients'=\\\\d+;;;\\\\d+; 'inactive_clients'=\\\\d+;;;\\\\d+;$ + ... 6 --warning-clients-active=@0:1 ^WARNING: Active clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;;\\\\d+; 'maximum_clients'=\\\\d+;;;\\\\d+; 'active_clients'=\\\\d+;@0:1;;\\\\d+; 'inactive_clients'=\\\\d+;;;\\\\d+;$ + ... 7 --critical-clients-active=@0:1 ^CRITICAL: Active clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;;\\\\d+; 'maximum_clients'=\\\\d+;;;\\\\d+; 'active_clients'=\\\\d+;;@0:1;\\\\d+; 'inactive_clients'=\\\\d+;;;\\\\d+;$ + ... 8 --warning-clients-inactive=@0 ^WARNING: Inactive clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;;\\\\d+; 'maximum_clients'=\\\\d+;;;\\\\d+; 'active_clients'=\\\\d+;;;\\\\d+; 'inactive_clients'=\\\\d+;@0:0;;\\\\d+;$ + ... 9 --critical-clients-inactive=@0 ^CRITICAL: Inactive clients: \\\\d+ \\\\| 'connected_clients'=\\\\d+;;;\\\\d+; 'maximum_clients'=\\\\d+;;;\\\\d+; 'active_clients'=\\\\d+;;;\\\\d+; 'inactive_clients'=\\\\d+;;@0:0;\\\\d+;$ diff --git a/tests/apps/eclipse/mosquitto/mqtt/messages.robot b/tests/apps/eclipse/mosquitto/mqtt/messages.robot index 8addc34ae..e02512f1b 100644 --- a/tests/apps/eclipse/mosquitto/mqtt/messages.robot +++ b/tests/apps/eclipse/mosquitto/mqtt/messages.robot @@ -1,12 +1,10 @@ *** Settings *** -Documentation Eclipse Mosquitto MQTT plugin tests +Documentation Checks Eclipse Mosquitto MQTT plugin messages mode Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s -Keyword Tags notauto - *** Variables *** ${HOSTNAME} mosquitto_openssl @@ -14,17 +12,42 @@ ${MQTT_PORT} 8883 ${MQTT_CA_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/ca.crt ${MQTT_SSL_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.crt ${MQTT_SSL_KEY} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.key -${CMD} ${CENTREON_PLUGINS} --plugin=apps::eclipse::mosquitto::mqtt::plugin --hostname=${HOSTNAME} --mqtt-port=${MQTT_PORT} --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} --mqtt-ssl-key=${MQTT_SSL_KEY} + +${CMD} ${CENTREON_PLUGINS} +... --plugin=apps::eclipse::mosquitto::mqtt::plugin +... --mode=messages +... --hostname=${HOSTNAME} +... --mqtt-port=${MQTT_PORT} +... --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} +... --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} +... --mqtt-ssl-key=${MQTT_SSL_KEY} +... --mqtt-timeout=10 -*** Test Cases *** -Mosquitto MQTT messages - [Documentation] Check Mosquitto MQTT uptime +*** Test Cases *** +Mosquitto MQTT messages help + [Documentation] Check Mosquitto MQTT messages help [Tags] eclipse mosquitto mqtt ${command} Catenate ... ${CMD} - ... --mode=messages ... --help - ${output} Run ${command} - ${output} Strip String ${output} \ No newline at end of file + Ctn Run Command And Check Result As Regexp ${command} ^Plugin Description: + +Mosquitto MQTT messages ${tc} + [Documentation] Check Mosquitto MQTT messages + [Tags] eclipse mosquitto mqtt notauto + ${command} Catenate + ... ${CMD} + ... ${extraoptions} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} ^OK: Stored messages: \\\\d+, Received messages: \\\\d+, Sent messages: \\\\d+ \\\\| 'stored_messages'=\\\\d+;;;\\\\d+; 'received_messages'=\\\\d+;;;\\\\d+; 'sent_messages'=\\\\d+;;;\\\\d+;$ + ... 2 --warning-messages-stored=@0: ^WARNING: Stored messages: \\\\d+ \\\\| 'stored_messages'=\\\\d+;@0:;;\\\\d+; 'received_messages'=\\\\d+;;;\\\\d+; 'sent_messages'=\\\\d+;;;\\\\d+;$ + ... 3 --critical-messages-stored=@0: ^CRITICAL: Stored messages: \\\\d+ \\\\| 'stored_messages'=\\\\d+;;@0:;\\\\d+; 'received_messages'=\\\\d+;;;\\\\d+; 'sent_messages'=\\\\d+;;;\\\\d+;$ + ... 4 --warning-messages-received=@0: ^WARNING: Received messages: \\\\d+ \\\\| 'stored_messages'=\\\\d+;;;\\\\d+; 'received_messages'=\\\\d+;@0:;;\\\\d+; 'sent_messages'=\\\\d+;;;\\\\d+;$ + ... 5 --critical-messages-received=@0: ^CRITICAL: Received messages: \\\\d+ \\\\| 'stored_messages'=\\\\d+;;;\\\\d+; 'received_messages'=\\\\d+;;@0:;\\\\d+; 'sent_messages'=\\\\d+;;;\\\\d+;$ + ... 6 --warning-messages-sent=@0: ^WARNING: Sent messages: \\\\d+ \\\\| 'stored_messages'=\\\\d+;;;\\\\d+; 'received_messages'=\\\\d+;;;\\\\d+; 'sent_messages'=\\\\d+;@0:;;\\\\d+;$ + ... 7 --critical-messages-sent=@0: ^CRITICAL: Sent messages: \\\\d+ \\\\| 'stored_messages'=\\\\d+;;;\\\\d+; 'received_messages'=\\\\d+;;;\\\\d+; 'sent_messages'=\\\\d+;;@0:;\\\\d+;$ diff --git a/tests/apps/eclipse/mosquitto/mqtt/numeric-value.robot b/tests/apps/eclipse/mosquitto/mqtt/numeric-value.robot index 6209ed6d6..11384ae39 100644 --- a/tests/apps/eclipse/mosquitto/mqtt/numeric-value.robot +++ b/tests/apps/eclipse/mosquitto/mqtt/numeric-value.robot @@ -1,12 +1,10 @@ *** Settings *** -Documentation Eclipse Mosquitto MQTT plugin tests +Documentation Checks Eclipse Mosquitto MQTT plugin numeric-value mode Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s -Keyword Tags notauto - *** Variables *** ${HOSTNAME} mosquitto_openssl @@ -14,17 +12,50 @@ ${MQTT_PORT} 8883 ${MQTT_CA_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/ca.crt ${MQTT_SSL_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.crt ${MQTT_SSL_KEY} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.key -${CMD} ${CENTREON_PLUGINS} --plugin=apps::eclipse::mosquitto::mqtt::plugin --hostname=${HOSTNAME} --mqtt-port=${MQTT_PORT} --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} --mqtt-ssl-key=${MQTT_SSL_KEY} + +${CMD} ${CENTREON_PLUGINS} +... --plugin=apps::eclipse::mosquitto::mqtt::plugin +... --mode=numeric-value +... --hostname=${HOSTNAME} +... --mqtt-port=${MQTT_PORT} +... --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} +... --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} +... --mqtt-ssl-key=${MQTT_SSL_KEY} +... --mqtt-timeout=10 *** Test Cases *** -Mosquitto MQTT numeric-value - [Documentation] Check Mosquitto MQTT uptime +Mosquitto MQTT numeric-value help + [Documentation] Check Mosquitto MQTT numeric-value help [Tags] eclipse mosquitto mqtt ${command} Catenate ... ${CMD} - ... --mode=numeric-value ... --help - ${output} Run ${command} - ${output} Strip String ${output} \ No newline at end of file + Ctn Run Command And Check Result As Regexp ${command} ^Plugin Description: + +Mosquitto MQTT numeric-value ${tc} + [Documentation] Check Mosquitto MQTT numeric-value + [Tags] eclipse mosquitto mqtt notauto + ${command} Catenate + ... ${CMD} + ... --topic='${topic}' + ... --warning=${warning} + ... --critical=${critical} + ... --extracted-pattern='${extracted_pattern}' + ... --format='${format}' + ... --format-custom='${format_custom}' + ... --perfdata-unit=${perfdata_unit} + ... --perfdata-name=${perfdata_name} + ... --perfdata-min=${perfdata_min} + ... --perfdata-max=${perfdata_max} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc topic warning critical extracted_pattern format format_custom perfdata_unit perfdata_name perfdata_min perfdata_max expected_result -- + ... 1 $SYS/broker/messages/sent ${EMPTY} ${EMPTY} ${EMPTY} current value is %s ${EMPTY} ${EMPTY} value ${EMPTY} ${EMPTY} ^OK: current value is \\\\d* \\\\| 'value'=\\\\d*;;;;$ + ... 2 $SYS/broker/uptime ${EMPTY} ${EMPTY} ^(\\\\d+) seconds$ current uptime is %ss ${EMPTY} s uptime ${EMPTY} ${EMPTY} ^OK: current uptime is \\\\d*s \\\\| 'uptime'=\\\\d*s;;;;$ + ... 3 $SYS/broker/uptime ${EMPTY} ${EMPTY} ^(\\\\d+) seconds$ current uptime is %sm / 60 m uptime ${EMPTY} ${EMPTY} ^OK: current uptime is \\\\d*(\\\\.\\\\d*)?m \\\\| 'uptime'=\\\\d*(\\\\.\\\\d*)?m;;;;$ + ... 4 $SYS/broker/clients/total ${EMPTY} ${EMPTY} ${EMPTY} there are %s total clients + 2 / 2 ${EMPTY} clients.total 0 2 ^OK: there are \\\\d* total clients \\\\| 'clients.total'=\\\\d*;;;0;2$ + ... 5 $SYS/broker/clients/active 1 ${EMPTY} ${EMPTY} there are %s active clients + 2 ${EMPTY} clients.active 0 3 ^WARNING: there are \\\\d* active clients \\\\| 'clients.active'=\\\\d*;0:1;;0;3$ + ... 6 $SYS/broker/clients/active ${EMPTY} 1 ${EMPTY} there are %s active clients + 2 ${EMPTY} clients.active 0 3 ^CRITICAL: there are \\\\d* active clients \\\\| 'clients.active'=\\\\d*;;0:1;0;3$ diff --git a/tests/apps/eclipse/mosquitto/mqtt/string-value.robot b/tests/apps/eclipse/mosquitto/mqtt/string-value.robot index 179f96832..672ed12ad 100644 --- a/tests/apps/eclipse/mosquitto/mqtt/string-value.robot +++ b/tests/apps/eclipse/mosquitto/mqtt/string-value.robot @@ -1,12 +1,10 @@ *** Settings *** -Documentation Eclipse Mosquitto MQTT plugin tests +Documentation Checks Eclipse Mosquitto MQTT plugin string-value mode Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s -Keyword Tags notauto - *** Variables *** ${HOSTNAME} mosquitto_openssl @@ -14,17 +12,47 @@ ${MQTT_PORT} 8883 ${MQTT_CA_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/ca.crt ${MQTT_SSL_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.crt ${MQTT_SSL_KEY} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.key -${CMD} ${CENTREON_PLUGINS} --plugin=apps::eclipse::mosquitto::mqtt::plugin --hostname=${HOSTNAME} --mqtt-port=${MQTT_PORT} --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} --mqtt-ssl-key=${MQTT_SSL_KEY} + +${CMD} ${CENTREON_PLUGINS} +... --plugin=apps::eclipse::mosquitto::mqtt::plugin +... --mode=string-value +... --hostname=${HOSTNAME} +... --mqtt-port=${MQTT_PORT} +... --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} +... --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} +... --mqtt-ssl-key=${MQTT_SSL_KEY} +... --mqtt-timeout=10 *** Test Cases *** -Mosquitto MQTT string-value - [Documentation] Check Mosquitto MQTT uptime +Mosquitto MQTT string-value help + [Documentation] Check Mosquitto MQTT string-value help [Tags] eclipse mosquitto mqtt ${command} Catenate ... ${CMD} - ... --mode=string-value ... --help - ${output} Run ${command} - ${output} Strip String ${output} + Ctn Run Command And Check Result As Regexp ${command} ^Plugin Description: + +Mosquitto MQTT string-value ${tc} + [Documentation] Check Mosquitto MQTT string-value + [Tags] eclipse mosquitto mqtt notauto + ${command} Catenate + ... ${CMD} + ... --topic='${topic}' + ... --warning-regexp='${warning}' + ... --critical-regexp='${critical}' + ... ${extraoptions} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc topic warning critical extraoptions expected_result -- + ... 1 $SYS/broker/version ${EMPTY} ${EMPTY} ${EMPTY} ^OK: value: mosquitto version \\\\d*\.\\\\d*\.\\\\d*$ + ... 2 $SYS/broker/version version 2.* ${EMPTY} ${EMPTY} ^WARNING: value: mosquitto version \\\\d*\.\\\\d*\.\\\\d*$ + ... 3 $SYS/broker/version ${EMPTY} version 2.* ${EMPTY} ^CRITICAL: value: mosquitto version \\\\d*\.\\\\d*\.\\\\d*$ + ... 4 $SYS/broker/version ${EMPTY} MOSQUITTO.*2\. --regexp-insensitive ^CRITICAL: value: mosquitto version \\\\d*\.\\\\d*\.\\\\d*$ + ... 5 $SYS/broker/uptime ${EMPTY} ^\\\\d(\\\\d{1,}\\\\sSECOND)S$ ${EMPTY} ^OK: value: \\\\d* seconds$ + ... 6 $SYS/broker/uptime ${EMPTY} ^\\\\d(\\\\d{1,}\\\\sSECOND)S$ --regexp-insensitive ^CRITICAL: value: \\\\d* seconds$ + ... 7 $SYS/broker/version ${EMPTY} ${EMPTY} --format-ok='Value \\\%{value} is ok' ^OK: Value mosquitto version \\\\d*\.\\\\d*\.\\\\d* is ok$ + ... 8 $SYS/broker/version version 2.* ${EMPTY} --format-warning='Value \\\%{value} is a warning' ^WARNING: Value mosquitto version \\\\d*\.\\\\d*\.\\\\d* is a warning$ + ... 9 $SYS/broker/version ${EMPTY} version 2.* --format-critical='Value \\\%{value} is critical' ^CRITICAL: Value mosquitto version \\\\d*\.\\\\d*\.\\\\d* is critical$ diff --git a/tests/apps/eclipse/mosquitto/mqtt/uptime.robot b/tests/apps/eclipse/mosquitto/mqtt/uptime.robot index b95b08211..54776fdd7 100644 --- a/tests/apps/eclipse/mosquitto/mqtt/uptime.robot +++ b/tests/apps/eclipse/mosquitto/mqtt/uptime.robot @@ -1,12 +1,10 @@ *** Settings *** -Documentation Eclipse Mosquitto MQTT plugin tests +Documentation Checks Eclipse Mosquitto MQTT plugin uptime mode Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource Test Timeout 120s -Keyword Tags notauto - *** Variables *** ${HOSTNAME} mosquitto_openssl @@ -14,17 +12,38 @@ ${MQTT_PORT} 8883 ${MQTT_CA_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/ca.crt ${MQTT_SSL_CERTIFICATE} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.crt ${MQTT_SSL_KEY} /home/code/tests/robot/apps/eclipse/mosquitto/mqtt/certs/client.key -${CMD} ${CENTREON_PLUGINS} --plugin=apps::eclipse::mosquitto::mqtt::plugin --hostname=${HOSTNAME} --mqtt-port=${MQTT_PORT} --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} --mqtt-ssl-key=${MQTT_SSL_KEY} + +${CMD} ${CENTREON_PLUGINS} +... --plugin=apps::eclipse::mosquitto::mqtt::plugin +... --mode=uptime +... --hostname=${HOSTNAME} +... --mqtt-port=${MQTT_PORT} +... --mqtt-ca-certificate=${MQTT_CA_CERTIFICATE} +... --mqtt-ssl-certificate=${MQTT_SSL_CERTIFICATE} +... --mqtt-ssl-key=${MQTT_SSL_KEY} +... --mqtt-timeout=10 *** Test Cases *** -Mosquitto MQTT uptime - [Documentation] Check Mosquitto MQTT uptime +Mosquitto MQTT uptime help + [Documentation] Check Mosquitto MQTT uptime help [Tags] eclipse mosquitto mqtt ${command} Catenate ... ${CMD} - ... --mode=uptime ... --help - ${output} Run ${command} - ${output} Strip String ${output} \ No newline at end of file + Ctn Run Command And Check Result As Regexp ${command} ^Plugin Description: + +Mosquitto MQTT uptime ${tc} + [Documentation] Check Mosquitto MQTT uptime + [Tags] eclipse mosquitto mqtt notauto + ${command} Catenate + ... ${CMD} + ... ${extraoptions} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} ^OK: uptime is:( \\\\d+d)?( \\\\d+h)?( \\\\d+m)?( \\\\d+s)? \\\\| 'uptime'=\\\\d+s;;;\\\\d+;$ + ... 2 --warning-uptime=1 ^WARNING: uptime is:( \\\\d+d)?( \\\\d+h)?( \\\\d+m)?( \\\\d+s)? \\\\| 'uptime'=\\\\d+s;0:1;;\\\\d+;$ + ... 3 --critical-uptime=1 ^CRITICAL: uptime is:( \\\\d+d)?( \\\\d+h)?( \\\\d+m)?( \\\\d+s)? \\\\| 'uptime'=\\\\d+s;;0:1;\\\\d+;$ diff --git a/tests/apps/exense/step/restapi/list-plans.robot b/tests/apps/exense/step/restapi/list-plans.robot new file mode 100644 index 000000000..e8a29c720 --- /dev/null +++ b/tests/apps/exense/step/restapi/list-plans.robot @@ -0,0 +1,34 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}mockoon.json + +${cmd} ${CENTREON_PLUGINS} +... --plugin=apps::exense::step::restapi::plugin +... --mode=list-plans +... --hostname=${HOSTNAME} +... --port=${APIPORT} +... --proto=http +... --timeout=15 +... --token=token + + +*** Test Cases *** +list-plans ${tc} + [Tags] apps + ${command} Catenate + ... ${cmd} + ... ${extraoptions} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} List plans: [id: 66d1904664e24c6ef10f74d2][name: plop2-test] [id: 669fc855498c2a0322a6a9c5][name: test-plan] [id: 66d180a764e24c6ef10e0155][name: test-plan_Copy] + ... 2 --tenant-name='[All]' List plans: [id: 66d1904664e24c6ef10f74d2][name: plop2-test] [id: 669fc855498c2a0322a6a9c5][name: test-plan] [id: 66d180a764e24c6ef10e0155][name: test-plan_Copy] diff --git a/tests/apps/exense/step/restapi/list-tenants.robot b/tests/apps/exense/step/restapi/list-tenants.robot new file mode 100644 index 000000000..6d4e9cd7c --- /dev/null +++ b/tests/apps/exense/step/restapi/list-tenants.robot @@ -0,0 +1,33 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}mockoon.json + +${cmd} ${CENTREON_PLUGINS} +... --plugin=apps::exense::step::restapi::plugin +... --mode=list-tenants +... --hostname=${HOSTNAME} +... --port=${APIPORT} +... --proto=http +... --timeout=15 +... --token=token + + +*** Test Cases *** +list-tenants ${tc} + [Tags] apps + ${command} Catenate + ... ${cmd} + ... ${extraoptions} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} List tenants: [name: [All]][projectId: ][global: 1] [name: Common][projectId: 669fc509498c2a0322a6a5ad][global: 0] [name: test-project][projectId: 66d18fc464e24c6ef10f6f02][global: 0] diff --git a/tests/apps/exense/step/restapi/mockoon.json b/tests/apps/exense/step/restapi/mockoon.json new file mode 100644 index 000000000..ee6c2f7d3 --- /dev/null +++ b/tests/apps/exense/step/restapi/mockoon.json @@ -0,0 +1,289 @@ +{ + "uuid": "07dc5f45-6599-4e24-8ac5-2db84d687b64", + "lastMigration": 33, + "name": "List plans", + "endpointPrefix": "", + "latency": 0, + "port": 3000, + "hostname": "", + "folders": [], + "routes": [ + { + "uuid": "f715b4db-b117-4da5-8620-0944ab2a4bc0", + "type": "http", + "documentation": "", + "method": "post", + "endpoint": "rest/access/login", + "responses": [ + { + "uuid": "0f4b3f64-13c5-4f7d-98f1-d8f8ddce11b4", + "body": "", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "Set-Cookie", + "value": "sessionid=azertyuiop" + } + ], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null, + "streamingMode": null, + "streamingInterval": 0 + }, + { + "uuid": "8fc53730-42d0-477a-b9fe-091f77a9124e", + "type": "http", + "documentation": "", + "method": "post", + "endpoint": "rest/tenants/current", + "responses": [ + { + "uuid": "cee1d9cb-26ac-45e6-8b84-fc439baa7203", + "body": "{}", + "latency": 0, + "statusCode": 204, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null, + "streamingMode": null, + "streamingInterval": 0 + }, + { + "uuid": "2b5b4cf5-edd8-4b26-a014-bb2ff19def42", + "type": "http", + "documentation": "", + "method": "post", + "endpoint": "rest/table/plans", + "responses": [ + { + "uuid": "4fb9bc48-7d2e-4559-8642-2342c7b5007f", + "body": "{\r\n \"recordsTotal\": 11,\r\n \"recordsFiltered\": 3,\r\n \"data\": [\r\n {\r\n \"customFields\": {\r\n \"versionId\": \"66d1904664e24c6ef10f74d8\"\r\n },\r\n \"attributes\": {\r\n \"name\": \"plop2-test\",\r\n \"project\": \"66d18fc464e24c6ef10f6f02\"\r\n },\r\n \"root\": {\r\n \"_class\": \"TestCase\",\r\n \"customFields\": null,\r\n \"attributes\": {\r\n \"name\": \"plop2-test\"\r\n },\r\n \"dynamicName\": {\r\n \"dynamic\": false,\r\n \"value\": \"\",\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"useDynamicName\": false,\r\n \"description\": null,\r\n \"children\": [],\r\n \"customAttributes\": null,\r\n \"attachments\": null,\r\n \"skipNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"instrumentNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"continueParentNodeExecutionOnError\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"id\": \"66d1904664e24c6ef10f74d1\"\r\n },\r\n \"functions\": null,\r\n \"subPlans\": null,\r\n \"visible\": true,\r\n \"id\": \"66d1904664e24c6ef10f74d2\"\r\n },\r\n {\r\n \"customFields\": {\r\n \"versionId\": \"669fc885498c2a0322a6aa13\"\r\n },\r\n \"attributes\": {\r\n \"name\": \"test-plan\",\r\n \"project\": \"669fc509498c2a0322a6a5ad\"\r\n },\r\n \"root\": {\r\n \"_class\": \"TestCase\",\r\n \"customFields\": null,\r\n \"attributes\": {\r\n \"name\": \"test-plan\"\r\n },\r\n \"dynamicName\": {\r\n \"dynamic\": false,\r\n \"value\": \"\",\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"useDynamicName\": false,\r\n \"description\": null,\r\n \"children\": [\r\n {\r\n \"_class\": \"CallKeyword\",\r\n \"customFields\": null,\r\n \"attributes\": {\r\n \"name\": \"EBC_Put\"\r\n },\r\n \"dynamicName\": {\r\n \"dynamic\": false,\r\n \"value\": \"\",\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"useDynamicName\": false,\r\n \"description\": null,\r\n \"children\": [],\r\n \"customAttributes\": null,\r\n \"attachments\": null,\r\n \"skipNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"instrumentNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"continueParentNodeExecutionOnError\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"remote\": {\r\n \"dynamic\": false,\r\n \"value\": true,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"token\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"function\": {\r\n \"dynamic\": false,\r\n \"value\": \"{\\\"name\\\":{\\\"value\\\":\\\"EBC_Put\\\",\\\"dynamic\\\":false}}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"argument\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"resultMap\": {\r\n \"dynamic\": false,\r\n \"value\": null,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"id\": \"669fc899498c2a0322a6aa27\"\r\n },\r\n {\r\n \"_class\": \"CallKeyword\",\r\n \"customFields\": null,\r\n \"attributes\": {\r\n \"name\": \"EBC_Put\"\r\n },\r\n \"dynamicName\": {\r\n \"dynamic\": false,\r\n \"value\": \"\",\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"useDynamicName\": false,\r\n \"description\": null,\r\n \"children\": [],\r\n \"customAttributes\": null,\r\n \"attachments\": null,\r\n \"skipNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"instrumentNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"continueParentNodeExecutionOnError\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"remote\": {\r\n \"dynamic\": false,\r\n \"value\": true,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"token\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"function\": {\r\n \"dynamic\": false,\r\n \"value\": \"{\\\"name\\\":{\\\"value\\\":\\\"EBC_Put\\\",\\\"dynamic\\\":false}}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"argument\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"resultMap\": {\r\n \"dynamic\": false,\r\n \"value\": null,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"id\": \"669fc89f498c2a0322a6aa42\"\r\n }\r\n ],\r\n \"customAttributes\": null,\r\n \"attachments\": null,\r\n \"skipNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"instrumentNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"continueParentNodeExecutionOnError\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"id\": \"669fc855498c2a0322a6a9c4\"\r\n },\r\n \"functions\": null,\r\n \"subPlans\": null,\r\n \"visible\": true,\r\n \"id\": \"669fc855498c2a0322a6a9c5\"\r\n },\r\n {\r\n \"customFields\": {\r\n \"versionId\": \"66d180a764e24c6ef10e0159\"\r\n },\r\n \"attributes\": {\r\n \"name\": \"test-plan_Copy\",\r\n \"project\": \"669fc509498c2a0322a6a5ad\"\r\n },\r\n \"root\": {\r\n \"_class\": \"TestCase\",\r\n \"customFields\": null,\r\n \"attributes\": {\r\n \"name\": \"test-plan\"\r\n },\r\n \"dynamicName\": {\r\n \"dynamic\": false,\r\n \"value\": \"\",\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"useDynamicName\": false,\r\n \"description\": null,\r\n \"children\": [\r\n {\r\n \"_class\": \"CallKeyword\",\r\n \"customFields\": null,\r\n \"attributes\": {\r\n \"name\": \"EBC_Put\"\r\n },\r\n \"dynamicName\": {\r\n \"dynamic\": false,\r\n \"value\": \"\",\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"useDynamicName\": false,\r\n \"description\": null,\r\n \"children\": [],\r\n \"customAttributes\": null,\r\n \"attachments\": null,\r\n \"skipNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"instrumentNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"continueParentNodeExecutionOnError\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"remote\": {\r\n \"dynamic\": false,\r\n \"value\": true,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"token\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"function\": {\r\n \"dynamic\": false,\r\n \"value\": \"{\\\"name\\\":{\\\"value\\\":\\\"EBC_Put\\\",\\\"dynamic\\\":false}}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"argument\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"resultMap\": {\r\n \"dynamic\": false,\r\n \"value\": null,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"id\": \"66d180a764e24c6ef10e0157\"\r\n },\r\n {\r\n \"_class\": \"CallKeyword\",\r\n \"customFields\": null,\r\n \"attributes\": {\r\n \"name\": \"EBC_Put\"\r\n },\r\n \"dynamicName\": {\r\n \"dynamic\": false,\r\n \"value\": \"\",\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"useDynamicName\": false,\r\n \"description\": null,\r\n \"children\": [],\r\n \"customAttributes\": null,\r\n \"attachments\": null,\r\n \"skipNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"instrumentNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"continueParentNodeExecutionOnError\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"remote\": {\r\n \"dynamic\": false,\r\n \"value\": true,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"token\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"function\": {\r\n \"dynamic\": false,\r\n \"value\": \"{\\\"name\\\":{\\\"value\\\":\\\"EBC_Put\\\",\\\"dynamic\\\":false}}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"argument\": {\r\n \"dynamic\": false,\r\n \"value\": \"{}\",\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"resultMap\": {\r\n \"dynamic\": false,\r\n \"value\": null,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"id\": \"66d180a764e24c6ef10e0158\"\r\n }\r\n ],\r\n \"customAttributes\": null,\r\n \"attachments\": null,\r\n \"skipNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"instrumentNode\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": \"\",\r\n \"expressionType\": null\r\n },\r\n \"continueParentNodeExecutionOnError\": {\r\n \"dynamic\": false,\r\n \"value\": false,\r\n \"expression\": null,\r\n \"expressionType\": null\r\n },\r\n \"id\": \"66d180a764e24c6ef10e0156\"\r\n },\r\n \"functions\": null,\r\n \"subPlans\": null,\r\n \"visible\": true,\r\n \"id\": \"66d180a764e24c6ef10e0155\"\r\n }\r\n ]\r\n}\r\n", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null, + "streamingMode": null, + "streamingInterval": 0 + }, + { + "uuid": "bd3a354c-dd04-4687-a62b-ab55a9405808", + "type": "http", + "documentation": "", + "method": "post", + "endpoint": "rest/table/executions", + "responses": [ + { + "uuid": "a7273baa-242f-4dc9-9763-cda27e673764", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "access-control-allow-headers", + "value": "Content-Type, Origin, Accept, Authorization, Content-Length, X-Requested-With" + }, + { + "key": "access-control-allow-methods", + "value": "GET,POST,PUT,PATCH,DELETE,HEAD,OPTIONS" + }, + { + "key": "access-control-allow-origin", + "value": "*" + }, + { + "key": "content-security-policy", + "value": "default-src 'none'" + }, + { + "key": "content-type", + "value": "text/html; charset=utf-8" + }, + { + "key": "x-content-type-options", + "value": "nosniff" + } + ], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [], + "body": "{\n \"recordsTotal\": 11,\n \"recordsFiltered\": 10,\n \"data\": [\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"startTime\": 1725012300007,\n \"endTime\": 1725012300059,\n \"description\": \"test-plan\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": \"66d1866e64e24c6ef10e22ae\",\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d1866e64e24c6ef10e22af\"\n },\n \"executiontTaskParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\",\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"name\": null,\n \"executionsParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d1866e64e24c6ef10e22af\"\n },\n \"assertionPlan\": null,\n \"cronExpression\": \"0 0/5 * * * ?\",\n \"cronExclusions\": null,\n \"active\": true,\n \"id\": \"66d1866e64e24c6ef10e22ae\"\n },\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d1994c64e24c6ef1111cdb\",\n \"name\": \"test-plan\",\n \"executionID\": \"66d1994c64e24c6ef1111cdb\",\n \"artefactID\": \"669fc855498c2a0322a6a9c4\",\n \"executionTime\": 1725012300046,\n \"duration\": 8,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"669fc855498c2a0322a6a9c4\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d1994c64e24c6ef1111d1b\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d1994c64e24c6ef1111cdb\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 2\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 2,\n \"count\": 2,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d1994c64e24c6ef1111d14\"\n },\n \"id\": \"66d1994c64e24c6ef1111cdb\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"startTime\": 1725012000006,\n \"endTime\": 1725012000080,\n \"description\": \"test-plan\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": \"66d1866e64e24c6ef10e22ae\",\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d1866e64e24c6ef10e22af\"\n },\n \"executiontTaskParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\",\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"name\": null,\n \"executionsParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d1866e64e24c6ef10e22af\"\n },\n \"assertionPlan\": null,\n \"cronExpression\": \"0 0/5 * * * ?\",\n \"cronExclusions\": null,\n \"active\": true,\n \"id\": \"66d1866e64e24c6ef10e22ae\"\n },\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d1982064e24c6ef1111bbb\",\n \"name\": \"test-plan\",\n \"executionID\": \"66d1982064e24c6ef1111bbb\",\n \"artefactID\": \"669fc855498c2a0322a6a9c4\",\n \"executionTime\": 1725012000062,\n \"duration\": 9,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"669fc855498c2a0322a6a9c4\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d1982064e24c6ef1111bfb\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d1982064e24c6ef1111bbb\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 2\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 2,\n \"count\": 2,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d1982064e24c6ef1111bf4\"\n },\n \"id\": \"66d1982064e24c6ef1111bbb\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"startTime\": 1725011910722,\n \"endTime\": 1725011910844,\n \"description\": \"test-plan\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": null,\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d197c664e24c6ef1111a59\"\n },\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d197c664e24c6ef1111a5c\",\n \"name\": \"test-plan\",\n \"executionID\": \"66d197c664e24c6ef1111a5c\",\n \"artefactID\": \"669fc855498c2a0322a6a9c4\",\n \"executionTime\": 1725011910818,\n \"duration\": 15,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"669fc855498c2a0322a6a9c4\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d197c664e24c6ef1111aac\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d197c664e24c6ef1111a5c\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 2\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 2,\n \"count\": 2,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d197c664e24c6ef1111aa4\"\n },\n \"id\": \"66d197c664e24c6ef1111a5c\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"startTime\": 1725011910391,\n \"endTime\": 1725011910495,\n \"description\": \"test-plan\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": null,\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d197c664e24c6ef11119a5\"\n },\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d197c664e24c6ef11119a8\",\n \"name\": \"test-plan\",\n \"executionID\": \"66d197c664e24c6ef11119a8\",\n \"artefactID\": \"669fc855498c2a0322a6a9c4\",\n \"executionTime\": 1725011910475,\n \"duration\": 11,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"669fc855498c2a0322a6a9c4\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d197c664e24c6ef11119e6\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d197c664e24c6ef11119a8\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 2\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 2,\n \"count\": 2,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d197c664e24c6ef11119e1\"\n },\n \"id\": \"66d197c664e24c6ef11119a8\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"startTime\": 1725011910013,\n \"endTime\": 1725011910158,\n \"description\": \"test-plan\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": null,\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d197c664e24c6ef11118f7\"\n },\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d197c664e24c6ef11118fa\",\n \"name\": \"test-plan\",\n \"executionID\": \"66d197c664e24c6ef11118fa\",\n \"artefactID\": \"669fc855498c2a0322a6a9c4\",\n \"executionTime\": 1725011910129,\n \"duration\": 19,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"669fc855498c2a0322a6a9c4\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d197c664e24c6ef1111946\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d197c664e24c6ef11118fa\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 2\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 2,\n \"count\": 2,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d197c664e24c6ef1111941\"\n },\n \"id\": \"66d197c664e24c6ef11118fa\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"startTime\": 1725011909109,\n \"endTime\": 1725011909165,\n \"description\": \"test-plan\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"669fc855498c2a0322a6a9c5\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": null,\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"669fc855498c2a0322a6a9c5\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"test-plan\",\n \"id\": \"66d197c564e24c6ef111183e\"\n },\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d197c564e24c6ef1111841\",\n \"name\": \"test-plan\",\n \"executionID\": \"66d197c564e24c6ef1111841\",\n \"artefactID\": \"669fc855498c2a0322a6a9c4\",\n \"executionTime\": 1725011909149,\n \"duration\": 10,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"test-plan\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"669fc855498c2a0322a6a9c4\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d197c564e24c6ef1111873\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d197c564e24c6ef1111841\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 2\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 2,\n \"count\": 2,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d197c564e24c6ef111186e\"\n },\n \"id\": \"66d197c564e24c6ef1111841\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"startTime\": 1725011899876,\n \"endTime\": 1725011899919,\n \"description\": \"plop2-test\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"66d1904664e24c6ef10f74d2\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"66d1904664e24c6ef10f74d2\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": null,\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"66d1904664e24c6ef10f74d2\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"plop2-test\",\n \"id\": \"66d197bb64e24c6ef111177b\"\n },\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d197bb64e24c6ef111177e\",\n \"name\": \"plop2-test\",\n \"executionID\": \"66d197bb64e24c6ef111177e\",\n \"artefactID\": \"66d1904664e24c6ef10f74d1\",\n \"executionTime\": 1725011899912,\n \"duration\": 2,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"plop2-test\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"66d1904664e24c6ef10f74d1\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d197bb64e24c6ef11117ac\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d197bb64e24c6ef111177e\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 0\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 0,\n \"count\": 0,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d197bb64e24c6ef11117a7\"\n },\n \"id\": \"66d197bb64e24c6ef111177e\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"startTime\": 1725011899293,\n \"endTime\": 1725011899345,\n \"description\": \"plop2-test\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"66d1904664e24c6ef10f74d2\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"66d1904664e24c6ef10f74d2\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": null,\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"66d1904664e24c6ef10f74d2\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"plop2-test\",\n \"id\": \"66d197bb64e24c6ef11116e4\"\n },\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d197bb64e24c6ef11116e7\",\n \"name\": \"plop2-test\",\n \"executionID\": \"66d197bb64e24c6ef11116e7\",\n \"artefactID\": \"66d1904664e24c6ef10f74d1\",\n \"executionTime\": 1725011899336,\n \"duration\": 2,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"plop2-test\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"66d1904664e24c6ef10f74d1\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d197bb64e24c6ef1111715\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d197bb64e24c6ef11116e7\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 0\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 0,\n \"count\": 0,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d197bb64e24c6ef1111710\"\n },\n \"id\": \"66d197bb64e24c6ef11116e7\"\n },\n {\n \"customFields\": {\n \"hasTimeSeries\": true\n },\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"startTime\": 1725011898218,\n \"endTime\": 1725011898267,\n \"description\": \"plop2-test\",\n \"executionType\": null,\n \"status\": \"ENDED\",\n \"result\": \"PASSED\",\n \"lifecycleErrors\": null,\n \"planId\": \"66d1904664e24c6ef10f74d2\",\n \"importResult\": {\n \"successful\": true,\n \"planId\": \"66d1904664e24c6ef10f74d2\",\n \"errors\": null\n },\n \"reportExports\": [\n {\n \"status\": \"SUCCESSFUL\",\n \"error\": null,\n \"url\": null\n }\n ],\n \"executionTaskID\": null,\n \"parameters\": [],\n \"executionParameters\": {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"66d18fc464e24c6ef10f6f02\"\n },\n \"customParameters\": {\n \"env\": \"TEST\"\n },\n \"userID\": \"admin\",\n \"artefactFilter\": null,\n \"mode\": \"RUN\",\n \"plan\": null,\n \"repositoryObject\": {\n \"repositoryID\": \"local\",\n \"repositoryParameters\": {\n \"planid\": \"66d1904664e24c6ef10f74d2\"\n }\n },\n \"isolatedExecution\": false,\n \"exports\": [],\n \"description\": \"plop2-test\",\n \"id\": \"66d197ba64e24c6ef1111642\"\n },\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.TestCaseReportNode\",\n \"customFields\": null,\n \"parentID\": \"66d197ba64e24c6ef1111645\",\n \"name\": \"plop2-test\",\n \"executionID\": \"66d197ba64e24c6ef1111645\",\n \"artefactID\": \"66d1904664e24c6ef10f74d1\",\n \"executionTime\": 1725011898259,\n \"duration\": 2,\n \"attachments\": [],\n \"status\": \"PASSED\",\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"TestCase\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"plop2-test\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"id\": \"66d1904664e24c6ef10f74d1\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d197ba64e24c6ef1111673\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": \"statusDistributionForFunctionCalls\",\n \"executionId\": \"66d197ba64e24c6ef1111645\",\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 0\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 0,\n \"count\": 0,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d197ba64e24c6ef111166e\"\n },\n \"id\": \"66d197ba64e24c6ef1111645\"\n },\n {\n \"customFields\": null,\n \"attributes\": {\n \"project\": \"669fc509498c2a0322a6a5ad\"\n },\n \"startTime\": 1725002700000,\n \"endTime\": null,\n \"description\": null,\n \"executionType\": null,\n \"status\": null,\n \"result\": null,\n \"lifecycleErrors\": null,\n \"planId\": null,\n \"importResult\": null,\n \"reportExports\": null,\n \"executionTaskID\": null,\n \"parameters\": null,\n \"executionParameters\": null,\n \"executiontTaskParameters\": null,\n \"rootReportNode\": {\n \"_class\": \"step.artefacts.reports.FailureReportNode\",\n \"customFields\": null,\n \"parentID\": null,\n \"name\": null,\n \"executionID\": null,\n \"artefactID\": null,\n \"executionTime\": 0,\n \"duration\": null,\n \"attachments\": [],\n \"status\": null,\n \"error\": null,\n \"customAttributes\": null,\n \"resolvedArtefact\": {\n \"_class\": \"Failure\",\n \"customFields\": null,\n \"attributes\": {\n \"name\": \"Failure\"\n },\n \"dynamicName\": {\n \"dynamic\": false,\n \"value\": \"\",\n \"expression\": \"\",\n \"expressionType\": null\n },\n \"useDynamicName\": false,\n \"description\": null,\n \"children\": [],\n \"customAttributes\": null,\n \"attachments\": null,\n \"skipNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"instrumentNode\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"continueParentNodeExecutionOnError\": {\n \"dynamic\": false,\n \"value\": false,\n \"expression\": null,\n \"expressionType\": null\n },\n \"message\": null,\n \"stackTrace\": null,\n \"id\": \"66d19a0d64e24c6ef1111e4e\"\n },\n \"orphan\": false,\n \"contributingError\": null,\n \"id\": \"66d19a0d64e24c6ef1111e4d\"\n },\n \"executionSummary\": {\n \"customFields\": null,\n \"viewId\": null,\n \"executionId\": null,\n \"distribution\": {\n \"NORUN\": {\n \"status\": \"NORUN\",\n \"count\": 0\n },\n \"IMPORT_ERROR\": {\n \"status\": \"IMPORT_ERROR\",\n \"count\": 0\n },\n \"TECHNICAL_ERROR\": {\n \"status\": \"TECHNICAL_ERROR\",\n \"count\": 0\n },\n \"INTERRUPTED\": {\n \"status\": \"INTERRUPTED\",\n \"count\": 0\n },\n \"PASSED\": {\n \"status\": \"PASSED\",\n \"count\": 0\n },\n \"RUNNING\": {\n \"status\": \"RUNNING\",\n \"count\": 0\n },\n \"FAILED\": {\n \"status\": \"FAILED\",\n \"count\": 0\n },\n \"VETOED\": {\n \"status\": \"VETOED\",\n \"count\": 0\n },\n \"SKIPPED\": {\n \"status\": \"SKIPPED\",\n \"count\": 0\n }\n },\n \"countForecast\": 0,\n \"count\": 0,\n \"label\": \"Keyword calls: \",\n \"id\": \"66d19a0d64e24c6ef1111e4f\"\n },\n \"id\": \"66d1767864e24c6ef1081bd5\"\n }\n ]\n}\n" + } + ], + "responseMode": null, + "streamingMode": null, + "streamingInterval": 0 + }, + { + "uuid": "cd6f3935-a44d-425b-91c4-96b7ae374a89", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "rest/tenants", + "responses": [ + { + "uuid": "e720fcad-13eb-4f12-b22a-e9e7d50fcf7a", + "body": "[{\"name\":\"[All]\",\"global\":true,\"projectId\":null},{\"name\":\"Common\",\"global\":false,\"projectId\":\"669fc509498c2a0322a6a5ad\"},{\"name\":\"test-project\",\"global\":false,\"projectId\":\"66d18fc464e24c6ef10f6f02\"}]\n", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [ + { + "key": "access-control-allow-headers", + "value": "Content-Type, Origin, Accept, Authorization, Content-Length, X-Requested-With" + }, + { + "key": "access-control-allow-methods", + "value": "GET,POST,PUT,PATCH,DELETE,HEAD,OPTIONS" + }, + { + "key": "access-control-allow-origin", + "value": "*" + }, + { + "key": "content-security-policy", + "value": "default-src 'none'" + }, + { + "key": "content-type", + "value": "text/html; charset=utf-8" + }, + { + "key": "x-content-type-options", + "value": "nosniff" + } + ], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null, + "streamingMode": null, + "streamingInterval": 0 + } + ], + "rootChildren": [ + { + "type": "route", + "uuid": "f715b4db-b117-4da5-8620-0944ab2a4bc0" + }, + { + "type": "route", + "uuid": "8fc53730-42d0-477a-b9fe-091f77a9124e" + }, + { + "type": "route", + "uuid": "2b5b4cf5-edd8-4b26-a014-bb2ff19def42" + }, + { + "type": "route", + "uuid": "bd3a354c-dd04-4687-a62b-ab55a9405808" + }, + { + "type": "route", + "uuid": "cd6f3935-a44d-425b-91c4-96b7ae374a89" + } + ], + "proxyMode": false, + "proxyHost": "", + "proxyRemovePrefix": false, + "tlsOptions": { + "enabled": false, + "type": "CERT", + "pfxPath": "", + "certPath": "", + "keyPath": "", + "caPath": "", + "passphrase": "" + }, + "cors": true, + "headers": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Access-Control-Allow-Origin", + "value": "*" + }, + { + "key": "Access-Control-Allow-Methods", + "value": "GET,POST,PUT,PATCH,DELETE,HEAD,OPTIONS" + }, + { + "key": "Access-Control-Allow-Headers", + "value": "Content-Type, Origin, Accept, Authorization, Content-Length, X-Requested-With" + } + ], + "proxyReqHeaders": [ + { + "key": "", + "value": "" + } + ], + "proxyResHeaders": [ + { + "key": "", + "value": "" + } + ], + "data": [], + "callbacks": [] +} \ No newline at end of file diff --git a/tests/apps/exense/step/restapi/plans.robot b/tests/apps/exense/step/restapi/plans.robot new file mode 100644 index 000000000..9401bcd3c --- /dev/null +++ b/tests/apps/exense/step/restapi/plans.robot @@ -0,0 +1,51 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}mockoon.json + +${cmd} ${CENTREON_PLUGINS} +... --plugin=apps::exense::step::restapi::plugin +... --hostname=${HOSTNAME} +... --mode=plans +... --port=${APIPORT} +... --proto=http +... --timeout=15 +... --token=token +... --since-timeperiod=3153600000 + + +*** Test Cases *** +plans ${tc} + [Tags] apps + ${command} Catenate + ... ${cmd} + ... ${extraoptions} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} OK: All plans are ok \\\| 'plans.detected.count'=3;;;0; 'test-plan#plan.executions.detected.count'=6;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;;0;100 'test-plan#plan.execution.last.seconds'=17822466s;;;0; 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.executions.detected.count'=3;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.execution.last.seconds'=17822867s;;;0; + ... 2 --tenant-name='[All]' --filter-plan-name='test-plan' OK: All plans are ok \\\| 'plans.detected.count'=2;;;0; 'test-plan#plan.executions.detected.count'=6;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;;0;100 'test-plan#plan.execution.last.seconds'=17822466s;;;0; 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 + ... 3 --critical-plan-execution-status='\\\%{status} eq "ended"' --filter-plan-name='test-plan' CRITICAL: plan 'test-plan' execution '66d1994c64e24c6ef1111cdb' \\\\[env:\\\\s*(\\\\w+)\\\\]\\\\s*\\\\[started:\\\\s*([\\\\d-]+T[\\\\d:]+)\\\\s*\\\\(UTC\\\\)\\\\] result: passed, status: ended + ... 4 --unknown-plan-execution-status='\\\%{status} eq "ended"' --filter-plan-name='test-plan' UNKNOWN: plan 'test-plan' execution '66d1994c64e24c6ef1111cdb' \\\\[env:\\\\s*(\\\\w+)\\\\]\\\\s*\\\\[started:\\\\s*([\\\\d-]+T[\\\\d:]+)\\\\s*\\\\(UTC\\\\)\\\\] result: passed, status: ended + ... 5 --warning-plan-execution-status='\\\%{status} eq "ended"' --filter-plan-name='test-plan' WARNING: plan 'test-plan' execution '66d1994c64e24c6ef1111cdb' \\\\[env:\\\\s*(\\\\w+)\\\\]\\\\s*\\\\[started:\\\\s*([\\\\d-]+T[\\\\d:]+)\\\\s*\\\\(UTC\\\\)\\\\] result: passed, status: ended + ... 6 --status-failed='\\\%{result} =~ /technical_error|failed|interrupted/i' OK: All plans are ok \\\| 'plans.detected.count'=3;;;0; 'test-plan#plan.executions.detected.count'=6;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;;0;100 'test-plan#plan.execution.last.seconds'=17822468s;;;0; 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.executions.detected.count'=3;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.execution.last.seconds'=17822869s;;;0; + ... 7 --only-last-execution OK: All plans are ok \\\| 'plans.detected.count'=3;;;0; 'test-plan#plan.executions.detected.count'=1;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;;0;100 'test-plan#plan.execution.last.seconds'=17822469s;;;0; 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.executions.detected.count'=1;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.execution.last.seconds'=17822870s;;;0; + ... 8 --since-timeperiod OK: All plans are ok \\\| 'plans.detected.count'=3;;;0; 'test-plan#plan.executions.detected.count'=0;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;;0;100 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.executions.detected.count'=0;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 + ... 9 --warning-plans-detected=1 WARNING: Number of plans detected: 3 \\\| 'plans.detected.count'=3;0:1;;0; 'test-plan#plan.executions.detected.count'=0;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;;0;100 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.executions.detected.count'=0;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 + ... 10 --critical-plans-detected=2 CRITICAL: Number of plans detected: 3 \\\| 'plans.detected.count'=3;;0:2;0; 'test-plan#plan.executions.detected.count'=0;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;;0;100 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.executions.detected.count'=0;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 + ... 11 --warning-plan-executions-detected=1:1 --filter-plan-name='plop2-test' WARNING: plan 'plop2-test' number of plan executions detected: 3 \\\| 'plans.detected.count'=1;;;0; 'plop2-test#plan.executions.detected.count'=3;1:1;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.execution.last.seconds'=17824109s;;;0; + ... 12 --critical-plan-executions-detected=2:2 --filter-plan-name='plop2-test' CRITICAL: plan 'plop2-test' number of plan executions detected: 3 \\\| 'plans.detected.count'=1;;;0; 'plop2-test#plan.executions.detected.count'=3;;2:2;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.execution.last.seconds'=17824110s;;;0; + ... 13 --warning-plan-executions-failed-prct=1:1 --filter-plan-name='plop2-test' WARNING: plan 'plop2-test' number of failed executions: 0.00 % \\\| 'plans.detected.count'=1;;;0; 'plop2-test#plan.executions.detected.count'=0;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;1:1;;0;100 + ... 14 --critical-plan-executions-failed-prct=2:2 --filter-plan-name='test-plan' CRITICAL: plan 'test-plan' number of failed executions: 0.00 % - plan 'test-plan_Copy' number of failed executions: 0.00 % \\\| 'plans.detected.count'=2;;;0; 'test-plan#plan.executions.detected.count'=0;;;0; 'test-plan#plan.executions.failed.percentage'=0.00%;;2:2;0;100 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;2:2;0;100 + ... 15 --warning-plan-execution-last=1:1 --filter-plan-name='plop2-test' WARNING: plan 'plop2-test' last execution (\\\\d+M)?\\\\s?(\\\\d+w)?\\\\s?(\\\\d+d)?\\\\s?(\\\\d+h)?\\\\s?(\\\\d+m)?\\\\s?(\\\\d+s)? \\\| 'plans.detected.count'=1;;;0; 'plop2-test#plan.executions.detected.count'=3;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.execution.last.seconds'=17824618s;1:1;;0; + ... 16 --critical-plan-execution-last=2:2 --filter-plan-name='plop2-test' CRITICAL: plan 'plop2-test' last execution (\\\\d+M)?\\\\s?(\\\\d+w)?\\\\s?(\\\\d+d)?\\\\s?(\\\\d+h)?\\\\s?(\\\\d+m)?\\\\s?(\\\\d+s)? \\\| 'plans.detected.count'=1;;;0; 'plop2-test#plan.executions.detected.count'=3;;;0; 'plop2-test#plan.executions.failed.percentage'=0.00%;;;0;100 'plop2-test#plan.execution.last.seconds'=17824619s;;2:2;0; + ... 17 --warning-plan-running-duration=0 --filter-plan-name='test-plan_Copy' OK: plan 'test-plan_Copy' number of plan executions detected: 0 - number of failed executions: 0.00 % | 'plans.detected.count'=1;;;0; 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 + ... 18 --critical-plan-running-duration='0' --filter-plan-name='test-plan_Copy' OK: plan 'test-plan_Copy' number of plan executions detected: 0 - number of failed executions: 0.00 % | 'plans.detected.count'=1;;;0; 'test-plan_Copy#plan.executions.detected.count'=0;;;0; 'test-plan_Copy#plan.executions.failed.percentage'=0.00%;;;0;100 diff --git a/tests/apps/vmware/vsphere8/esx/cpu-curl.robot b/tests/apps/vmware/vsphere8/esx/cpu-curl.robot index 9da11dce6..40f0f86d9 100644 --- a/tests/apps/vmware/vsphere8/esx/cpu-curl.robot +++ b/tests/apps/vmware/vsphere8/esx/cpu-curl.robot @@ -28,19 +28,19 @@ Cpu with curl ${tc} Ctn Run Command And Check Result As Strings ${command} ${expected_result} Examples: tc extraoptions expected_result -- - ... 1 ${EMPTY} OK: usage-percentage : skipped (no value(s)), usage-frequency : skipped (no value(s)) - no data for host host-22 counter cpu.capacity.provisioned.HOST at the moment. - ... 2 ${EMPTY} OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 - ... 3 --add-contention OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 - ... 4 --add-demand OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average demand is 8.36 %, demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 - ... 5 --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.corecount.usage.count'=83;;;; - ... 6 --add-contention --add-demand --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % - CPU average demand is 8.36 %, demand frequency is 4201 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 'cpu.corecount.usage.count'=83;;;; - ... 7 --warning-usage-percentage=5 WARNING: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;0:5;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 - ... 8 --critical-usage-percentage=5 CRITICAL: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;;0:5;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 - ... 9 --warning-usage-frequency=5 WARNING: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;0:5;;;50280000 - ... 10 --critical-usage-frequency=5 CRITICAL: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;0:5;;50280000 - ... 11 --warning-demand-percentage=5 WARNING: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;0:5;;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 - ... 12 --critical-demand-percentage=5 CRITICAL: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;0:5;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 - ... 13 --warning-demand-frequency=5 WARNING: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;0:5;;;50280000 - ... 14 --critical-demand-frequency=5 CRITICAL: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;;0:5;;50280000 - ... 15 --warning-contention-percentage=5: WARNING: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;5:;;0;100 - ... 16 --critical-contention-percentage=5: CRITICAL: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;;5:;0;100 + ... 1 ${EMPTY} OK: usage-prct : skipped (no value(s)), usage-frequency : skipped (no value(s)) - no data for host host-22 counter cpu.capacity.provisioned.HOST at the moment. + ... 2 ${EMPTY} OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 + ... 3 --add-contention OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 + ... 4 --add-demand OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average demand is 8.36 %, demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 + ... 5 --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.corecount.usage.count'=83;;;; + ... 6 --add-contention --add-demand --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % - CPU average demand is 8.36 %, demand frequency is 4201 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 'cpu.corecount.usage.count'=83;;;; + ... 7 --warning-usage-prct=5 WARNING: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;0:5;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 + ... 8 --critical-usage-prct=5 CRITICAL: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;;0:5;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 + ... 9 --warning-usage-frequency=5 WARNING: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;0:5;;0;50280000 + ... 10 --critical-usage-frequency=5 CRITICAL: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;0:5;0;50280000 + ... 11 --warning-demand-prct=5 WARNING: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;0:5;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 + ... 12 --critical-demand-prct=5 CRITICAL: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;0:5;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 + ... 13 --warning-demand-frequency=5 WARNING: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;0:5;;0;50280000 + ... 14 --critical-demand-frequency=5 CRITICAL: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;0:5;0;50280000 + ... 15 --warning-contention-prct=5: WARNING: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;5:;;0;100 + ... 16 --critical-contention-prct=5: CRITICAL: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;;5:;0;100 diff --git a/tests/apps/vmware/vsphere8/esx/cpu-lwp.robot b/tests/apps/vmware/vsphere8/esx/cpu-lwp.robot index ef732a378..40e5e065f 100644 --- a/tests/apps/vmware/vsphere8/esx/cpu-lwp.robot +++ b/tests/apps/vmware/vsphere8/esx/cpu-lwp.robot @@ -28,19 +28,19 @@ Cpu with lwp ${tc} Ctn Run Command And Check Result As Strings ${command} ${expected_result} Examples: tc extraoptions expected_result -- - ... 1 ${EMPTY} OK: usage-percentage : skipped (no value(s)), usage-frequency : skipped (no value(s)) - no data for host host-22 counter cpu.capacity.provisioned.HOST at the moment. - ... 2 ${EMPTY} OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 - ... 3 --add-contention OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 - ... 4 --add-demand OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average demand is 8.36 %, demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 - ... 5 --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.corecount.usage.count'=83;;;; - ... 6 --add-contention --add-demand --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % - CPU average demand is 8.36 %, demand frequency is 4201 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 'cpu.corecount.usage.count'=83;;;; - ... 7 --warning-usage-percentage=5 WARNING: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;0:5;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 - ... 8 --critical-usage-percentage=5 CRITICAL: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;;0:5;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 - ... 9 --warning-usage-frequency=5 WARNING: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;0:5;;;50280000 - ... 10 --critical-usage-frequency=5 CRITICAL: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;0:5;;50280000 - ... 11 --warning-demand-percentage=5 WARNING: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;0:5;;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 - ... 12 --critical-demand-percentage=5 CRITICAL: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;0:5;; 'cpu.capacity.demand.hertz'=4201000Hz;;;;50280000 - ... 13 --warning-demand-frequency=5 WARNING: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;0:5;;;50280000 - ... 14 --critical-demand-frequency=5 CRITICAL: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.demand.percentage'=8.3552108194113;;;; 'cpu.capacity.demand.hertz'=4201000Hz;;0:5;;50280000 - ... 15 --warning-contention-percentage=5: WARNING: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;5:;;0;100 - ... 16 --critical-contention-percentage=5: CRITICAL: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;;50280000 'cpu.capacity.contention.percentage'=0.55%;;5:;0;100 + ... 1 ${EMPTY} OK: usage-prct : skipped (no value(s)), usage-frequency : skipped (no value(s)) - no data for host host-22 counter cpu.capacity.provisioned.HOST at the moment. + ... 2 ${EMPTY} OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 + ... 3 --add-contention OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 + ... 4 --add-demand OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average demand is 8.36 %, demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 + ... 5 --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.corecount.usage.count'=83;;;; + ... 6 --add-contention --add-demand --add-corecount OK: CPU average usage is 9.16 %, used frequency is 4603.44 kHz - CPU average contention is 0.55 % - CPU average demand is 8.36 %, demand frequency is 4201 kHz - CPU cores used: 83 | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;;;0;100 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 'cpu.corecount.usage.count'=83;;;; + ... 7 --warning-usage-prct=5 WARNING: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;0:5;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 + ... 8 --critical-usage-prct=5 CRITICAL: CPU average usage is 9.16 % | 'cpu.capacity.usage.percentage'=9.16%;;0:5;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 + ... 9 --warning-usage-frequency=5 WARNING: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;0:5;;0;50280000 + ... 10 --critical-usage-frequency=5 CRITICAL: used frequency is 4603.44 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;0:5;0;50280000 + ... 11 --warning-demand-prct=5 WARNING: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;0:5;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 + ... 12 --critical-demand-prct=5 CRITICAL: CPU average demand is 8.36 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;0:5;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;;0;50280000 + ... 13 --warning-demand-frequency=5 WARNING: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;0:5;;0;50280000 + ... 14 --critical-demand-frequency=5 CRITICAL: demand frequency is 4201 kHz | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.demand.percentage'=8.3552108194113%;;;0;100 'cpu.capacity.demand.hertz'=4201000Hz;;0:5;0;50280000 + ... 15 --warning-contention-prct=5: WARNING: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;5:;;0;100 + ... 16 --critical-contention-prct=5: CRITICAL: CPU average contention is 0.55 % | 'cpu.capacity.usage.percentage'=9.16%;;;0;100 'cpu.capacity.usage.hertz'=4603440Hz;;;0;50280000 'cpu.capacity.contention.percentage'=0.55%;;5:;0;100 diff --git a/tests/apps/vmware/vsphere8/esx/diskio.robot b/tests/apps/vmware/vsphere8/esx/diskio.robot new file mode 100644 index 000000000..df6109133 --- /dev/null +++ b/tests/apps/vmware/vsphere8/esx/diskio.robot @@ -0,0 +1,36 @@ +*** Settings *** + + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s +Test Setup Ctn Cleanup Cache + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}vmware8-restapi.mockoon.json + +${CMD} ${CENTREON_PLUGINS} --plugin=apps::vmware::vsphere8::esx::plugin +... --mode=disk-io +... --password=C3POR2P2 +... --username=obi-wan +... --hostname=127.0.0.1 +... --proto=http +... --port=3000 +... --esx-id=host-22 + +*** Test Cases *** +Disk-Io ${tc} + [Tags] apps api vmware vsphere8 esx + ${command} Catenate ${CMD} ${extraoptions} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} OK: usage-bps : skipped (no value(s)), contention-ms : skipped (no value(s)) - no data for host host-22 counter disk.throughput.usage.HOST at the moment. - no data for host host-22 counter disk.throughput.contention.HOST at the moment. + ... 2 ${EMPTY} OK: Disk throughput usage: 125.88 MB/s, Disk throughput contention is 0.19 ms | 'disk.throughput.usage.bytespersecond'=131992094.72Bps;;;; 'disk.throughput.contention.milliseconds'=0.19ms;;;; + ... 3 --warning-contention-ms=0:0 WARNING: Disk throughput contention is 0.19 ms | 'disk.throughput.usage.bytespersecond'=131992094.72Bps;;;; 'disk.throughput.contention.milliseconds'=0.19ms;0:0;;; + ... 4 --critical-contention-ms=0:0 CRITICAL: Disk throughput contention is 0.19 ms | 'disk.throughput.usage.bytespersecond'=131992094.72Bps;;;; 'disk.throughput.contention.milliseconds'=0.19ms;;0:0;; + ... 5 --warning-usage-bps=0:0 WARNING: Disk throughput usage: 125.88 MB/s | 'disk.throughput.usage.bytespersecond'=131992094.72Bps;0:0;;; 'disk.throughput.contention.milliseconds'=0.19ms;;;; + ... 6 --critical-usage-bps=0:0 CRITICAL: Disk throughput usage: 125.88 MB/s | 'disk.throughput.usage.bytespersecond'=131992094.72Bps;;0:0;; 'disk.throughput.contention.milliseconds'=0.19ms;;;; diff --git a/tests/apps/vmware/vsphere8/esx/memory.robot b/tests/apps/vmware/vsphere8/esx/memory.robot index bdb704af9..4474865b6 100644 --- a/tests/apps/vmware/vsphere8/esx/memory.robot +++ b/tests/apps/vmware/vsphere8/esx/memory.robot @@ -28,9 +28,9 @@ Memory ${tc} Ctn Run Command And Check Result As Strings ${command} ${expected_result} Examples: tc extraoptions expected_result -- - ... 1 ${EMPTY} OK: vms-usage-percentage : skipped (no value(s)) - vms-usage-bytes : skipped (no value(s)) - no data for host host-22 counter mem.capacity.usable.HOST at the moment. + ... 1 ${EMPTY} OK: usage-prct : skipped (no value(s)) - usage-bytes : skipped (no value(s)) - no data for host host-22 counter mem.capacity.usable.HOST at the moment. ... 2 ${EMPTY} OK: 39% of usable memory is used by VMs - Memory used: 100.02 GB used - Usable: 253.97 GB | 'vms.memory.usage.percentage'=39.38%;;;0;100 'vms.memory.usage.bytes'=107400208056B;;;;272694090137 - ... 3 --warning-vms-usage-percentage=0:0 WARNING: 39% of usable memory is used by VMs | 'vms.memory.usage.percentage'=39.38%;0:0;;0;100 'vms.memory.usage.bytes'=107400208056B;;;;272694090137 - ... 4 --critical-vms-usage-percentage=0:0 CRITICAL: 39% of usable memory is used by VMs | 'vms.memory.usage.percentage'=39.38%;;0:0;0;100 'vms.memory.usage.bytes'=107400208056B;;;;272694090137 - ... 5 --warning-vms-usage-bytes=0:0 WARNING: Memory used: 100.02 GB used - Usable: 253.97 GB | 'vms.memory.usage.percentage'=39.38%;;;0;100 'vms.memory.usage.bytes'=107400208056B;0:0;;;272694090137 - ... 6 --critical-vms-usage-bytes=0:0 CRITICAL: Memory used: 100.02 GB used - Usable: 253.97 GB | 'vms.memory.usage.percentage'=39.38%;;;0;100 'vms.memory.usage.bytes'=107400208056B;;0:0;;272694090137 + ... 3 --warning-usage-prct=0:0 WARNING: 39% of usable memory is used by VMs | 'vms.memory.usage.percentage'=39.38%;0:0;;0;100 'vms.memory.usage.bytes'=107400208056B;;;;272694090137 + ... 4 --critical-usage-prct=0:0 CRITICAL: 39% of usable memory is used by VMs | 'vms.memory.usage.percentage'=39.38%;;0:0;0;100 'vms.memory.usage.bytes'=107400208056B;;;;272694090137 + ... 5 --warning-usage-bytes=0:0 WARNING: Memory used: 100.02 GB used - Usable: 253.97 GB | 'vms.memory.usage.percentage'=39.38%;;;0;100 'vms.memory.usage.bytes'=107400208056B;0:0;;;272694090137 + ... 6 --critical-usage-bytes=0:0 CRITICAL: Memory used: 100.02 GB used - Usable: 253.97 GB | 'vms.memory.usage.percentage'=39.38%;;;0;100 'vms.memory.usage.bytes'=107400208056B;;0:0;;272694090137 diff --git a/tests/apps/vmware/vsphere8/esx/network.robot b/tests/apps/vmware/vsphere8/esx/network.robot new file mode 100644 index 000000000..2c76b095e --- /dev/null +++ b/tests/apps/vmware/vsphere8/esx/network.robot @@ -0,0 +1,39 @@ +*** Settings *** + + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s +Test Setup Ctn Cleanup Cache + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}vmware8-restapi.mockoon.json + +${CMD} ${CENTREON_PLUGINS} --plugin=apps::vmware::vsphere8::esx::plugin +... --mode=network +... --password=C3POR2P2 +... --username=obi-wan +... --hostname=127.0.0.1 +... --proto=http +... --port=3000 +... --esx-id=host-22 + +*** Test Cases *** +Network ${tc} + [Tags] apps api vmware vsphere8 esx + ${command} Catenate ${CMD} ${extraoptions} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} OK: usage-bps : skipped (no value(s)), usage-prct : skipped (no value(s)) - no data for host host-22 counter net.throughput.usable.HOST at the moment. + ... 2 ${EMPTY} OK: Network throughput usage: 184.96 KB/s of 953.67 MB/s usable, 0.02% of usable network throughput used | 'network.throughput.usage.bytespersecond'=189399.04Bps;;;0;1000000000 'network.throughput.usage.percent'=0.018939904%;;;0;100 + ... 3 --warning-contention-count=1:1 WARNING: 0 packet(s) dropped | 'network.throughput.usage.bytespersecond'=189399.04Bps;;;0;1000000000 'network.throughput.usage.percent'=0.018939904%;;;0;100 'network.throughput.contention.count'=0;1:1;;; + ... 4 --critical-contention-count=1:1 CRITICAL: 0 packet(s) dropped | 'network.throughput.usage.bytespersecond'=189399.04Bps;;;0;1000000000 'network.throughput.usage.percent'=0.018939904%;;;0;100 'network.throughput.contention.count'=0;;1:1;; + ... 5 --warning-usage-bps=1:1 WARNING: Network throughput usage: 184.96 KB/s of 953.67 MB/s usable | 'network.throughput.usage.bytespersecond'=189399.04Bps;1:1;;0;1000000000 'network.throughput.usage.percent'=0.018939904%;;;0;100 + ... 6 --critical-usage-bps=1:1 CRITICAL: Network throughput usage: 184.96 KB/s of 953.67 MB/s usable | 'network.throughput.usage.bytespersecond'=189399.04Bps;;1:1;0;1000000000 'network.throughput.usage.percent'=0.018939904%;;;0;100 + ... 7 --warning-usage-prct=1:1 WARNING: 0.02% of usable network throughput used | 'network.throughput.usage.bytespersecond'=189399.04Bps;;;0;1000000000 'network.throughput.usage.percent'=0.018939904%;1:1;;0;100 + ... 8 --critical-usage-prct=1:1 CRITICAL: 0.02% of usable network throughput used | 'network.throughput.usage.bytespersecond'=189399.04Bps;;;0;1000000000 'network.throughput.usage.percent'=0.018939904%;;1:1;0;100 + diff --git a/tests/apps/vmware/vsphere8/esx/power.robot b/tests/apps/vmware/vsphere8/esx/power.robot index 8a0daaefb..cdaeb4545 100644 --- a/tests/apps/vmware/vsphere8/esx/power.robot +++ b/tests/apps/vmware/vsphere8/esx/power.robot @@ -27,8 +27,8 @@ Power ${tc} Ctn Run Command And Check Result As Strings ${command} ${expected_result} - Examples: tc extraoptions expected_result -- - ... 1 ${EMPTY} OK: power-usage-watts : skipped (no value(s)) - no data for host host-22 counter power.capacity.usage.HOST at the moment. - ... 2 ${EMPTY} OK: Power usage is 200 Watts | 'power.capacity.usage.watts'=200W;;;; - ... 3 --warning-power-usage-watts=0:0 WARNING: Power usage is 200 Watts | 'power.capacity.usage.watts'=200W;0:0;;; - ... 4 --critical-power-usage-watts=0:0 CRITICAL: Power usage is 200 Watts | 'power.capacity.usage.watts'=200W;;0:0;; + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} OK: usage-watts : skipped (no value(s)) - no data for host host-22 counter power.capacity.usage.HOST at the moment. + ... 2 ${EMPTY} OK: Power usage is 200 Watts | 'power.capacity.usage.watts'=200W;;;0; + ... 3 --warning-usage-watts=0:0 WARNING: Power usage is 200 Watts | 'power.capacity.usage.watts'=200W;0:0;;0; + ... 4 --critical-usage-watts=0:0 CRITICAL: Power usage is 200 Watts | 'power.capacity.usage.watts'=200W;;0:0;0; diff --git a/tests/apps/vmware/vsphere8/esx/swap.robot b/tests/apps/vmware/vsphere8/esx/swap.robot new file mode 100644 index 000000000..1a394d086 --- /dev/null +++ b/tests/apps/vmware/vsphere8/esx/swap.robot @@ -0,0 +1,41 @@ +*** Settings *** + + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s +Test Setup Ctn Cleanup Cache + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}vmware8-restapi.mockoon.json + +${CMD} ${CENTREON_PLUGINS} --plugin=apps::vmware::vsphere8::esx::plugin +... --mode=swap +... --password=C3POR2P2 +... --username=obi-wan +... --hostname=127.0.0.1 +... --proto=http +... --port=3000 +... --esx-id=host-22 + +*** Test Cases *** +Swap ${tc} + [Tags] apps api vmware vsphere8 esx + ${command} Catenate ${CMD} --http-backend=curl ${extraoptions} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} OK: usage-bytes : skipped (no value(s)), usage-prct : skipped (no value(s)) - no data for host host-22 counter mem.swap.current.HOST at the moment. + ... 2 ${EMPTY} OK: Swap usage: 120.56 MB (max available is 1.00 TB), Percent used: 0.01% | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 + ... 3 --add-rates OK: Swap usage: 120.56 MB (max available is 1.00 TB), Percent used: 0.01% - Swap read rate is: 6.39 MB/s, Swap write rate is: 1.21 MB/s | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 'swap.read-rate.bytespersecond'=6700236.8Bps;;;; 'swap.write-rate.bytespersecond'=1264128Bps;;;; + ... 4 --warning-read-rate-bps=1 WARNING: Swap read rate is: 6.39 MB/s | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 'swap.read-rate.bytespersecond'=6700236.8Bps;0:1;;; 'swap.write-rate.bytespersecond'=1264128Bps;;;; + ... 5 --critical-read-rate-bps=1 CRITICAL: Swap read rate is: 6.39 MB/s | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 'swap.read-rate.bytespersecond'=6700236.8Bps;;0:1;; 'swap.write-rate.bytespersecond'=1264128Bps;;;; + ... 6 --warning-write-rate-bps=1 WARNING: Swap write rate is: 1.21 MB/s | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 'swap.read-rate.bytespersecond'=6700236.8Bps;;;; 'swap.write-rate.bytespersecond'=1264128Bps;0:1;;; + ... 7 --critical-write-rate-bps=1 CRITICAL: Swap write rate is: 1.21 MB/s | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 'swap.read-rate.bytespersecond'=6700236.8Bps;;;; 'swap.write-rate.bytespersecond'=1264128Bps;;0:1;; + ... 8 --warning-usage-bytes=1 WARNING: Swap usage: 120.56 MB (max available is 1.00 TB) | 'swap.usage.bytes'=126419660.8B;0:1;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 + ... 9 --critical-usage-bytes=1 CRITICAL: Swap usage: 120.56 MB (max available is 1.00 TB) | 'swap.usage.bytes'=126419660.8B;;0:1;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;;0;100 + ... 10 --warning-usage-prct=1: WARNING: Percent used: 0.01% | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;1:;;0;100 + ... 11 --critical-usage-prct=1: CRITICAL: Percent used: 0.01% | 'swap.usage.bytes'=126419660.8B;;;;1099511627776 'swap.usage.percent'=0.0114978011697531%;;1:;0;100 diff --git a/tests/apps/vmware/vsphere8/esx/vmware8-restapi.mockoon.json b/tests/apps/vmware/vsphere8/esx/vmware8-restapi.mockoon.json index 902452a76..32936651b 100644 --- a/tests/apps/vmware/vsphere8/esx/vmware8-restapi.mockoon.json +++ b/tests/apps/vmware/vsphere8/esx/vmware8-restapi.mockoon.json @@ -287,7 +287,7 @@ "body": "{\n \"data_points\": []\n}\n", "latency": 0, "statusCode": 200, - "label": "", + "label": "no data", "headers": [ { "key": "access-control-allow-headers", @@ -339,7 +339,7 @@ "body": "{\"data_points\":[{\"val\":50280.0,\"mid\":\"-4283477827978228727\",\"rid\":\"102\",\"cid\":\"cpu.capacity.provisioned.HOST\",\"ts\":1739271090},{\"val\":50280.0,\"mid\":\"-4283477827978228727\",\"rid\":\"102\",\"cid\":\"cpu.capacity.provisioned.HOST\",\"ts\":1739271150},{\"val\":50280.0,\"mid\":\"-4283477827978228727\",\"rid\":\"102\",\"cid\":\"cpu.capacity.provisioned.HOST\",\"ts\":1739271210}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "cpu.capacity.provisioned.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -373,7 +373,7 @@ "body": " {\"data_points\":[{\"val\":3572.68,\"mid\":\"-5138147526746009769\",\"rid\":\"102\",\"cid\":\"cpu.capacity.usage.HOST\",\"ts\":1739271090},{\"val\":3732.93,\"mid\":\"-5138147526746009769\",\"rid\":\"102\",\"cid\":\"cpu.capacity.usage.HOST\",\"ts\":1739271150},{\"val\":4603.44,\"mid\":\"-5138147526746009769\",\"rid\":\"102\",\"cid\":\"cpu.capacity.usage.HOST\",\"ts\":1739271210}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "cpu.capacity.usage.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -407,7 +407,7 @@ "body": "{\"data_points\":[{\"val\":3494.0,\"mid\":\"-9094858043316143888\",\"rid\":\"102\",\"cid\":\"cpu.capacity.demand.HOST\",\"ts\":1739271090},{\"val\":3258.0,\"mid\":\"-9094858043316143888\",\"rid\":\"102\",\"cid\":\"cpu.capacity.demand.HOST\",\"ts\":1739271150},{\"val\":4201.0,\"mid\":\"-9094858043316143888\",\"rid\":\"102\",\"cid\":\"cpu.capacity.demand.HOST\",\"ts\":1739271210}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "cpu.capacity.demand.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -434,7 +434,7 @@ "body": "{\"data_points\":[{\"val\":0.57,\"mid\":\"-1713180257827098203\",\"rid\":\"102\",\"cid\":\"cpu.capacity.contention.HOST\",\"ts\":1739271090},{\"val\":0.59,\"mid\":\"-1713180257827098203\",\"rid\":\"102\",\"cid\":\"cpu.capacity.contention.HOST\",\"ts\":1739271150},{\"val\":0.55,\"mid\":\"-1713180257827098203\",\"rid\":\"102\",\"cid\":\"cpu.capacity.contention.HOST\",\"ts\":1739271210}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "cpu.capacity.contention.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -461,7 +461,7 @@ "body": "{\"data_points\":[{\"val\":24.0,\"mid\":\"7871225830587267191\",\"rid\":\"102\",\"cid\":\"cpu.corecount.provisioned.HOST\",\"ts\":1739271090},{\"val\":24.0,\"mid\":\"7871225830587267191\",\"rid\":\"102\",\"cid\":\"cpu.corecount.provisioned.HOST\",\"ts\":1739271150},{\"val\":24.0,\"mid\":\"7871225830587267191\",\"rid\":\"102\",\"cid\":\"cpu.corecount.provisioned.HOST\",\"ts\":1739271210}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "cpu.corecount.provisioned.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -488,7 +488,7 @@ "body": "{\"data_points\":[{\"val\":83.0,\"mid\":\"-8703878081681686712\",\"rid\":\"102\",\"cid\":\"cpu.corecount.usage.HOST\",\"ts\":1739271090},{\"val\":83.0,\"mid\":\"-8703878081681686712\",\"rid\":\"102\",\"cid\":\"cpu.corecount.usage.HOST\",\"ts\":1739271150},{\"val\":83.0,\"mid\":\"-8703878081681686712\",\"rid\":\"102\",\"cid\":\"cpu.corecount.usage.HOST\",\"ts\":1739271210}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "cpu.corecount.usage.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -515,7 +515,7 @@ "body": "{\"data_points\":[{\"val\":0.0,\"mid\":\"3949316748863634779\",\"rid\":\"102\",\"cid\":\"cpu.corecount.contention.HOST\",\"ts\":1739271090},{\"val\":0.0,\"mid\":\"3949316748863634779\",\"rid\":\"102\",\"cid\":\"cpu.corecount.contention.HOST\",\"ts\":1739271150},{\"val\":0.0,\"mid\":\"3949316748863634779\",\"rid\":\"102\",\"cid\":\"cpu.corecount.contention.HOST\",\"ts\":1739271210}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "cpu.corecount.contention.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -542,7 +542,7 @@ "body": "{\"data_points\":[{\"val\":260061.38,\"mid\":\"7912217246818631397\",\"rid\":\"102\",\"cid\":\"mem.capacity.usable.HOST\",\"ts\":1740039750},{\"val\":260061.35,\"mid\":\"7912217246818631397\",\"rid\":\"102\",\"cid\":\"mem.capacity.usable.HOST\",\"ts\":1740039810}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "mem.capacity.usable.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -569,7 +569,7 @@ "body": "{\"data_points\":[{\"val\":102424.82,\"mid\":\"-6907936868309351765\",\"rid\":\"102\",\"cid\":\"mem.consumed.vms.HOST\",\"ts\":1740039750},{\"val\":102424.82,\"mid\":\"-6907936868309351765\",\"rid\":\"102\",\"cid\":\"mem.consumed.vms.HOST\",\"ts\":1740039810}]}", "latency": 0, "statusCode": 200, - "label": "", + "label": "mem.consumed.vms.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -596,7 +596,7 @@ "body": "{\"data_points\":[{\"val\":206.0,\"mid\":\"8446910325652763598\",\"rid\":\"102\",\"cid\":\"power.capacity.usage.HOST\",\"ts\":1740152385},{\"val\":200.0,\"mid\":\"8446910325652763598\",\"rid\":\"102\",\"cid\":\"power.capacity.usage.HOST\",\"ts\":1740152445},{\"val\":200.0,\"mid\":\"8446910325652763598\",\"rid\":\"102\",\"cid\":\"power.capacity.usage.HOST\",\"ts\":1740152505}]}\n", "latency": 0, "statusCode": 200, - "label": "", + "label": "power.capacity.usage.HOST", "headers": [], "bodyType": "INLINE", "filePath": "", @@ -617,6 +617,263 @@ "default": false, "crudKey": "id", "callbacks": [] + }, + { + "uuid": "4e2245ea-f82b-45d5-8061-6871a48ba52e", + "body": "{\"data_points\":[{\"val\":6543.2,\"mid\":\"-589925797652405914\",\"rid\":\"102\",\"cid\":\"mem.swap.writerate.HOST\",\"ts\":1741942492},{\"val\":4567.8,\"mid\":\"-589925797652405914\",\"rid\":\"102\",\"cid\":\"mem.swap.writerate.HOST\",\"ts\":1741942552},{\"val\":1234.5,\"mid\":\"-589925797652405914\",\"rid\":\"102\",\"cid\":\"mem.swap.writerate.HOST\",\"ts\":1741942612}]}", + "latency": 0, + "statusCode": 200, + "label": "mem.swap.writerate.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "mem.swap.writerate.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "5c337e11-a16a-4448-bd57-a60ac2065c7a", + "body": "{\"data_points\":[{\"val\":123,\"mid\":\"-8403556557442245906\",\"rid\":\"102\",\"cid\":\"mem.swap.readrate.HOST\",\"ts\":1741942492},{\"val\":234,\"mid\":\"-8403556557442245906\",\"rid\":\"102\",\"cid\":\"mem.swap.readrate.HOST\",\"ts\":1741942552},{\"val\":6543.2,\"mid\":\"-8403556557442245906\",\"rid\":\"102\",\"cid\":\"mem.swap.readrate.HOST\",\"ts\":1741942612}]}", + "latency": 0, + "statusCode": 200, + "label": "mem.swap.readrate.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "mem.swap.readrate.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "78891a5e-0a0e-445e-971a-4115156f9934", + "body": "{\"data_points\":[{\"val\":0.0,\"mid\":\"3029207848778654425\",\"rid\":\"102\",\"cid\":\"mem.swap.target.HOST\",\"ts\":1741942492},{\"val\":0.0,\"mid\":\"3029207848778654425\",\"rid\":\"102\",\"cid\":\"mem.swap.target.HOST\",\"ts\":1741942552},{\"val\":1073741824,\"mid\":\"3029207848778654425\",\"rid\":\"102\",\"cid\":\"mem.swap.target.HOST\",\"ts\":1741942612}]}", + "latency": 0, + "statusCode": 200, + "label": "mem.swap.target.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "mem.swap.target.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "0fce549f-c109-48d4-87ca-2d04f771a314", + "body": "{\"data_points\":[{\"val\":0.0,\"mid\":\"6998864802324600231\",\"rid\":\"102\",\"cid\":\"mem.swap.current.HOST\",\"ts\":1741942492},{\"val\":0.0,\"mid\":\"6998864802324600231\",\"rid\":\"102\",\"cid\":\"mem.swap.current.HOST\",\"ts\":1741942552},{\"val\":123456.7,\"mid\":\"6998864802324600231\",\"rid\":\"102\",\"cid\":\"mem.swap.current.HOST\",\"ts\":1741942612}]}", + "latency": 0, + "statusCode": 200, + "label": "mem.swap.current.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "mem.swap.current.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "512cd1e2-dfa8-492e-bdd3-9f44251fbd8b", + "body": "{\"data_points\":[{\"val\":0.0,\"mid\":\"8755718609385549431\",\"rid\":\"102\",\"cid\":\"net.throughput.contention.HOST\",\"ts\":1742203312},{\"val\":0.0,\"mid\":\"8755718609385549431\",\"rid\":\"102\",\"cid\":\"net.throughput.contention.HOST\",\"ts\":1742203372},{\"val\":0.0,\"mid\":\"8755718609385549431\",\"rid\":\"102\",\"cid\":\"net.throughput.contention.HOST\",\"ts\":1742203432}]}\n", + "latency": 0, + "statusCode": 200, + "label": "net.throughput.contention.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "net.throughput.contention.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "7ebc4844-5c76-4dfb-927b-357474424de3", + "body": "{\"data_points\":[{\"val\":0.19,\"mid\":\"-1677800232533818921\",\"rid\":\"102\",\"cid\":\"disk.throughput.contention.HOST\",\"ts\":1742207632},{\"val\":0.18,\"mid\":\"-1677800232533818921\",\"rid\":\"102\",\"cid\":\"disk.throughput.contention.HOST\",\"ts\":1742207692},{\"val\":0.19,\"mid\":\"-1677800232533818921\",\"rid\":\"102\",\"cid\":\"disk.throughput.contention.HOST\",\"ts\":1742207752}]}", + "latency": 0, + "statusCode": 200, + "label": "disk.throughput.contention.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "disk.throughput.contention.HOST", + "invert": false, + "operator": "equals" + }, + { + "target": "request_number", + "modifier": "", + "value": "1", + "invert": true, + "operator": "equals" + }, + { + "target": "request_number", + "modifier": "", + "value": "2", + "invert": true, + "operator": "equals" + } + ], + "rulesOperator": "AND", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "22c4ca77-fd52-4fd5-9f3e-a4c8645a21a9", + "body": "{\"data_points\":[{\"val\":134510.7,\"mid\":\"8548718581371976960\",\"rid\":\"102\",\"cid\":\"disk.throughput.usage.HOST\",\"ts\":1742207632},{\"val\":131375.23,\"mid\":\"8548718581371976960\",\"rid\":\"102\",\"cid\":\"disk.throughput.usage.HOST\",\"ts\":1742207692},{\"val\":128898.53,\"mid\":\"8548718581371976960\",\"rid\":\"102\",\"cid\":\"disk.throughput.usage.HOST\",\"ts\":1742207752}]}", + "latency": 0, + "statusCode": 200, + "label": "disk.throughput.usage.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "disk.throughput.usage.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "96281380-feb2-44ab-a6b4-9a339248c0bc", + "body": "{\"data_points\":[{\"val\":976562.5,\"mid\":\"190597475016015903\",\"rid\":\"102\",\"cid\":\"net.throughput.usable.HOST\",\"ts\":1742203312},{\"val\":976562.5,\"mid\":\"190597475016015903\",\"rid\":\"102\",\"cid\":\"net.throughput.usable.HOST\",\"ts\":1742203372},{\"val\":976562.5,\"mid\":\"190597475016015903\",\"rid\":\"102\",\"cid\":\"net.throughput.usable.HOST\",\"ts\":1742203432}]}\n\n", + "latency": 0, + "statusCode": 200, + "label": "net.throughput.usable.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "net.throughput.usable.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "02f4462c-2753-4dc8-8cdf-0b639bdc2859", + "body": "{\"data_points\":[{\"val\":184.98,\"mid\":\"-1497422761978542845\",\"rid\":\"102\",\"cid\":\"net.throughput.usage.HOST\",\"ts\":1742203312},{\"val\":288.67,\"mid\":\"-1497422761978542845\",\"rid\":\"102\",\"cid\":\"net.throughput.usage.HOST\",\"ts\":1742203372},{\"val\":184.96,\"mid\":\"-1497422761978542845\",\"rid\":\"102\",\"cid\":\"net.throughput.usage.HOST\",\"ts\":1742203432}]}", + "latency": 0, + "statusCode": 200, + "label": "net.throughput.usage.HOST", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "cid", + "value": "net.throughput.usage.HOST", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] } ], "responseMode": null, diff --git a/tests/cloud/aws/cloudtrail/checktrailstatus.robot b/tests/cloud/aws/cloudtrail/checktrailstatus.robot index 4c785abf2..5f54aef37 100644 --- a/tests/cloud/aws/cloudtrail/checktrailstatus.robot +++ b/tests/cloud/aws/cloudtrail/checktrailstatus.robot @@ -15,7 +15,7 @@ ${CMD} ${CENTREON_PLUGINS} --plugin=cloud::aws::cloudtr *** Test Cases *** -AWS CloudTrail check trail status +AWS CloudTrail check trail status ${tc} [Documentation] Check AWS CloudTrail trail status [Tags] cloud aws cloudtrail diff --git a/tests/cloud/aws/cloudtrail/countevents.robot b/tests/cloud/aws/cloudtrail/countevents.robot index e47a2ddc1..a14ef3e9b 100644 --- a/tests/cloud/aws/cloudtrail/countevents.robot +++ b/tests/cloud/aws/cloudtrail/countevents.robot @@ -15,7 +15,7 @@ ${CMD} ${CENTREON_PLUGINS} --plugin=cloud::aws::cloudtr *** Test Cases *** -AWS CloudTrail count events +AWS CloudTrail count events ${tc} [Documentation] Check AWS CloudTrail count events [Tags] cloud aws cloudtrail diff --git a/tests/hardware/ups/apc/snmp/battery-status.robot b/tests/hardware/ups/apc/snmp/battery-status.robot new file mode 100644 index 000000000..d913ad78a --- /dev/null +++ b/tests/hardware/ups/apc/snmp/battery-status.robot @@ -0,0 +1,57 @@ +*** Settings *** +Documentation Check battery status + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} + ... --plugin=hardware::ups::apc::snmp::plugin + ... --mode=battery-status + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-timeout=1 + + +*** Test Cases *** +battery status ${tc} + [Tags] hardware ups apc + ${command} Catenate + ... ${CMD} + ... --snmp-community=hardware/ups/apc/snmp/ups-apc-battery-ok + ... ${extra_options} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_regexp} + + Examples: tc extra_options expected_regexp -- + ... 1 ${EMPTY} ^OK: battery status is 'batteryNormal' \\\\[battery needs replace: no\\\\] \\\\[last replace date: 10-05-2022\\\\], remaining capacity: 100 %, remaining time: 665.00 minutes, time on battery: 205761.00 minutes, voltage: 110 V, temperature: 23 C - All battery packs are ok \\\\| 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=205761.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; + ... 2 --replace-lasttime-format='%d-%m-%Y' ^OK: battery status is 'batteryNormal' \\\\[battery needs replace: no\\\\] \\\\[last replace date: 10-05-2022\\\\], remaining capacity: 100 %, remaining time: 665.00 minutes, time on battery: 205761.00 minutes, voltage: 110 V, temperature: 23 C - All battery packs are ok \\\\| 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=205761.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;; + ... 3 --replace-lasttime-format='%d-%m-%Y' --warning-replace-lasttime=2 ^WARNING: replace last time: (\\\\d+y )?(\\\\d+M )?(\\\\d+w )?(\\\\d+d )?(\\\\d+h )?(\\\\d+m )?(\\\\d+s )?\\\\| 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=205761.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;0:2;;;$ + ... 4 --replace-lasttime-format='%d-%m-%Y' --critical-replace-lasttime=2 ^CRITICAL: replace last time: (\\\\d+y )?(\\\\d+M )?(\\\\d+w )?(\\\\d+d )?(\\\\d+h )?(\\\\d+m )?(\\\\d+s )?\\\\| 'battery.charge.remaining.percent'=100%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=205761.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;0:2;;$ + +*** Test Cases *** +battery low status ${tc} + [Tags] hardware ups apc + ${command} Catenate + ... ${CMD} + ... --snmp-community=hardware/ups/apc/snmp/ups-apc-battery-low + ... --warning-status='${warning_status}' + ... --critical-status='${critical_status}' + ... --critical-battery-pack-status='${critical_battery_pack_status}' + ... --critical-cartridge-status='${critical_cartridge_status}' + ... ${extra_options} + + Ctn Run Command And Check Result As Regexp ${command} ${expected_regexp} + + Examples: tc warning_status critical_status critical_battery_pack_status critical_cartridge_status extra_options expected_regexp -- + ... 1 \\\%{status} =~ /batteryLow/i \\\%{replace} =~ /yes/i \\\%{status} ne "OK" \\\%{status} ne "OK" ${EMPTY} ^CRITICAL: battery status is 'batteryLow' \\\\[battery needs replace: yes\\\\] \\\\[last replace date: 10/05/2022\\\\] - battery pack '1' status is 'needsReplacement' - cartridge '1' status is 'needsReplacement' - cartridge '2' status is 'needsReplacement' - battery pack '2' status is 'needsReplacement' \\\\| 'battery.charge.remaining.percent'=75%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=390946.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;;$ + ... 2 \\\%{status} =~ /batteryLow/i ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} ^WARNING: battery status is 'batteryLow' \\\\[battery needs replace: yes\\\\] \\\\[last replace date: 10/05/2022\\\\] \\\\| 'battery.charge.remaining.percent'=75%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=390946.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;;$ + ... 3 ${EMPTY} \\\%{replace} =~ /yes/i ${EMPTY} ${EMPTY} ${EMPTY} ^CRITICAL: battery status is 'batteryLow' \\\\[battery needs replace: yes\\\\] \\\\[last replace date: 10/05/2022\\\\] \\\\| 'battery.charge.remaining.percent'=75%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=390946.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;;$ + ... 4 ${EMPTY} ${EMPTY} \\\%{status} ne "OK" ${EMPTY} ${EMPTY} ^CRITICAL: battery pack '1' status is 'needsReplacement' - battery pack '2' status is 'needsReplacement' \\\\| 'battery.charge.remaining.percent'=75%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=390946.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;;$ + ... 5 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} --warning-battery-pack-status='\\\%{status} ne "OK"' ^WARNING: battery pack '1' status is 'needsReplacement' - battery pack '2' status is 'needsReplacement' \\\\| 'battery.charge.remaining.percent'=75%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=390946.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;;$ + ... 6 ${EMPTY} ${EMPTY} ${EMPTY} \\\%{status} ne "OK" ${EMPTY} ^CRITICAL: battery pack '1' cartridge '1' status is 'needsReplacement' - cartridge '2' status is 'needsReplacement' \\\\| 'battery.charge.remaining.percent'=75%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=390946.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;;$ + ... 7 ${EMPTY} ${EMPTY} ${EMPTY} ${EMPTY} --warning-cartridge-status='\\\%{status} ne "OK"' ^WARNING: battery pack '1' cartridge '1' status is 'needsReplacement' - cartridge '2' status is 'needsReplacement' \\\\| 'battery.charge.remaining.percent'=75%;;;0;100 'battery.charge.remaining.minutes'=665.00m;;;0; 'battery.timeon.minutes'=390946.00m;;;0; 'battery.voltage.volt'=110V;;;; 'battery.temperature.celsius'=23C;;;; 'battery.replace.lasttime.seconds'=\\\\d*s;;;;$ diff --git a/tests/hardware/ups/apc/snmp/ups-apc-battery-low.snmpwalk b/tests/hardware/ups/apc/snmp/ups-apc-battery-low.snmpwalk new file mode 100644 index 000000000..832769a4c --- /dev/null +++ b/tests/hardware/ups/apc/snmp/ups-apc-battery-low.snmpwalk @@ -0,0 +1,95 @@ +.1.3.6.1.4.1.318.1.1.1.2.1.1.0 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.1.2.1.2.0 = 2345678901 +.1.3.6.1.4.1.318.1.1.1.2.1.3.0 = STRING: "10/05/2022" +.1.3.6.1.4.1.318.1.1.1.2.2.1.0 = Gauge32: 75 +.1.3.6.1.4.1.318.1.1.1.2.2.2.0 = Gauge32: 23 +.1.3.6.1.4.1.318.1.1.1.2.2.3.0 = 3992500 +.1.3.6.1.4.1.318.1.1.1.2.2.4.0 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.1.2.2.5.0 = INTEGER: 4 +.1.3.6.1.4.1.318.1.1.1.2.2.8.0 = INTEGER: 110 +.1.3.6.1.4.1.318.1.1.1.2.2.19.0 = STRING: Anonymized 198 +.1.3.6.1.4.1.318.1.1.1.2.2.20.0 = STRING: Anonymized 057 +.1.3.6.1.4.1.318.1.1.1.2.2.21.0 = STRING: Anonymized 150 +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.1.1.1 = STRING: "0010000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.1.1.2 = STRING: "0010000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.2.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.2.1.2 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.3.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.3.1.2 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.4.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.4.1.2 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.5.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.5.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.6.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.6.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.7.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.7.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.8.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.8.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.9.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.9.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.10.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.10.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.11.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.11.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.1.1 = STRING: "0010000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.2.1 = STRING: "0010000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.3.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.4.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.5.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.6.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.7.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.8.1 = "" +.1.3.6.1.4.1.318.1.1.1.3.2.1.0 = Gauge32: 234 +.1.3.6.1.4.1.318.1.1.1.3.2.4.0 = Gauge32: 50 +.1.3.6.1.4.1.318.1.1.1.3.2.5.0 = INTEGER: 9 +.1.3.6.1.4.1.318.1.1.1.3.3.1.0 = Gauge32: 2341 +.1.3.6.1.4.1.318.1.1.1.3.3.4.0 = Gauge32: 500 +.1.3.6.1.4.1.318.1.1.1.4.1.1.0 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.1.4.2.1.0 = Gauge32: 220 +.1.3.6.1.4.1.318.1.1.1.4.2.2.0 = Gauge32: 50 +.1.3.6.1.4.1.318.1.1.1.4.2.3.0 = Gauge32: 10 +.1.3.6.1.4.1.318.1.1.1.4.2.4.0 = Gauge32: 1 +.1.3.6.1.4.1.318.1.1.1.4.3.1.0 = Gauge32: 2200 +.1.3.6.1.4.1.318.1.1.1.4.3.2.0 = Gauge32: 500 +.1.3.6.1.4.1.318.1.1.1.4.3.3.0 = Gauge32: 97 +.1.3.6.1.4.1.318.1.1.1.4.3.4.0 = Gauge32: 13 +.1.3.6.1.4.1.318.1.1.1.5.2.2.0 = INTEGER: 245 +.1.3.6.1.4.1.318.1.1.1.5.2.3.0 = INTEGER: 198 +.1.3.6.1.4.1.318.1.1.1.5.2.20.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.21.0 = INTEGER: 0 +.1.3.6.1.4.1.318.1.1.1.5.2.22.0 = INTEGER: -1 +.1.3.6.1.4.1.318.1.1.1.5.2.23.0 = INTEGER: -1 +.1.3.6.1.4.1.318.1.1.1.5.2.24.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.26.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.27.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.28.0 = INTEGER: 0 +.1.3.6.1.4.1.318.1.1.1.5.2.30.0 = 15000 +.1.3.6.1.4.1.318.1.1.1.5.2.31.0 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.2.1 = STRING: Anonymized 133 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.3.1 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1 = INTEGER: 18 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.5.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.6.1 = INTEGER: 37 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.7.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.8.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.9.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.10.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.11.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.12.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.13.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.14.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.15.1 = STRING: Anonymized 205 +.1.3.6.1.4.1.318.1.1.25.1.2.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.25.1.2.1.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.25.1.2.1.3.1.1 = STRING: Anonymized 192 +.1.3.6.1.4.1.318.1.1.25.1.2.1.4.1.1 = STRING: Anonymized 169 +.1.3.6.1.4.1.318.1.1.25.1.2.1.5.1.1 = INTEGER: 64 +.1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 = INTEGER: 18 +.1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 = INTEGER: 37 +.1.3.6.1.4.1.318.1.1.25.1.2.1.8.1.1 = INTEGER: 0 +.1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.25.1.2.1.10.1.1 = INTEGER: 2 +.1.3.6.1.4.1.318.2.1.6.1.0 = STRING: Anonymized 210 +.1.3.6.1.4.1.318.2.1.6.2.0 = STRING: Anonymized 141 \ No newline at end of file diff --git a/tests/hardware/ups/apc/snmp/ups-apc-battery-ok.snmpwalk b/tests/hardware/ups/apc/snmp/ups-apc-battery-ok.snmpwalk new file mode 100644 index 000000000..ef40c6f02 --- /dev/null +++ b/tests/hardware/ups/apc/snmp/ups-apc-battery-ok.snmpwalk @@ -0,0 +1,95 @@ +.1.3.6.1.4.1.318.1.1.1.2.1.1.0 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.1.2.1.2.0 = 1234567890 +.1.3.6.1.4.1.318.1.1.1.2.1.3.0 = STRING: "10-05-2022" +.1.3.6.1.4.1.318.1.1.1.2.2.1.0 = Gauge32: 100 +.1.3.6.1.4.1.318.1.1.1.2.2.2.0 = Gauge32: 23 +.1.3.6.1.4.1.318.1.1.1.2.2.3.0 = 3992500 +.1.3.6.1.4.1.318.1.1.1.2.2.4.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.2.2.5.0 = INTEGER: 4 +.1.3.6.1.4.1.318.1.1.1.2.2.8.0 = INTEGER: 110 +.1.3.6.1.4.1.318.1.1.1.2.2.19.0 = STRING: Anonymized 198 +.1.3.6.1.4.1.318.1.1.1.2.2.20.0 = STRING: Anonymized 057 +.1.3.6.1.4.1.318.1.1.1.2.2.21.0 = STRING: Anonymized 150 +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.1.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.1.1.2 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.2.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.2.1.2 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.3.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.3.1.2 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.4.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.4.1.2 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.5.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.5.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.6.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.6.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.7.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.7.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.8.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.8.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.9.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.9.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.10.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.10.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.11.1.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.11.1.2 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.1.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.2.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.3.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.4.1 = STRING: "0000000000000000" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.5.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.6.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.7.1 = "" +.1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5.8.1 = "" +.1.3.6.1.4.1.318.1.1.1.3.2.1.0 = Gauge32: 234 +.1.3.6.1.4.1.318.1.1.1.3.2.4.0 = Gauge32: 50 +.1.3.6.1.4.1.318.1.1.1.3.2.5.0 = INTEGER: 9 +.1.3.6.1.4.1.318.1.1.1.3.3.1.0 = Gauge32: 2341 +.1.3.6.1.4.1.318.1.1.1.3.3.4.0 = Gauge32: 500 +.1.3.6.1.4.1.318.1.1.1.4.1.1.0 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.1.4.2.1.0 = Gauge32: 220 +.1.3.6.1.4.1.318.1.1.1.4.2.2.0 = Gauge32: 50 +.1.3.6.1.4.1.318.1.1.1.4.2.3.0 = Gauge32: 10 +.1.3.6.1.4.1.318.1.1.1.4.2.4.0 = Gauge32: 1 +.1.3.6.1.4.1.318.1.1.1.4.3.1.0 = Gauge32: 2200 +.1.3.6.1.4.1.318.1.1.1.4.3.2.0 = Gauge32: 500 +.1.3.6.1.4.1.318.1.1.1.4.3.3.0 = Gauge32: 97 +.1.3.6.1.4.1.318.1.1.1.4.3.4.0 = Gauge32: 13 +.1.3.6.1.4.1.318.1.1.1.5.2.2.0 = INTEGER: 245 +.1.3.6.1.4.1.318.1.1.1.5.2.3.0 = INTEGER: 198 +.1.3.6.1.4.1.318.1.1.1.5.2.20.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.21.0 = INTEGER: 0 +.1.3.6.1.4.1.318.1.1.1.5.2.22.0 = INTEGER: -1 +.1.3.6.1.4.1.318.1.1.1.5.2.23.0 = INTEGER: -1 +.1.3.6.1.4.1.318.1.1.1.5.2.24.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.26.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.27.0 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.1.5.2.28.0 = INTEGER: 0 +.1.3.6.1.4.1.318.1.1.1.5.2.30.0 = 15000 +.1.3.6.1.4.1.318.1.1.1.5.2.31.0 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.2.1 = STRING: Anonymized 133 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.3.1 = INTEGER: 2 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1 = INTEGER: 18 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.5.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.6.1 = INTEGER: 37 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.7.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.8.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.9.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.10.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.11.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.12.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.13.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.14.1 = INTEGER: 3 +.1.3.6.1.4.1.318.1.1.10.2.3.2.1.15.1 = STRING: Anonymized 205 +.1.3.6.1.4.1.318.1.1.25.1.2.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.25.1.2.1.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.25.1.2.1.3.1.1 = STRING: Anonymized 192 +.1.3.6.1.4.1.318.1.1.25.1.2.1.4.1.1 = STRING: Anonymized 169 +.1.3.6.1.4.1.318.1.1.25.1.2.1.5.1.1 = INTEGER: 64 +.1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 = INTEGER: 18 +.1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 = INTEGER: 37 +.1.3.6.1.4.1.318.1.1.25.1.2.1.8.1.1 = INTEGER: 0 +.1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 = INTEGER: 1 +.1.3.6.1.4.1.318.1.1.25.1.2.1.10.1.1 = INTEGER: 2 +.1.3.6.1.4.1.318.2.1.6.1.0 = STRING: Anonymized 210 +.1.3.6.1.4.1.318.2.1.6.2.0 = STRING: Anonymized 141 \ No newline at end of file diff --git a/tests/monitoring/iplabel/ekara/restapi/monitoring-iplabel-ekara.json b/tests/monitoring/iplabel/ekara/restapi/monitoring-iplabel-ekara.json index ee3c257c9..d515ab639 100644 --- a/tests/monitoring/iplabel/ekara/restapi/monitoring-iplabel-ekara.json +++ b/tests/monitoring/iplabel/ekara/restapi/monitoring-iplabel-ekara.json @@ -221,9 +221,50 @@ "value": "Bearer VeryLongTokenToAuthenticate", "invert": false, "operator": "equals" + }, + { + "target": "header", + "modifier": "Test", + "value": "2", + "invert": true, + "operator": "equals" } ], - "rulesOperator": "OR", + "rulesOperator": "AND", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "b33f660f-e7b5-45f7-92c9-72b2dacc71e4", + "body": "{\n \"kpis\": [\n {\n \"name\": \"Availability\",\n \"order\": 0,\n \"type\": \"User\",\n \"unit\": \"percent\",\n \"label\": \"availability\",\n \"value\": 64.48\n },\n {\n \"name\": \"Total time for all steps\",\n \"order\": 100,\n \"type\": \"User\",\n \"unit\": \"ms\",\n \"label\": \"time_total_allsteps\",\n \"value\": 4031\n }\n ],\n \"results\": [\n {\n \"planningTime\": \"2025-03-10T14:45:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 9741,\n \"count\": 2,\n \"value\": 4871\n },\n {\n \"planningTime\": \"2025-03-10T14:45:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 48,\n \"count\": 1,\n \"value\": 48\n },\n {\n \"planningTime\": \"2025-03-10T14:45:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 23,\n \"count\": 1,\n \"value\": 23\n },\n {\n \"planningTime\": \"2025-03-10T15:00:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 7096,\n \"count\": 2,\n \"value\": 3548\n },\n {\n \"planningTime\": \"2025-03-10T15:00:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 69,\n \"count\": 1,\n \"value\": 69\n },\n {\n \"planningTime\": \"2025-03-10T15:00:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 29,\n \"count\": 1,\n \"value\": 29\n },\n {\n \"planningTime\": \"2025-03-10T15:15:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 6420,\n \"count\": 2,\n \"value\": 3210\n },\n {\n \"planningTime\": \"2025-03-10T15:15:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 51,\n \"count\": 1,\n \"value\": 51\n },\n {\n \"planningTime\": \"2025-03-10T15:15:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 750,\n \"count\": 1,\n \"value\": 750\n },\n {\n \"planningTime\": \"2025-03-10T15:30:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 5986,\n \"count\": 2,\n \"value\": 2993\n },\n {\n \"planningTime\": \"2025-03-10T15:30:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 2499,\n \"count\": 2,\n \"value\": 1250\n },\n {\n \"planningTime\": \"2025-03-10T15:30:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 91,\n \"count\": 2,\n \"value\": 46\n },\n {\n \"planningTime\": \"2025-03-10T15:45:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 6275,\n \"count\": 2,\n \"value\": 3138\n },\n {\n \"planningTime\": \"2025-03-10T15:45:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 263,\n \"count\": 2,\n \"value\": 132\n },\n {\n \"planningTime\": \"2025-03-10T15:45:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 197,\n \"count\": 2,\n \"value\": 99\n },\n {\n \"planningTime\": \"2025-03-10T16:00:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 7029,\n \"count\": 2,\n \"value\": 3515\n },\n {\n \"planningTime\": \"2025-03-10T16:00:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 221,\n \"count\": 1,\n \"value\": 221\n },\n {\n \"planningTime\": \"2025-03-10T16:00:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 38,\n \"count\": 1,\n \"value\": 38\n },\n {\n \"planningTime\": \"2025-03-10T16:15:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 7397,\n \"count\": 2,\n \"value\": 3699\n },\n {\n \"planningTime\": \"2025-03-10T16:15:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 1611,\n \"count\": 1,\n \"value\": 1611\n },\n {\n \"planningTime\": \"2025-03-10T16:15:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 1583,\n \"count\": 1,\n \"value\": 1583\n },\n {\n \"planningTime\": \"2025-03-10T16:30:00Z\",\n \"stepId\": \"0\",\n \"metric\": \"time_step\",\n \"duration\": 7724,\n \"count\": 2,\n \"value\": 3862\n },\n {\n \"planningTime\": \"2025-03-10T16:30:00Z\",\n \"stepId\": \"1\",\n \"metric\": \"time_step\",\n \"duration\": 215,\n \"count\": 1,\n \"value\": 215\n },\n {\n \"planningTime\": \"2025-03-10T16:30:00Z\",\n \"stepId\": \"2\",\n \"metric\": \"time_step\",\n \"duration\": 68,\n \"count\": 1,\n \"value\": 68\n }\n ],\n \"siteIds\": [\n {\n \"id\": \"76300f93-1714-4235-aa20-105d0815b4e0\",\n \"name\": \"Paris (Iliad)\"\n },\n {\n \"id\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"name\": \"Paris (SFR)\"\n }\n ],\n \"metrics\": [\n {\n \"mtr_id\": \"eco_index\",\n \"mtr_name\": \"Eco Efficiency\",\n \"mtr_order\": 300,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \" \",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": false,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"nb_dom_elements\",\n \"mtr_name\": \"Number of DOM Elements\",\n \"mtr_order\": -1,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \" \",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": false,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"rum_speedindex\",\n \"mtr_name\": \"RUM Speed Index\",\n \"mtr_order\": 40,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": 10,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"start_render\",\n \"mtr_name\": \"Start render time\",\n \"mtr_order\": 10,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_appcache\",\n \"mtr_name\": \"Application cache\",\n \"mtr_order\": 220,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_connect\",\n \"mtr_name\": \"Connection time\",\n \"mtr_order\": 240,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_interaction\",\n \"mtr_name\": \"Time to interact\",\n \"mtr_order\": 20,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": 20,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_multi_step\",\n \"mtr_name\": \"Cumulative Time Step\",\n \"mtr_order\": 100,\n \"mtr_type\": \"Cumulative\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": false,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_namelookup\",\n \"mtr_name\": \"Lookup time\",\n \"mtr_order\": 230,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_pageload\",\n \"mtr_name\": \"Page load time\",\n \"mtr_order\": 280,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_received\",\n \"mtr_name\": \"Response time\",\n \"mtr_order\": 270,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_redirect\",\n \"mtr_name\": \"Redirection time\",\n \"mtr_order\": 210,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_request\",\n \"mtr_name\": \"First byte time\",\n \"mtr_order\": 260,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_security_connect\",\n \"mtr_name\": \"TLS time\",\n \"mtr_order\": 250,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_step\",\n \"mtr_name\": \"Time Step\",\n \"mtr_order\": 100,\n \"mtr_type\": \"Technical\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_total_allsteps\",\n \"mtr_name\": \"Total time for all steps\",\n \"mtr_order\": 100,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": 30,\n \"filterEnabled\": false,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_wv_fcp\",\n \"mtr_name\": \"First Contentful Paint\",\n \"mtr_order\": -1,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_wv_fid\",\n \"mtr_name\": \"First Input Delay\",\n \"mtr_order\": -1,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_wv_inp\",\n \"mtr_name\": \"Interaction to Next Paint\",\n \"mtr_order\": -1,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"time_wv_lcp\",\n \"mtr_name\": \"Largest Contentful Paint\",\n \"mtr_order\": -1,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \"ms\",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": true,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n },\n {\n \"mtr_id\": \"wv_cls\",\n \"mtr_name\": \"Cumulative Layout Shift\",\n \"mtr_order\": -1,\n \"mtr_type\": \"User\",\n \"mtr_scn_type\": \"WEB\",\n \"mtr_unit\": \" \",\n \"mtr_preferred_metric\": -1,\n \"filterEnabled\": false,\n \"filterDisabledOnMultiStep\": false,\n \"filterDisabledOnAllStep\": false,\n \"filterDisabledOnPartialStep\": false\n }\n ],\n \"retries\": [],\n \"replays\": [],\n \"updates\": [],\n \"runningReplayId\": null,\n \"steps\": [\n {\n \"name\": \"Home\",\n \"index\": 1\n },\n {\n \"name\": \"Dashboard v2\",\n \"index\": 2\n },\n {\n \"name\": \"Dashboard v3\",\n \"index\": 3\n }\n ],\n \"infos\": {\n \"active_filter\": [\n {\n \"type\": \"measurementIds\",\n \"items\": [\n \"time_step\",\n \"time_multi_step\",\n \"time_total_allsteps\"\n ]\n }\n ],\n \"plugin_id\": \"WEB\",\n \"plugin_name\": \"Web\",\n \"info\": {\n \"hasStep\": true,\n \"showKPI\": true,\n \"hasWaterfall\": true,\n \"hasEcoEfficiency\": true,\n \"showThirdPartyContent\": true\n },\n \"scenarioName\": \"AKILA - (Web)\",\n \"default_plugin\": false\n },\n \"timelineDetails\": [\n {\n \"status\": 1,\n \"startTime\": \"2025-03-10T14:42:04Z\",\n \"endTime\": \"2025-03-10T14:45:08Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"76300f93-1714-4235-aa20-105d0815b4e0\",\n \"status\": 1,\n \"execTime\": \"2025-03-10T14:35:36Z\",\n \"siteName\": \"Paris (Iliad)\",\n \"executionId\": \"2d592f6b-5c6c-49e0-b0a6-7cb05d5ddc60.14\",\n \"planningTime\": \"2025-03-10T14:30:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 2,\n \"startTime\": \"2025-03-10T14:45:08Z\",\n \"endTime\": \"2025-03-10T14:48:45Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"76300f93-1714-4235-aa20-105d0815b4e0\",\n \"status\": 2,\n \"execTime\": \"2025-03-10T14:45:08Z\",\n \"siteName\": \"Paris (Iliad)\",\n \"executionId\": \"671bfa25-9a96-4ff5-a3e4-cd2846608c88.15\",\n \"planningTime\": \"2025-03-10T14:45:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 1,\n \"startTime\": \"2025-03-10T14:48:45Z\",\n \"endTime\": \"2025-03-10T15:02:06Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"status\": 1,\n \"execTime\": \"2025-03-10T14:48:45Z\",\n \"siteName\": \"Paris (SFR)\",\n \"executionId\": \"5b5172ba-b850-40f2-a1b7-82d194231580.15\",\n \"planningTime\": \"2025-03-10T14:45:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 2,\n \"startTime\": \"2025-03-10T15:02:06Z\",\n \"endTime\": \"2025-03-10T15:07:18Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"status\": 2,\n \"execTime\": \"2025-03-10T15:02:06Z\",\n \"siteName\": \"Paris (SFR)\",\n \"executionId\": \"dfff8856-51e7-4c31-9f41-263b7af85ac3.16\",\n \"planningTime\": \"2025-03-10T15:00:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 1,\n \"startTime\": \"2025-03-10T15:07:18Z\",\n \"endTime\": \"2025-03-10T15:17:33Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"76300f93-1714-4235-aa20-105d0815b4e0\",\n \"status\": 1,\n \"execTime\": \"2025-03-10T15:07:18Z\",\n \"siteName\": \"Paris (Iliad)\",\n \"executionId\": \"404ded6b-ef1f-4085-800b-0b9e64730c24.16\",\n \"planningTime\": \"2025-03-10T15:00:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 2,\n \"startTime\": \"2025-03-10T15:17:33Z\",\n \"endTime\": \"2025-03-10T15:34:58Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"status\": 2,\n \"execTime\": \"2025-03-10T15:17:33Z\",\n \"siteName\": \"Paris (SFR)\",\n \"executionId\": \"811c4c8d-51ce-4092-aa4d-d0bf218f477f.17\",\n \"planningTime\": \"2025-03-10T15:15:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 1,\n \"startTime\": \"2025-03-10T15:34:58Z\",\n \"endTime\": \"2025-03-10T16:08:21Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"status\": 1,\n \"execTime\": \"2025-03-10T15:34:58Z\",\n \"siteName\": \"Paris (SFR)\",\n \"executionId\": \"a060532c-dc28-4ece-a06f-a8e2bdc8ad8c.18\",\n \"planningTime\": \"2025-03-10T15:30:00Z\",\n \"thresholdExceeded\": \"PT5.492S\"\n }\n ]\n },\n {\n \"status\": 2,\n \"startTime\": \"2025-03-10T16:08:21Z\",\n \"endTime\": \"2025-03-10T16:15:56Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"status\": 2,\n \"execTime\": \"2025-03-10T16:08:21Z\",\n \"siteName\": \"Paris (SFR)\",\n \"executionId\": \"da588130-ed28-4528-89b6-aaeaaae19aec.20\",\n \"planningTime\": \"2025-03-10T16:00:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 1,\n \"startTime\": \"2025-03-10T16:15:56Z\",\n \"endTime\": \"2025-03-10T16:21:40Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"status\": 1,\n \"execTime\": \"2025-03-10T16:15:56Z\",\n \"siteName\": \"Paris (SFR)\",\n \"executionId\": \"c77b8248-45aa-4f51-bfbc-a1dd76baa08f.21\",\n \"planningTime\": \"2025-03-10T16:15:00Z\",\n \"thresholdExceeded\": \"PT7.468S\"\n }\n ]\n },\n {\n \"status\": 2,\n \"startTime\": \"2025-03-10T16:21:40Z\",\n \"endTime\": \"2025-03-10T16:32:15Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"76300f93-1714-4235-aa20-105d0815b4e0\",\n \"status\": 2,\n \"execTime\": \"2025-03-10T16:21:40Z\",\n \"siteName\": \"Paris (Iliad)\",\n \"executionId\": \"cf72d69c-017f-43eb-8678-87ffacf9235b.21\",\n \"planningTime\": \"2025-03-10T16:15:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n },\n {\n \"status\": 1,\n \"startTime\": \"2025-03-10T16:32:15Z\",\n \"endTime\": \"2025-03-10T16:47:04Z\",\n \"execs\": [\n {\n \"period\": \"PT15M\",\n \"siteId\": \"d1c377bf-745f-4d63-b25f-904b16582649\",\n \"status\": 1,\n \"execTime\": \"2025-03-10T16:32:15Z\",\n \"siteName\": \"Paris (SFR)\",\n \"executionId\": \"ecdd45c2-9919-49ce-8231-d9c0bf6880e6.22\",\n \"planningTime\": \"2025-03-10T16:30:00Z\",\n \"thresholdExceeded\": null\n }\n ]\n }\n ],\n \"aggregate\": \"rowdata\",\n \"emptyResults\": [\n \"2025-03-10T16:45:00Z\"\n ],\n \"retentionDateExceeded\": false\n}\n", + "latency": 0, + "statusCode": 200, + "label": "With more steps, will display if \"Test: 2\" header provided", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "header", + "modifier": "authorization", + "value": "Bearer VeryLongTokenToAuthenticate", + "invert": false, + "operator": "equals" + }, + { + "target": "header", + "modifier": "Test", + "value": "2", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "AND", "disableTemplating": false, "fallbackTo404": false, "default": false, diff --git a/tests/monitoring/iplabel/ekara/restapi/scenarios.robot b/tests/monitoring/iplabel/ekara/restapi/scenarios.robot index e8ec53919..6031d7712 100644 --- a/tests/monitoring/iplabel/ekara/restapi/scenarios.robot +++ b/tests/monitoring/iplabel/ekara/restapi/scenarios.robot @@ -30,9 +30,9 @@ scenario ${tc} Ctn Run Command And Check Result As Strings ${command} ${expected_result} - Examples: tc extra_options expected_result -- + Examples: tc extra_options expected_result -- ... 1 --filter-name='Centreon Demo Navigation|Centreon Demo ping NA' --output-ignore-perfdata CRITICAL: Scenario 'Centreon Demo Navigation': status: Failure (2) WARNING: Scenario 'Centreon Demo ping NA': status: Degraded (8) - ... 2 --filter-name='AKILA - Business App' OK: Scenario 'AKILA - Business App': status: Success (1), availability: 100%, time total all steps: 4280ms - All steps are ok | 'AKILA - Business App#scenario.availability.percentage'=100%;;;0;100 'AKILA - Business App#scenario.time.allsteps.total.milliseconds'=4280ms;;;0; 'AKILA - Business App~Dashboard 2#scenario.step.time.milliseconds'=898ms;;;0; 'AKILA - Business App~Dashboard 3#scenario.step.time.milliseconds'=848ms;;;0; 'AKILA - Business App~Run Chrome#scenario.step.time.milliseconds'=2534ms;;;0; + ... 2 --filter-name='AKILA - Business App' OK: Scenario 'AKILA - Business App': status: Success (1), availability: 100%, time total all steps: 4280ms - All steps are ok | 'AKILA - Business App#scenario.availability.percentage'=100%;;;0;100 'AKILA - Business App#scenario.time.allsteps.total.milliseconds'=4280ms;;;0; 'AKILA - Business App~Run Chrome#scenario.step.time.milliseconds'=2534ms;;;0; 'AKILA - Business App~Dashboard 2#scenario.step.time.milliseconds'=898ms;;;0; 'AKILA - Business App~Dashboard 3#scenario.step.time.milliseconds'=848ms;;;0; ... 3 --filter-name='wrong currentstatus.*' UNKNOWN: Scenario 'wrong currentstatus, no perfdata': status: Unknown (14) - No execution, please try again with a bigger timeframe ... 4 --filter-name='not a scenario name' UNKNOWN: No scenario found ... 5 --filter-id='127a149b.*' --warning-time-total='30' --output-ignore-perfdata WARNING: Scenario 'AKILA - (Browser Page Load)': Step: Default, last exec: 30-12-2024 10:30:00 UTC, time total: 1097 ms @@ -50,3 +50,5 @@ scenario ${tc} ... 14 --filter-name='unknown Status 4' --output-ignore-perfdata UNKNOWN: Scenario 'unknown Status 4': status: No execution (4) ... 15 --filter-name='unknown Status 5' --output-ignore-perfdata UNKNOWN: Scenario 'unknown Status 5': status: No execution (5) ... 16 --filter-name='unknown Status 6' --output-ignore-perfdata UNKNOWN: Scenario 'unknown Status 6': status: Stopped (6) + ... 17 --filter-name='AKILA - .Web.' --curl-opt='CURLOPT_HTTPHEADER => [test: 2]' --curl-opt='CURLOPT_HTTPHEADER => [ Authorization: Bearer VeryLongTokenToAuthenticate]' CRITICAL: Scenario 'AKILA - (Web)': status: Failure (2) | 'AKILA - (Web)#scenario.availability.percentage'=64.48%;;;0;100 'AKILA - (Web)#scenario.time.allsteps.total.milliseconds'=4031ms;;;0; 'AKILA - (Web)~Home#scenario.step.time.milliseconds'=3862ms;;;0; 'AKILA - (Web)~Dashboard v2#scenario.step.time.milliseconds'=215ms;;;0; 'AKILA - (Web)~Dashboard v3#scenario.step.time.milliseconds'=68ms;;;0; + diff --git a/tests/network/cisco/standard/snmp/arp.robot b/tests/network/cisco/standard/snmp/arp.robot new file mode 100644 index 000000000..f17aebfa2 --- /dev/null +++ b/tests/network/cisco/standard/snmp/arp.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +arp ${tc} + [Tags] network arp snmp + ${command} Catenate + ... ${CMD} + ... --mode=arp + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-version=${SNMPVERSION} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --warning-total-entries=2 --critical-total-entries=0 CRITICAL: total entries 3 | 'arp.total.entries.count'=3;0:2;0:0;0; 'arp.duplicate.macaddr.count'=0;;;0; 'arp.duplicate.ipaddr.count'=0;;;0; + ... 2 --filter-macaddr=1 OK: total entries 3 - duplicate mac address 0 - duplicate ip address 0 | 'arp.total.entries.count'=3;;;0; 'arp.duplicate.macaddr.count'=0;;;0; 'arp.duplicate.ipaddr.count'=0;;;0; + ... 3 --filter-ipaddr=5 OK: total entries 0 - duplicate mac address 0 - duplicate ip address 0 | 'arp.total.entries.count'=0;;;0; 'arp.duplicate.macaddr.count'=0;;;0; 'arp.duplicate.ipaddr.count'=0;;;0; + ... 4 --warning-duplicate-macaddr=3:3 --critical-duplicate-macaddr=0:0 WARNING: duplicate mac address 0 | 'arp.total.entries.count'=3;;;0; 'arp.duplicate.macaddr.count'=0;3:3;0:0;0; 'arp.duplicate.ipaddr.count'=0;;;0; + ... 5 --warning-duplicate-ipaddr=3:0 --critical-duplicate-ipaddr=1:0 CRITICAL: duplicate ip address 0 | 'arp.total.entries.count'=3;;;0; 'arp.duplicate.macaddr.count'=0;;;0; 'arp.duplicate.ipaddr.count'=0;3:0;1:0;0; \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/cisco.snmpwalk b/tests/network/cisco/standard/snmp/cisco.snmpwalk new file mode 100644 index 000000000..0d3a9953a --- /dev/null +++ b/tests/network/cisco/standard/snmp/cisco.snmpwalk @@ -0,0 +1,4006 @@ +.1.3.6.1.2.1.1.1.0 = STRING: Anonymized 023Technical Support: http://www.cisco.com/techsupport +.1.3.6.1.2.1.1.3.0 = Timeticks: (170074009) 19 days, 16:25:40.09 +.1.3.6.1.2.1.2.2.1.2.1 = STRING: Anonymized 147 +.1.3.6.1.2.1.2.2.1.2.181 = STRING: Anonymized 242 +.1.3.6.1.2.1.2.2.1.2.5001 = STRING: Anonymized 160 +.1.3.6.1.2.1.2.2.1.2.5179 = STRING: Anonymized 042 +.1.3.6.1.2.1.2.2.1.2.5180 = STRING: Anonymized 132 +.1.3.6.1.2.1.2.2.1.2.5181 = STRING: Anonymized 205 +.1.3.6.1.2.1.2.2.1.2.5182 = STRING: Anonymized 226 +.1.3.6.1.2.1.2.2.1.2.5183 = STRING: Anonymized 138 +.1.3.6.1.2.1.2.2.1.2.5184 = STRING: Anonymized 111 +.1.3.6.1.2.1.2.2.1.2.5185 = STRING: Anonymized 252 +.1.3.6.1.2.1.2.2.1.2.5186 = STRING: Anonymized 218 +.1.3.6.1.2.1.2.2.1.2.5187 = STRING: Anonymized 165 +.1.3.6.1.2.1.2.2.1.2.10101 = STRING: Anonymized 221 +.1.3.6.1.2.1.2.2.1.2.10102 = STRING: Anonymized 101 +.1.3.6.1.2.1.2.2.1.2.10103 = STRING: Anonymized 045 +.1.3.6.1.2.1.2.2.1.2.10104 = STRING: Anonymized 063 +.1.3.6.1.2.1.2.2.1.2.10105 = STRING: Anonymized 201 +.1.3.6.1.2.1.2.2.1.2.10106 = STRING: Anonymized 069 +.1.3.6.1.2.1.2.2.1.2.10107 = STRING: Anonymized 240 +.1.3.6.1.2.1.2.2.1.2.10108 = STRING: Anonymized 159 +.1.3.6.1.2.1.2.2.1.2.10109 = STRING: Anonymized 001 +.1.3.6.1.2.1.2.2.1.2.10110 = STRING: Anonymized 140 +.1.3.6.1.2.1.2.2.1.2.10111 = STRING: Anonymized 178 +.1.3.6.1.2.1.2.2.1.2.10112 = STRING: Anonymized 069 +.1.3.6.1.2.1.2.2.1.2.10113 = STRING: Anonymized 164 +.1.3.6.1.2.1.2.2.1.2.10114 = STRING: Anonymized 129 +.1.3.6.1.2.1.2.2.1.2.10115 = STRING: Anonymized 136 +.1.3.6.1.2.1.2.2.1.2.10116 = STRING: Anonymized 167 +.1.3.6.1.2.1.2.2.1.2.10117 = STRING: Anonymized 209 +.1.3.6.1.2.1.2.2.1.2.10118 = STRING: Anonymized 127 +.1.3.6.1.2.1.2.2.1.2.10119 = STRING: Anonymized 081 +.1.3.6.1.2.1.2.2.1.2.10120 = STRING: Anonymized 233 +.1.3.6.1.2.1.2.2.1.2.10121 = STRING: Anonymized 060 +.1.3.6.1.2.1.2.2.1.2.10122 = STRING: Anonymized 073 +.1.3.6.1.2.1.2.2.1.2.10123 = STRING: Anonymized 113 +.1.3.6.1.2.1.2.2.1.2.10124 = STRING: Anonymized 084 +.1.3.6.1.2.1.2.2.1.2.10125 = STRING: Anonymized 176 +.1.3.6.1.2.1.2.2.1.2.10126 = STRING: Anonymized 237 +.1.3.6.1.2.1.2.2.1.2.10127 = STRING: Anonymized 020 +.1.3.6.1.2.1.2.2.1.2.10128 = STRING: Anonymized 124 +.1.3.6.1.2.1.2.2.1.2.10129 = STRING: Anonymized 216 +.1.3.6.1.2.1.2.2.1.2.10130 = STRING: Anonymized 002 +.1.3.6.1.2.1.2.2.1.2.10131 = STRING: Anonymized 147 +.1.3.6.1.2.1.2.2.1.2.10132 = STRING: Anonymized 053 +.1.3.6.1.2.1.2.2.1.2.10133 = STRING: Anonymized 245 +.1.3.6.1.2.1.2.2.1.2.10134 = STRING: Anonymized 202 +.1.3.6.1.2.1.2.2.1.2.10135 = STRING: Anonymized 053 +.1.3.6.1.2.1.2.2.1.2.10136 = STRING: Anonymized 110 +.1.3.6.1.2.1.2.2.1.2.10137 = STRING: Anonymized 161 +.1.3.6.1.2.1.2.2.1.2.10138 = STRING: Anonymized 084 +.1.3.6.1.2.1.2.2.1.2.10139 = STRING: Anonymized 156 +.1.3.6.1.2.1.2.2.1.2.10140 = STRING: Anonymized 031 +.1.3.6.1.2.1.2.2.1.2.10141 = STRING: Anonymized 103 +.1.3.6.1.2.1.2.2.1.2.10142 = STRING: Anonymized 222 +.1.3.6.1.2.1.2.2.1.2.10143 = STRING: Anonymized 094 +.1.3.6.1.2.1.2.2.1.2.10144 = STRING: Anonymized 115 +.1.3.6.1.2.1.2.2.1.2.10145 = STRING: Anonymized 119 +.1.3.6.1.2.1.2.2.1.2.10146 = STRING: Anonymized 080 +.1.3.6.1.2.1.2.2.1.2.10147 = STRING: Anonymized 126 +.1.3.6.1.2.1.2.2.1.2.10148 = STRING: Anonymized 156 +.1.3.6.1.2.1.2.2.1.2.10149 = STRING: Anonymized 146 +.1.3.6.1.2.1.2.2.1.2.10150 = STRING: Anonymized 011 +.1.3.6.1.2.1.2.2.1.2.10151 = STRING: Anonymized 213 +.1.3.6.1.2.1.2.2.1.2.10152 = STRING: Anonymized 229 +.1.3.6.1.2.1.2.2.1.2.10601 = STRING: Anonymized 032 +.1.3.6.1.2.1.2.2.1.2.10602 = STRING: Anonymized 221 +.1.3.6.1.2.1.2.2.1.2.10603 = STRING: Anonymized 062 +.1.3.6.1.2.1.2.2.1.2.10604 = STRING: Anonymized 130 +.1.3.6.1.2.1.2.2.1.2.10605 = STRING: Anonymized 030 +.1.3.6.1.2.1.2.2.1.2.10606 = STRING: Anonymized 010 +.1.3.6.1.2.1.2.2.1.2.10607 = STRING: Anonymized 031 +.1.3.6.1.2.1.2.2.1.2.10608 = STRING: Anonymized 248 +.1.3.6.1.2.1.2.2.1.2.10609 = STRING: Anonymized 001 +.1.3.6.1.2.1.2.2.1.2.10610 = STRING: Anonymized 207 +.1.3.6.1.2.1.2.2.1.2.10611 = STRING: Anonymized 107 +.1.3.6.1.2.1.2.2.1.2.10612 = STRING: Anonymized 205 +.1.3.6.1.2.1.2.2.1.2.10613 = STRING: Anonymized 221 +.1.3.6.1.2.1.2.2.1.2.10614 = STRING: Anonymized 045 +.1.3.6.1.2.1.2.2.1.2.10615 = STRING: Anonymized 229 +.1.3.6.1.2.1.2.2.1.2.10616 = STRING: Anonymized 250 +.1.3.6.1.2.1.2.2.1.2.10617 = STRING: Anonymized 197 +.1.3.6.1.2.1.2.2.1.2.10618 = STRING: Anonymized 002 +.1.3.6.1.2.1.2.2.1.2.10619 = STRING: Anonymized 052 +.1.3.6.1.2.1.2.2.1.2.10620 = STRING: Anonymized 104 +.1.3.6.1.2.1.2.2.1.2.10621 = STRING: Anonymized 254 +.1.3.6.1.2.1.2.2.1.2.10622 = STRING: Anonymized 086 +.1.3.6.1.2.1.2.2.1.2.10623 = STRING: Anonymized 084 +.1.3.6.1.2.1.2.2.1.2.10624 = STRING: Anonymized 035 +.1.3.6.1.2.1.2.2.1.2.10625 = STRING: Anonymized 189 +.1.3.6.1.2.1.2.2.1.2.10626 = STRING: Anonymized 018 +.1.3.6.1.2.1.2.2.1.2.10627 = STRING: Anonymized 049 +.1.3.6.1.2.1.2.2.1.2.10628 = STRING: Anonymized 134 +.1.3.6.1.2.1.2.2.1.2.10629 = STRING: Anonymized 200 +.1.3.6.1.2.1.2.2.1.2.10630 = STRING: Anonymized 013 +.1.3.6.1.2.1.2.2.1.2.10631 = STRING: Anonymized 136 +.1.3.6.1.2.1.2.2.1.2.10632 = STRING: Anonymized 091 +.1.3.6.1.2.1.2.2.1.2.10633 = STRING: Anonymized 147 +.1.3.6.1.2.1.2.2.1.2.10634 = STRING: Anonymized 034 +.1.3.6.1.2.1.2.2.1.2.10635 = STRING: Anonymized 001 +.1.3.6.1.2.1.2.2.1.2.10636 = STRING: Anonymized 151 +.1.3.6.1.2.1.2.2.1.2.10637 = STRING: Anonymized 204 +.1.3.6.1.2.1.2.2.1.2.10638 = STRING: Anonymized 110 +.1.3.6.1.2.1.2.2.1.2.10639 = STRING: Anonymized 226 +.1.3.6.1.2.1.2.2.1.2.10640 = STRING: Anonymized 222 +.1.3.6.1.2.1.2.2.1.2.10641 = STRING: Anonymized 108 +.1.3.6.1.2.1.2.2.1.2.10642 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.2.10643 = STRING: Anonymized 068 +.1.3.6.1.2.1.2.2.1.2.10644 = STRING: Anonymized 191 +.1.3.6.1.2.1.2.2.1.2.10645 = STRING: Anonymized 060 +.1.3.6.1.2.1.2.2.1.2.10646 = STRING: Anonymized 164 +.1.3.6.1.2.1.2.2.1.2.10647 = STRING: Anonymized 091 +.1.3.6.1.2.1.2.2.1.2.10648 = STRING: Anonymized 203 +.1.3.6.1.2.1.2.2.1.2.10649 = STRING: Anonymized 103 +.1.3.6.1.2.1.2.2.1.2.10650 = STRING: Anonymized 134 +.1.3.6.1.2.1.2.2.1.2.10651 = STRING: Anonymized 244 +.1.3.6.1.2.1.2.2.1.2.10652 = STRING: Anonymized 208 +.1.3.6.1.2.1.2.2.1.2.11101 = STRING: Anonymized 079 +.1.3.6.1.2.1.2.2.1.2.11102 = STRING: Anonymized 043 +.1.3.6.1.2.1.2.2.1.2.11103 = STRING: Anonymized 254 +.1.3.6.1.2.1.2.2.1.2.11104 = STRING: Anonymized 215 +.1.3.6.1.2.1.2.2.1.2.11105 = STRING: Anonymized 008 +.1.3.6.1.2.1.2.2.1.2.11106 = STRING: Anonymized 210 +.1.3.6.1.2.1.2.2.1.2.11107 = STRING: Anonymized 037 +.1.3.6.1.2.1.2.2.1.2.11108 = STRING: Anonymized 162 +.1.3.6.1.2.1.2.2.1.2.11109 = STRING: Anonymized 077 +.1.3.6.1.2.1.2.2.1.2.11110 = STRING: Anonymized 165 +.1.3.6.1.2.1.2.2.1.2.11111 = STRING: Anonymized 135 +.1.3.6.1.2.1.2.2.1.2.11112 = STRING: Anonymized 179 +.1.3.6.1.2.1.2.2.1.2.11113 = STRING: Anonymized 146 +.1.3.6.1.2.1.2.2.1.2.11114 = STRING: Anonymized 058 +.1.3.6.1.2.1.2.2.1.2.11115 = STRING: Anonymized 158 +.1.3.6.1.2.1.2.2.1.2.11116 = STRING: Anonymized 165 +.1.3.6.1.2.1.2.2.1.2.11117 = STRING: Anonymized 248 +.1.3.6.1.2.1.2.2.1.2.11118 = STRING: Anonymized 165 +.1.3.6.1.2.1.2.2.1.2.11119 = STRING: Anonymized 198 +.1.3.6.1.2.1.2.2.1.2.11120 = STRING: Anonymized 149 +.1.3.6.1.2.1.2.2.1.2.11121 = STRING: Anonymized 117 +.1.3.6.1.2.1.2.2.1.2.11122 = STRING: Anonymized 245 +.1.3.6.1.2.1.2.2.1.2.11123 = STRING: Anonymized 039 +.1.3.6.1.2.1.2.2.1.2.11124 = STRING: Anonymized 071 +.1.3.6.1.2.1.2.2.1.2.11125 = STRING: Anonymized 143 +.1.3.6.1.2.1.2.2.1.2.11126 = STRING: Anonymized 107 +.1.3.6.1.2.1.2.2.1.2.11127 = STRING: Anonymized 069 +.1.3.6.1.2.1.2.2.1.2.11128 = STRING: Anonymized 027 +.1.3.6.1.2.1.2.2.1.2.11129 = STRING: Anonymized 204 +.1.3.6.1.2.1.2.2.1.2.11130 = STRING: Anonymized 118 +.1.3.6.1.2.1.2.2.1.2.11131 = STRING: Anonymized 115 +.1.3.6.1.2.1.2.2.1.2.11132 = STRING: Anonymized 137 +.1.3.6.1.2.1.2.2.1.2.11133 = STRING: Anonymized 002 +.1.3.6.1.2.1.2.2.1.2.11134 = STRING: Anonymized 217 +.1.3.6.1.2.1.2.2.1.2.11135 = STRING: Anonymized 167 +.1.3.6.1.2.1.2.2.1.2.11136 = STRING: Anonymized 041 +.1.3.6.1.2.1.2.2.1.2.11137 = STRING: Anonymized 132 +.1.3.6.1.2.1.2.2.1.2.11138 = STRING: Anonymized 123 +.1.3.6.1.2.1.2.2.1.2.11139 = STRING: Anonymized 129 +.1.3.6.1.2.1.2.2.1.2.11140 = STRING: Anonymized 201 +.1.3.6.1.2.1.2.2.1.2.11141 = STRING: Anonymized 153 +.1.3.6.1.2.1.2.2.1.2.11142 = STRING: Anonymized 025 +.1.3.6.1.2.1.2.2.1.2.11143 = STRING: Anonymized 067 +.1.3.6.1.2.1.2.2.1.2.11144 = STRING: Anonymized 214 +.1.3.6.1.2.1.2.2.1.2.11145 = STRING: Anonymized 184 +.1.3.6.1.2.1.2.2.1.2.11146 = STRING: Anonymized 194 +.1.3.6.1.2.1.2.2.1.2.11147 = STRING: Anonymized 201 +.1.3.6.1.2.1.2.2.1.2.11148 = STRING: Anonymized 191 +.1.3.6.1.2.1.2.2.1.2.11149 = STRING: Anonymized 030 +.1.3.6.1.2.1.2.2.1.2.11150 = STRING: Anonymized 151 +.1.3.6.1.2.1.2.2.1.2.11151 = STRING: Anonymized 080 +.1.3.6.1.2.1.2.2.1.2.11152 = STRING: Anonymized 039 +.1.3.6.1.2.1.2.2.1.2.14001 = STRING: Anonymized 205 +.1.3.6.1.2.1.2.2.1.2.14002 = STRING: Anonymized 017 +.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.181 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5001 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5179 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5180 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5181 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5182 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5183 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5184 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5185 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5186 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.5187 = INTEGER: propVirtual(53) +.1.3.6.1.2.1.2.2.1.3.10101 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10102 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10103 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10104 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10105 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10106 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10107 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10108 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10109 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10110 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10111 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10112 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10113 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10114 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10115 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10116 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10117 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10118 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10119 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10120 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10121 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10122 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10123 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10124 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10125 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10126 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10127 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10128 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10129 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10130 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10131 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10132 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10133 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10134 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10135 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10136 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10137 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10138 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10139 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10140 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10141 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10142 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10143 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10144 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10145 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10146 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10147 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10148 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10149 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10150 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10151 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10152 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10601 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10602 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10603 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10604 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10605 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10606 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10607 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10608 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10609 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10610 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10611 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10612 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10613 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10614 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10615 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10616 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10617 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10618 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10619 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10620 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10621 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10622 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10623 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10624 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10625 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10626 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10627 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10628 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10629 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10630 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10631 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10632 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10633 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10634 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10635 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10636 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10637 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10638 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10639 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10640 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10641 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10642 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10643 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10644 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10645 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10646 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10647 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10648 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10649 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10650 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10651 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.10652 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11101 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11102 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11103 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11104 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11105 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11106 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11107 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11108 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11109 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11110 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11111 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11112 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11113 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11114 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11115 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11116 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11117 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11118 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11119 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11120 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11121 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11122 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11123 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11124 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11125 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11126 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11127 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11128 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11129 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11130 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11131 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11132 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11133 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11134 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11135 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11136 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11137 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11138 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11139 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11140 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11141 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11142 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11143 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11144 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11145 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11146 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11147 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11148 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11149 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11150 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11151 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.11152 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.14001 = INTEGER: other(1) +.1.3.6.1.2.1.2.2.1.3.14002 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.5.1 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.181 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.5001 = Gauge32: 4294967295 +.1.3.6.1.2.1.2.2.1.5.5179 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5180 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5181 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5182 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5183 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5184 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5185 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5186 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.5187 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.10101 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10102 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10103 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10104 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10105 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10106 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10107 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10108 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10109 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10110 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10111 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10112 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10113 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10114 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10115 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10116 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10117 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10118 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10119 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10120 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10121 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10122 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10123 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10124 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10125 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10126 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10127 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10128 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10129 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10130 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10131 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10132 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10133 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10134 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10135 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10136 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10137 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10138 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10139 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10140 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10141 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10142 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10143 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10144 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10145 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10146 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10147 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10148 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10149 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10150 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10151 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10152 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10601 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10602 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10603 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10604 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10605 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10606 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10607 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10608 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10609 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10610 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10611 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10612 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10613 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10614 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10615 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10616 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10617 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10618 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10619 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10620 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10621 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10622 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10623 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10624 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10625 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10626 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10627 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10628 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10629 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10630 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10631 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10632 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10633 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10634 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10635 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10636 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10637 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10638 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10639 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10640 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10641 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10642 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10643 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10644 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10645 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10646 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10647 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10648 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.10649 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10650 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.10651 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.10652 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11101 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11102 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.11103 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11104 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11105 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11106 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11107 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11108 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11109 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11110 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11111 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11112 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11113 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11114 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11115 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11116 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11117 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11118 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11119 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11120 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11121 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11122 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11123 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11124 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11125 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11126 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11127 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11128 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11129 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11130 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11131 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11132 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11133 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11134 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11135 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11136 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11137 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11138 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11139 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11140 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11141 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11142 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.5.11143 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11144 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11145 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11146 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11147 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11148 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11149 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11150 = Gauge32: 10000000 +.1.3.6.1.2.1.2.2.1.5.11151 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.11152 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.14001 = Gauge32: 4294967295 +.1.3.6.1.2.1.2.2.1.5.14002 = Gauge32: 100000000 +.1.3.6.1.2.1.2.2.1.6.1 = STRING: Anonymized 248 +.1.3.6.1.2.1.2.2.1.6.181 = STRING: Anonymized 150 +.1.3.6.1.2.1.2.2.1.6.5001 = STRING: Anonymized 227 +.1.3.6.1.2.1.2.2.1.6.5179 = STRING: +.1.3.6.1.2.1.2.2.1.6.5180 = STRING: +.1.3.6.1.2.1.2.2.1.6.5181 = STRING: +.1.3.6.1.2.1.2.2.1.6.5182 = STRING: +.1.3.6.1.2.1.2.2.1.6.5183 = STRING: +.1.3.6.1.2.1.2.2.1.6.5184 = STRING: +.1.3.6.1.2.1.2.2.1.6.5185 = STRING: +.1.3.6.1.2.1.2.2.1.6.5186 = STRING: +.1.3.6.1.2.1.2.2.1.6.5187 = STRING: +.1.3.6.1.2.1.2.2.1.6.10101 = STRING: Anonymized 151 +.1.3.6.1.2.1.2.2.1.6.10102 = STRING: Anonymized 070 +.1.3.6.1.2.1.2.2.1.6.10103 = STRING: Anonymized 180 +.1.3.6.1.2.1.2.2.1.6.10104 = STRING: Anonymized 171 +.1.3.6.1.2.1.2.2.1.6.10105 = STRING: Anonymized 075 +.1.3.6.1.2.1.2.2.1.6.10106 = STRING: Anonymized 045 +.1.3.6.1.2.1.2.2.1.6.10107 = STRING: Anonymized 192 +.1.3.6.1.2.1.2.2.1.6.10108 = STRING: Anonymized 047 +.1.3.6.1.2.1.2.2.1.6.10109 = STRING: Anonymized 173 +.1.3.6.1.2.1.2.2.1.6.10110 = STRING: Anonymized 050 +.1.3.6.1.2.1.2.2.1.6.10111 = STRING: Anonymized 158 +.1.3.6.1.2.1.2.2.1.6.10112 = STRING: Anonymized 023 +.1.3.6.1.2.1.2.2.1.6.10113 = STRING: Anonymized 119 +.1.3.6.1.2.1.2.2.1.6.10114 = STRING: Anonymized 188 +.1.3.6.1.2.1.2.2.1.6.10115 = STRING: Anonymized 208 +.1.3.6.1.2.1.2.2.1.6.10116 = STRING: Anonymized 237 +.1.3.6.1.2.1.2.2.1.6.10117 = STRING: Anonymized 045 +.1.3.6.1.2.1.2.2.1.6.10118 = STRING: Anonymized 232 +.1.3.6.1.2.1.2.2.1.6.10119 = STRING: Anonymized 248 +.1.3.6.1.2.1.2.2.1.6.10120 = STRING: Anonymized 182 +.1.3.6.1.2.1.2.2.1.6.10121 = STRING: Anonymized 034 +.1.3.6.1.2.1.2.2.1.6.10122 = STRING: Anonymized 135 +.1.3.6.1.2.1.2.2.1.6.10123 = STRING: Anonymized 019 +.1.3.6.1.2.1.2.2.1.6.10124 = STRING: Anonymized 204 +.1.3.6.1.2.1.2.2.1.6.10125 = STRING: Anonymized 116 +.1.3.6.1.2.1.2.2.1.6.10126 = STRING: Anonymized 186 +.1.3.6.1.2.1.2.2.1.6.10127 = STRING: Anonymized 234 +.1.3.6.1.2.1.2.2.1.6.10128 = STRING: Anonymized 007 +.1.3.6.1.2.1.2.2.1.6.10129 = STRING: Anonymized 156 +.1.3.6.1.2.1.2.2.1.6.10130 = STRING: Anonymized 142 +.1.3.6.1.2.1.2.2.1.6.10131 = STRING: Anonymized 175 +.1.3.6.1.2.1.2.2.1.6.10132 = STRING: Anonymized 126 +.1.3.6.1.2.1.2.2.1.6.10133 = STRING: Anonymized 247 +.1.3.6.1.2.1.2.2.1.6.10134 = STRING: Anonymized 113 +.1.3.6.1.2.1.2.2.1.6.10135 = STRING: Anonymized 193 +.1.3.6.1.2.1.2.2.1.6.10136 = STRING: Anonymized 035 +.1.3.6.1.2.1.2.2.1.6.10137 = STRING: Anonymized 088 +.1.3.6.1.2.1.2.2.1.6.10138 = STRING: Anonymized 090 +.1.3.6.1.2.1.2.2.1.6.10139 = STRING: Anonymized 168 +.1.3.6.1.2.1.2.2.1.6.10140 = STRING: Anonymized 045 +.1.3.6.1.2.1.2.2.1.6.10141 = STRING: Anonymized 088 +.1.3.6.1.2.1.2.2.1.6.10142 = STRING: Anonymized 211 +.1.3.6.1.2.1.2.2.1.6.10143 = STRING: Anonymized 055 +.1.3.6.1.2.1.2.2.1.6.10144 = STRING: Anonymized 009 +.1.3.6.1.2.1.2.2.1.6.10145 = STRING: Anonymized 082 +.1.3.6.1.2.1.2.2.1.6.10146 = STRING: Anonymized 085 +.1.3.6.1.2.1.2.2.1.6.10147 = STRING: Anonymized 208 +.1.3.6.1.2.1.2.2.1.6.10148 = STRING: Anonymized 081 +.1.3.6.1.2.1.2.2.1.6.10149 = STRING: Anonymized 035 +.1.3.6.1.2.1.2.2.1.6.10150 = STRING: Anonymized 176 +.1.3.6.1.2.1.2.2.1.6.10151 = STRING: Anonymized 159 +.1.3.6.1.2.1.2.2.1.6.10152 = STRING: Anonymized 096 +.1.3.6.1.2.1.2.2.1.6.10601 = STRING: Anonymized 220 +.1.3.6.1.2.1.2.2.1.6.10602 = STRING: Anonymized 020 +.1.3.6.1.2.1.2.2.1.6.10603 = STRING: Anonymized 240 +.1.3.6.1.2.1.2.2.1.6.10604 = STRING: Anonymized 228 +.1.3.6.1.2.1.2.2.1.6.10605 = STRING: Anonymized 254 +.1.3.6.1.2.1.2.2.1.6.10606 = STRING: Anonymized 201 +.1.3.6.1.2.1.2.2.1.6.10607 = STRING: Anonymized 032 +.1.3.6.1.2.1.2.2.1.6.10608 = STRING: Anonymized 228 +.1.3.6.1.2.1.2.2.1.6.10609 = STRING: Anonymized 184 +.1.3.6.1.2.1.2.2.1.6.10610 = STRING: Anonymized 226 +.1.3.6.1.2.1.2.2.1.6.10611 = STRING: Anonymized 208 +.1.3.6.1.2.1.2.2.1.6.10612 = STRING: Anonymized 081 +.1.3.6.1.2.1.2.2.1.6.10613 = STRING: Anonymized 065 +.1.3.6.1.2.1.2.2.1.6.10614 = STRING: Anonymized 110 +.1.3.6.1.2.1.2.2.1.6.10615 = STRING: Anonymized 219 +.1.3.6.1.2.1.2.2.1.6.10616 = STRING: Anonymized 231 +.1.3.6.1.2.1.2.2.1.6.10617 = STRING: Anonymized 096 +.1.3.6.1.2.1.2.2.1.6.10618 = STRING: Anonymized 185 +.1.3.6.1.2.1.2.2.1.6.10619 = STRING: Anonymized 117 +.1.3.6.1.2.1.2.2.1.6.10620 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.6.10621 = STRING: Anonymized 235 +.1.3.6.1.2.1.2.2.1.6.10622 = STRING: Anonymized 144 +.1.3.6.1.2.1.2.2.1.6.10623 = STRING: Anonymized 189 +.1.3.6.1.2.1.2.2.1.6.10624 = STRING: Anonymized 117 +.1.3.6.1.2.1.2.2.1.6.10625 = STRING: Anonymized 185 +.1.3.6.1.2.1.2.2.1.6.10626 = STRING: Anonymized 242 +.1.3.6.1.2.1.2.2.1.6.10627 = STRING: Anonymized 217 +.1.3.6.1.2.1.2.2.1.6.10628 = STRING: Anonymized 082 +.1.3.6.1.2.1.2.2.1.6.10629 = STRING: Anonymized 119 +.1.3.6.1.2.1.2.2.1.6.10630 = STRING: Anonymized 118 +.1.3.6.1.2.1.2.2.1.6.10631 = STRING: Anonymized 079 +.1.3.6.1.2.1.2.2.1.6.10632 = STRING: Anonymized 170 +.1.3.6.1.2.1.2.2.1.6.10633 = STRING: Anonymized 248 +.1.3.6.1.2.1.2.2.1.6.10634 = STRING: Anonymized 061 +.1.3.6.1.2.1.2.2.1.6.10635 = STRING: Anonymized 122 +.1.3.6.1.2.1.2.2.1.6.10636 = STRING: Anonymized 072 +.1.3.6.1.2.1.2.2.1.6.10637 = STRING: Anonymized 237 +.1.3.6.1.2.1.2.2.1.6.10638 = STRING: Anonymized 167 +.1.3.6.1.2.1.2.2.1.6.10639 = STRING: Anonymized 055 +.1.3.6.1.2.1.2.2.1.6.10640 = STRING: Anonymized 150 +.1.3.6.1.2.1.2.2.1.6.10641 = STRING: Anonymized 048 +.1.3.6.1.2.1.2.2.1.6.10642 = STRING: Anonymized 117 +.1.3.6.1.2.1.2.2.1.6.10643 = STRING: Anonymized 127 +.1.3.6.1.2.1.2.2.1.6.10644 = STRING: Anonymized 172 +.1.3.6.1.2.1.2.2.1.6.10645 = STRING: Anonymized 231 +.1.3.6.1.2.1.2.2.1.6.10646 = STRING: Anonymized 173 +.1.3.6.1.2.1.2.2.1.6.10647 = STRING: Anonymized 012 +.1.3.6.1.2.1.2.2.1.6.10648 = STRING: Anonymized 025 +.1.3.6.1.2.1.2.2.1.6.10649 = STRING: Anonymized 172 +.1.3.6.1.2.1.2.2.1.6.10650 = STRING: Anonymized 249 +.1.3.6.1.2.1.2.2.1.6.10651 = STRING: Anonymized 195 +.1.3.6.1.2.1.2.2.1.6.10652 = STRING: Anonymized 213 +.1.3.6.1.2.1.2.2.1.6.11101 = STRING: Anonymized 095 +.1.3.6.1.2.1.2.2.1.6.11102 = STRING: Anonymized 090 +.1.3.6.1.2.1.2.2.1.6.11103 = STRING: Anonymized 130 +.1.3.6.1.2.1.2.2.1.6.11104 = STRING: Anonymized 033 +.1.3.6.1.2.1.2.2.1.6.11105 = STRING: Anonymized 087 +.1.3.6.1.2.1.2.2.1.6.11106 = STRING: Anonymized 136 +.1.3.6.1.2.1.2.2.1.6.11107 = STRING: Anonymized 075 +.1.3.6.1.2.1.2.2.1.6.11108 = STRING: Anonymized 143 +.1.3.6.1.2.1.2.2.1.6.11109 = STRING: Anonymized 197 +.1.3.6.1.2.1.2.2.1.6.11110 = STRING: Anonymized 085 +.1.3.6.1.2.1.2.2.1.6.11111 = STRING: Anonymized 115 +.1.3.6.1.2.1.2.2.1.6.11112 = STRING: Anonymized 094 +.1.3.6.1.2.1.2.2.1.6.11113 = STRING: Anonymized 041 +.1.3.6.1.2.1.2.2.1.6.11114 = STRING: Anonymized 026 +.1.3.6.1.2.1.2.2.1.6.11115 = STRING: Anonymized 117 +.1.3.6.1.2.1.2.2.1.6.11116 = STRING: Anonymized 041 +.1.3.6.1.2.1.2.2.1.6.11117 = STRING: Anonymized 233 +.1.3.6.1.2.1.2.2.1.6.11118 = STRING: Anonymized 178 +.1.3.6.1.2.1.2.2.1.6.11119 = STRING: Anonymized 083 +.1.3.6.1.2.1.2.2.1.6.11120 = STRING: Anonymized 067 +.1.3.6.1.2.1.2.2.1.6.11121 = STRING: Anonymized 212 +.1.3.6.1.2.1.2.2.1.6.11122 = STRING: Anonymized 124 +.1.3.6.1.2.1.2.2.1.6.11123 = STRING: Anonymized 056 +.1.3.6.1.2.1.2.2.1.6.11124 = STRING: Anonymized 237 +.1.3.6.1.2.1.2.2.1.6.11125 = STRING: Anonymized 210 +.1.3.6.1.2.1.2.2.1.6.11126 = STRING: Anonymized 220 +.1.3.6.1.2.1.2.2.1.6.11127 = STRING: Anonymized 090 +.1.3.6.1.2.1.2.2.1.6.11128 = STRING: Anonymized 116 +.1.3.6.1.2.1.2.2.1.6.11129 = STRING: Anonymized 002 +.1.3.6.1.2.1.2.2.1.6.11130 = STRING: Anonymized 219 +.1.3.6.1.2.1.2.2.1.6.11131 = STRING: Anonymized 211 +.1.3.6.1.2.1.2.2.1.6.11132 = STRING: Anonymized 203 +.1.3.6.1.2.1.2.2.1.6.11133 = STRING: Anonymized 183 +.1.3.6.1.2.1.2.2.1.6.11134 = STRING: Anonymized 238 +.1.3.6.1.2.1.2.2.1.6.11135 = STRING: Anonymized 020 +.1.3.6.1.2.1.2.2.1.6.11136 = STRING: Anonymized 193 +.1.3.6.1.2.1.2.2.1.6.11137 = STRING: Anonymized 037 +.1.3.6.1.2.1.2.2.1.6.11138 = STRING: Anonymized 206 +.1.3.6.1.2.1.2.2.1.6.11139 = STRING: Anonymized 085 +.1.3.6.1.2.1.2.2.1.6.11140 = STRING: Anonymized 124 +.1.3.6.1.2.1.2.2.1.6.11141 = STRING: Anonymized 101 +.1.3.6.1.2.1.2.2.1.6.11142 = STRING: Anonymized 040 +.1.3.6.1.2.1.2.2.1.6.11143 = STRING: Anonymized 129 +.1.3.6.1.2.1.2.2.1.6.11144 = STRING: Anonymized 245 +.1.3.6.1.2.1.2.2.1.6.11145 = STRING: Anonymized 005 +.1.3.6.1.2.1.2.2.1.6.11146 = STRING: Anonymized 041 +.1.3.6.1.2.1.2.2.1.6.11147 = STRING: Anonymized 149 +.1.3.6.1.2.1.2.2.1.6.11148 = STRING: Anonymized 020 +.1.3.6.1.2.1.2.2.1.6.11149 = STRING: Anonymized 013 +.1.3.6.1.2.1.2.2.1.6.11150 = STRING: Anonymized 087 +.1.3.6.1.2.1.2.2.1.6.11151 = STRING: Anonymized 172 +.1.3.6.1.2.1.2.2.1.6.11152 = STRING: Anonymized 193 +.1.3.6.1.2.1.2.2.1.6.14001 = STRING: +.1.3.6.1.2.1.2.2.1.6.14002 = STRING: Anonymized 091 +.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.181 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5001 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5179 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5180 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5181 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5182 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5183 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5184 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5185 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5186 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.5187 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10101 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10102 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10103 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10104 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10105 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10106 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10107 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10108 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10109 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10110 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10111 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10112 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10113 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10114 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10115 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10116 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10117 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10118 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10119 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10120 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10121 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10122 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10123 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10124 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10125 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10126 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10127 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10128 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10129 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10130 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10131 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10132 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10133 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10134 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10135 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10136 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10137 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10138 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10139 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10140 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10141 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10142 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10143 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10144 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10145 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10146 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10147 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10148 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10149 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10150 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10151 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10152 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10601 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10602 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10603 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10604 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10605 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10606 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10607 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10608 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10609 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10610 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10611 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10612 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10613 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10614 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10615 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10616 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10617 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10618 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10619 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10620 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10621 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10622 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10623 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10624 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10625 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10626 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10627 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10628 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10629 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10630 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10631 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10632 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10633 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10634 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10635 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10636 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10637 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10638 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10639 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10640 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10641 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10642 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10643 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10644 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10645 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10646 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10647 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10648 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10649 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10650 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.10651 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.10652 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11101 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11102 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11103 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11104 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11105 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11106 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11107 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11108 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11109 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11110 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11111 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11112 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11113 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11114 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11115 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11116 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11117 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11118 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11119 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11120 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11121 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11122 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11123 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11124 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11125 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11126 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11127 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11128 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11129 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11130 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11131 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11132 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11133 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11134 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11135 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11136 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11137 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11138 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11139 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11140 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11141 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11142 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11143 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11144 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11145 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11146 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11147 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11148 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11149 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11150 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.7.11151 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.11152 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.14001 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.14002 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.181 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5001 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5179 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5180 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5181 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5182 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5183 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5184 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5185 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5186 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.5187 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10101 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10102 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10103 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10104 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10105 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10106 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10107 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10108 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10109 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10110 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10111 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10112 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10113 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10114 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10115 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10116 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10117 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10118 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10119 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10120 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10121 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10122 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10123 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10124 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10125 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10126 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10127 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10128 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10129 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10130 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10131 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10132 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10133 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10134 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10135 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10136 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10137 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10138 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10139 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10140 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10141 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10142 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10143 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10144 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10145 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10146 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10147 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10148 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10149 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10150 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10151 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10152 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10601 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10602 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10603 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10604 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10605 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10606 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10607 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10608 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10609 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10610 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10611 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10612 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10613 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10614 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10615 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10616 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10617 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10618 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10619 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10620 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10621 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10622 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10623 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10624 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10625 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10626 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10627 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10628 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10629 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10630 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10631 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10632 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10633 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10634 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10635 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10636 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10637 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10638 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10639 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10640 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10641 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10642 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10643 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10644 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10645 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10646 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10647 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10648 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10649 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10650 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.10651 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.10652 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11101 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11102 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11103 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11104 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11105 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11106 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11107 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11108 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11109 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11110 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11111 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11112 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11113 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11114 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11115 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11116 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11117 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11118 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11119 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11120 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11121 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11122 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11123 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11124 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11125 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11126 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11127 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11128 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11129 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11130 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11131 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11132 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11133 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11134 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11135 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11136 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11137 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11138 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11139 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11140 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11141 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11142 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11143 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11144 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11145 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11146 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11147 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11148 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11149 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11150 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.11151 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11152 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.14001 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.14002 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.20.1 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.181 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.5001 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.5179 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.5182 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.5185 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10101 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10102 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10103 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10104 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10105 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10106 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10107 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10108 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10109 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10110 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10111 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10112 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10113 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10114 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10115 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10116 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10117 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10118 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10119 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10120 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10121 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10122 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10123 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10124 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10125 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10126 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10127 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10128 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10129 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10130 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10131 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10132 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10133 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10134 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10135 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10136 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10137 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10138 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10139 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10140 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10141 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10142 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10143 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10144 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10145 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10146 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10147 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10148 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10149 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10150 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10151 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10152 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10601 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10602 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10603 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10604 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10605 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10606 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10607 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10608 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10609 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10610 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10611 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10612 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10613 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10614 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10615 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10616 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10617 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10618 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10619 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10620 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10621 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10622 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10623 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10624 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10625 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10626 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10627 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10628 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10629 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10630 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10631 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10632 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10633 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10634 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10635 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10636 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10637 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10638 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10639 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10640 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10641 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10642 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10643 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10644 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10645 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10646 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10647 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10648 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10649 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10650 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10651 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.10652 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11101 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11102 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11103 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11104 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11105 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11106 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11107 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11108 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11109 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11110 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11111 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11112 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11113 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11114 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11115 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11116 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11117 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11118 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11119 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11120 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11121 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11122 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11123 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11124 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11125 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11126 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11127 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11128 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11129 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11130 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11131 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11132 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11133 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11134 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11135 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11136 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11137 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11138 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11139 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11140 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11141 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11142 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11143 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11144 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11145 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11146 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11147 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11148 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11149 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11150 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11151 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.11152 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.14001 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.14002 = Counter32: 0 +.1.3.6.1.2.1.4.22.1.2.181.172.18.1.1 = STRING: Anonymized 058 +.1.3.6.1.2.1.4.22.1.2.181.172.18.1.11 = STRING: Anonymized 155 +.1.3.6.1.2.1.4.22.1.2.181.172.18.1.249 = STRING: Anonymized 145 +.1.3.6.1.2.1.10.7.2.1.3.10101 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10102 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10103 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10104 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10105 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10106 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10107 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10108 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10109 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10110 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10111 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10112 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10113 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10114 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10115 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10116 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10117 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10118 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10119 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10120 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10121 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10122 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10123 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10124 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10125 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10126 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10127 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10128 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10129 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10130 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10131 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10132 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10133 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10134 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10135 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10136 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10137 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10138 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10139 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10140 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10141 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10142 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10143 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10144 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10145 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10146 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10147 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10148 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10149 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10150 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10151 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10152 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10601 = Counter32: 1 +.1.3.6.1.2.1.10.7.2.1.3.10602 = Counter32: 2 +.1.3.6.1.2.1.10.7.2.1.3.10603 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10604 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10605 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10606 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10607 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10608 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10609 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10610 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10611 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10612 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10613 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10614 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10615 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10616 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10617 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10618 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10619 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10620 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10621 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10622 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10623 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10624 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10625 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10626 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10627 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10628 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10629 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10630 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10631 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10632 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10633 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10634 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10635 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10636 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10637 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10638 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10639 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10640 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10641 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10642 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10643 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10644 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10645 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10646 = Counter32: 1 +.1.3.6.1.2.1.10.7.2.1.3.10647 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10648 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10649 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10650 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10651 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.10652 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11101 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11102 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11103 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11104 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11105 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11106 = Counter32: 3 +.1.3.6.1.2.1.10.7.2.1.3.11107 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11108 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11109 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11110 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11111 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11112 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11113 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11114 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11115 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11116 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11117 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11118 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11119 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11120 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11121 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11122 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11123 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11124 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11125 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11126 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11127 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11128 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11129 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11130 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11131 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11132 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11133 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11134 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11135 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11136 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11137 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11138 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11139 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11140 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11141 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11142 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11143 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11144 = Counter32: 1 +.1.3.6.1.2.1.10.7.2.1.3.11145 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11146 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11147 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11148 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11149 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11150 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11151 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.11152 = Counter32: 0 +.1.3.6.1.2.1.10.7.2.1.3.14002 = Counter32: 0 +.1.3.6.1.2.1.17.1.4.1.2.53 = INTEGER: 10401 +.1.3.6.1.2.1.17.1.4.1.2.54 = INTEGER: 10402 +.1.3.6.1.2.1.17.1.4.1.2.109 = INTEGER: 10901 +.1.3.6.1.2.1.17.1.4.1.2.110 = INTEGER: 10902 +.1.3.6.1.2.1.17.1.4.1.2.165 = INTEGER: 11401 +.1.3.6.1.2.1.17.1.4.1.2.166 = INTEGER: 11402 +.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: Anonymized 250 +.1.3.6.1.2.1.31.1.1.1.1.181 = STRING: Anonymized 165 +.1.3.6.1.2.1.31.1.1.1.1.5001 = STRING: Anonymized 057 +.1.3.6.1.2.1.31.1.1.1.1.5179 = STRING: Anonymized 081 +.1.3.6.1.2.1.31.1.1.1.1.5180 = STRING: Anonymized 033 +.1.3.6.1.2.1.31.1.1.1.1.5181 = STRING: Anonymized 048 +.1.3.6.1.2.1.31.1.1.1.1.5182 = STRING: Anonymized 196 +.1.3.6.1.2.1.31.1.1.1.1.5183 = STRING: Anonymized 016 +.1.3.6.1.2.1.31.1.1.1.1.5184 = STRING: Anonymized 233 +.1.3.6.1.2.1.31.1.1.1.1.5185 = STRING: Anonymized 127 +.1.3.6.1.2.1.31.1.1.1.1.5186 = STRING: Anonymized 146 +.1.3.6.1.2.1.31.1.1.1.1.5187 = STRING: Anonymized 166 +.1.3.6.1.2.1.31.1.1.1.1.10101 = STRING: Anonymized 072 +.1.3.6.1.2.1.31.1.1.1.1.10102 = STRING: Anonymized 064 +.1.3.6.1.2.1.31.1.1.1.1.10103 = STRING: Anonymized 254 +.1.3.6.1.2.1.31.1.1.1.1.10104 = STRING: Anonymized 243 +.1.3.6.1.2.1.31.1.1.1.1.10105 = STRING: Anonymized 071 +.1.3.6.1.2.1.31.1.1.1.1.10106 = STRING: Anonymized 023 +.1.3.6.1.2.1.31.1.1.1.1.10107 = STRING: Anonymized 200 +.1.3.6.1.2.1.31.1.1.1.1.10108 = STRING: Anonymized 085 +.1.3.6.1.2.1.31.1.1.1.1.10109 = STRING: Anonymized 063 +.1.3.6.1.2.1.31.1.1.1.1.10110 = STRING: Anonymized 059 +.1.3.6.1.2.1.31.1.1.1.1.10111 = STRING: Anonymized 055 +.1.3.6.1.2.1.31.1.1.1.1.10112 = STRING: Anonymized 099 +.1.3.6.1.2.1.31.1.1.1.1.10113 = STRING: Anonymized 020 +.1.3.6.1.2.1.31.1.1.1.1.10114 = STRING: Anonymized 252 +.1.3.6.1.2.1.31.1.1.1.1.10115 = STRING: Anonymized 119 +.1.3.6.1.2.1.31.1.1.1.1.10116 = STRING: Anonymized 055 +.1.3.6.1.2.1.31.1.1.1.1.10117 = STRING: Anonymized 240 +.1.3.6.1.2.1.31.1.1.1.1.10118 = STRING: Anonymized 116 +.1.3.6.1.2.1.31.1.1.1.1.10119 = STRING: Anonymized 185 +.1.3.6.1.2.1.31.1.1.1.1.10120 = STRING: Anonymized 185 +.1.3.6.1.2.1.31.1.1.1.1.10121 = STRING: Anonymized 121 +.1.3.6.1.2.1.31.1.1.1.1.10122 = STRING: Anonymized 206 +.1.3.6.1.2.1.31.1.1.1.1.10123 = STRING: Anonymized 239 +.1.3.6.1.2.1.31.1.1.1.1.10124 = STRING: Anonymized 063 +.1.3.6.1.2.1.31.1.1.1.1.10125 = STRING: Anonymized 225 +.1.3.6.1.2.1.31.1.1.1.1.10126 = STRING: Anonymized 026 +.1.3.6.1.2.1.31.1.1.1.1.10127 = STRING: Anonymized 228 +.1.3.6.1.2.1.31.1.1.1.1.10128 = STRING: Anonymized 254 +.1.3.6.1.2.1.31.1.1.1.1.10129 = STRING: Anonymized 130 +.1.3.6.1.2.1.31.1.1.1.1.10130 = STRING: Anonymized 040 +.1.3.6.1.2.1.31.1.1.1.1.10131 = STRING: Anonymized 146 +.1.3.6.1.2.1.31.1.1.1.1.10132 = STRING: Anonymized 250 +.1.3.6.1.2.1.31.1.1.1.1.10133 = STRING: Anonymized 098 +.1.3.6.1.2.1.31.1.1.1.1.10134 = STRING: Anonymized 026 +.1.3.6.1.2.1.31.1.1.1.1.10135 = STRING: Anonymized 169 +.1.3.6.1.2.1.31.1.1.1.1.10136 = STRING: Anonymized 176 +.1.3.6.1.2.1.31.1.1.1.1.10137 = STRING: Anonymized 147 +.1.3.6.1.2.1.31.1.1.1.1.10138 = STRING: Anonymized 233 +.1.3.6.1.2.1.31.1.1.1.1.10139 = STRING: Anonymized 196 +.1.3.6.1.2.1.31.1.1.1.1.10140 = STRING: Anonymized 062 +.1.3.6.1.2.1.31.1.1.1.1.10141 = STRING: Anonymized 219 +.1.3.6.1.2.1.31.1.1.1.1.10142 = STRING: Anonymized 060 +.1.3.6.1.2.1.31.1.1.1.1.10143 = STRING: Anonymized 235 +.1.3.6.1.2.1.31.1.1.1.1.10144 = STRING: Anonymized 220 +.1.3.6.1.2.1.31.1.1.1.1.10145 = STRING: Anonymized 224 +.1.3.6.1.2.1.31.1.1.1.1.10146 = STRING: Anonymized 121 +.1.3.6.1.2.1.31.1.1.1.1.10147 = STRING: Anonymized 024 +.1.3.6.1.2.1.31.1.1.1.1.10148 = STRING: Anonymized 080 +.1.3.6.1.2.1.31.1.1.1.1.10149 = STRING: Anonymized 116 +.1.3.6.1.2.1.31.1.1.1.1.10150 = STRING: Anonymized 235 +.1.3.6.1.2.1.31.1.1.1.1.10151 = STRING: Anonymized 228 +.1.3.6.1.2.1.31.1.1.1.1.10152 = STRING: Anonymized 161 +.1.3.6.1.2.1.31.1.1.1.1.10601 = STRING: Anonymized 161 +.1.3.6.1.2.1.31.1.1.1.1.10602 = STRING: Anonymized 196 +.1.3.6.1.2.1.31.1.1.1.1.10603 = STRING: Anonymized 039 +.1.3.6.1.2.1.31.1.1.1.1.10604 = STRING: Anonymized 155 +.1.3.6.1.2.1.31.1.1.1.1.10605 = STRING: Anonymized 035 +.1.3.6.1.2.1.31.1.1.1.1.10606 = STRING: Anonymized 124 +.1.3.6.1.2.1.31.1.1.1.1.10607 = STRING: Anonymized 243 +.1.3.6.1.2.1.31.1.1.1.1.10608 = STRING: Anonymized 166 +.1.3.6.1.2.1.31.1.1.1.1.10609 = STRING: Anonymized 048 +.1.3.6.1.2.1.31.1.1.1.1.10610 = STRING: Anonymized 197 +.1.3.6.1.2.1.31.1.1.1.1.10611 = STRING: Anonymized 128 +.1.3.6.1.2.1.31.1.1.1.1.10612 = STRING: Anonymized 033 +.1.3.6.1.2.1.31.1.1.1.1.10613 = STRING: Anonymized 080 +.1.3.6.1.2.1.31.1.1.1.1.10614 = STRING: Anonymized 246 +.1.3.6.1.2.1.31.1.1.1.1.10615 = STRING: Anonymized 114 +.1.3.6.1.2.1.31.1.1.1.1.10616 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.10617 = STRING: Anonymized 131 +.1.3.6.1.2.1.31.1.1.1.1.10618 = STRING: Anonymized 004 +.1.3.6.1.2.1.31.1.1.1.1.10619 = STRING: Anonymized 101 +.1.3.6.1.2.1.31.1.1.1.1.10620 = STRING: Anonymized 112 +.1.3.6.1.2.1.31.1.1.1.1.10621 = STRING: Anonymized 017 +.1.3.6.1.2.1.31.1.1.1.1.10622 = STRING: Anonymized 041 +.1.3.6.1.2.1.31.1.1.1.1.10623 = STRING: Anonymized 230 +.1.3.6.1.2.1.31.1.1.1.1.10624 = STRING: Anonymized 211 +.1.3.6.1.2.1.31.1.1.1.1.10625 = STRING: Anonymized 038 +.1.3.6.1.2.1.31.1.1.1.1.10626 = STRING: Anonymized 003 +.1.3.6.1.2.1.31.1.1.1.1.10627 = STRING: Anonymized 163 +.1.3.6.1.2.1.31.1.1.1.1.10628 = STRING: Anonymized 027 +.1.3.6.1.2.1.31.1.1.1.1.10629 = STRING: Anonymized 122 +.1.3.6.1.2.1.31.1.1.1.1.10630 = STRING: Anonymized 230 +.1.3.6.1.2.1.31.1.1.1.1.10631 = STRING: Anonymized 006 +.1.3.6.1.2.1.31.1.1.1.1.10632 = STRING: Anonymized 120 +.1.3.6.1.2.1.31.1.1.1.1.10633 = STRING: Anonymized 114 +.1.3.6.1.2.1.31.1.1.1.1.10634 = STRING: Anonymized 149 +.1.3.6.1.2.1.31.1.1.1.1.10635 = STRING: Anonymized 130 +.1.3.6.1.2.1.31.1.1.1.1.10636 = STRING: Anonymized 125 +.1.3.6.1.2.1.31.1.1.1.1.10637 = STRING: Anonymized 006 +.1.3.6.1.2.1.31.1.1.1.1.10638 = STRING: Anonymized 224 +.1.3.6.1.2.1.31.1.1.1.1.10639 = STRING: Anonymized 248 +.1.3.6.1.2.1.31.1.1.1.1.10640 = STRING: Anonymized 193 +.1.3.6.1.2.1.31.1.1.1.1.10641 = STRING: Anonymized 052 +.1.3.6.1.2.1.31.1.1.1.1.10642 = STRING: Anonymized 020 +.1.3.6.1.2.1.31.1.1.1.1.10643 = STRING: Anonymized 045 +.1.3.6.1.2.1.31.1.1.1.1.10644 = STRING: Anonymized 011 +.1.3.6.1.2.1.31.1.1.1.1.10645 = STRING: Anonymized 132 +.1.3.6.1.2.1.31.1.1.1.1.10646 = STRING: Anonymized 019 +.1.3.6.1.2.1.31.1.1.1.1.10647 = STRING: Anonymized 061 +.1.3.6.1.2.1.31.1.1.1.1.10648 = STRING: Anonymized 108 +.1.3.6.1.2.1.31.1.1.1.1.10649 = STRING: Anonymized 011 +.1.3.6.1.2.1.31.1.1.1.1.10650 = STRING: Anonymized 246 +.1.3.6.1.2.1.31.1.1.1.1.10651 = STRING: Anonymized 016 +.1.3.6.1.2.1.31.1.1.1.1.10652 = STRING: Anonymized 120 +.1.3.6.1.2.1.31.1.1.1.1.11101 = STRING: Anonymized 081 +.1.3.6.1.2.1.31.1.1.1.1.11102 = STRING: Anonymized 029 +.1.3.6.1.2.1.31.1.1.1.1.11103 = STRING: Anonymized 134 +.1.3.6.1.2.1.31.1.1.1.1.11104 = STRING: Anonymized 138 +.1.3.6.1.2.1.31.1.1.1.1.11105 = STRING: Anonymized 077 +.1.3.6.1.2.1.31.1.1.1.1.11106 = STRING: Anonymized 051 +.1.3.6.1.2.1.31.1.1.1.1.11107 = STRING: Anonymized 041 +.1.3.6.1.2.1.31.1.1.1.1.11108 = STRING: Anonymized 007 +.1.3.6.1.2.1.31.1.1.1.1.11109 = STRING: Anonymized 103 +.1.3.6.1.2.1.31.1.1.1.1.11110 = STRING: Anonymized 186 +.1.3.6.1.2.1.31.1.1.1.1.11111 = STRING: Anonymized 222 +.1.3.6.1.2.1.31.1.1.1.1.11112 = STRING: Anonymized 010 +.1.3.6.1.2.1.31.1.1.1.1.11113 = STRING: Anonymized 075 +.1.3.6.1.2.1.31.1.1.1.1.11114 = STRING: Anonymized 150 +.1.3.6.1.2.1.31.1.1.1.1.11115 = STRING: Anonymized 220 +.1.3.6.1.2.1.31.1.1.1.1.11116 = STRING: Anonymized 032 +.1.3.6.1.2.1.31.1.1.1.1.11117 = STRING: Anonymized 105 +.1.3.6.1.2.1.31.1.1.1.1.11118 = STRING: Anonymized 170 +.1.3.6.1.2.1.31.1.1.1.1.11119 = STRING: Anonymized 026 +.1.3.6.1.2.1.31.1.1.1.1.11120 = STRING: Anonymized 063 +.1.3.6.1.2.1.31.1.1.1.1.11121 = STRING: Anonymized 237 +.1.3.6.1.2.1.31.1.1.1.1.11122 = STRING: Anonymized 165 +.1.3.6.1.2.1.31.1.1.1.1.11123 = STRING: Anonymized 145 +.1.3.6.1.2.1.31.1.1.1.1.11124 = STRING: Anonymized 000 +.1.3.6.1.2.1.31.1.1.1.1.11125 = STRING: Anonymized 034 +.1.3.6.1.2.1.31.1.1.1.1.11126 = STRING: Anonymized 044 +.1.3.6.1.2.1.31.1.1.1.1.11127 = STRING: Anonymized 107 +.1.3.6.1.2.1.31.1.1.1.1.11128 = STRING: Anonymized 239 +.1.3.6.1.2.1.31.1.1.1.1.11129 = STRING: Anonymized 252 +.1.3.6.1.2.1.31.1.1.1.1.11130 = STRING: Anonymized 197 +.1.3.6.1.2.1.31.1.1.1.1.11131 = STRING: Anonymized 194 +.1.3.6.1.2.1.31.1.1.1.1.11132 = STRING: Anonymized 147 +.1.3.6.1.2.1.31.1.1.1.1.11133 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.11134 = STRING: Anonymized 035 +.1.3.6.1.2.1.31.1.1.1.1.11135 = STRING: Anonymized 127 +.1.3.6.1.2.1.31.1.1.1.1.11136 = STRING: Anonymized 062 +.1.3.6.1.2.1.31.1.1.1.1.11137 = STRING: Anonymized 020 +.1.3.6.1.2.1.31.1.1.1.1.11138 = STRING: Anonymized 145 +.1.3.6.1.2.1.31.1.1.1.1.11139 = STRING: Anonymized 014 +.1.3.6.1.2.1.31.1.1.1.1.11140 = STRING: Anonymized 254 +.1.3.6.1.2.1.31.1.1.1.1.11141 = STRING: Anonymized 087 +.1.3.6.1.2.1.31.1.1.1.1.11142 = STRING: Anonymized 040 +.1.3.6.1.2.1.31.1.1.1.1.11143 = STRING: Anonymized 057 +.1.3.6.1.2.1.31.1.1.1.1.11144 = STRING: Anonymized 218 +.1.3.6.1.2.1.31.1.1.1.1.11145 = STRING: Anonymized 026 +.1.3.6.1.2.1.31.1.1.1.1.11146 = STRING: Anonymized 239 +.1.3.6.1.2.1.31.1.1.1.1.11147 = STRING: Anonymized 245 +.1.3.6.1.2.1.31.1.1.1.1.11148 = STRING: Anonymized 228 +.1.3.6.1.2.1.31.1.1.1.1.11149 = STRING: Anonymized 204 +.1.3.6.1.2.1.31.1.1.1.1.11150 = STRING: Anonymized 061 +.1.3.6.1.2.1.31.1.1.1.1.11151 = STRING: Anonymized 138 +.1.3.6.1.2.1.31.1.1.1.1.11152 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.14001 = STRING: Anonymized 189 +.1.3.6.1.2.1.31.1.1.1.1.14002 = STRING: Anonymized 103 +.1.3.6.1.2.1.31.1.1.1.10.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.181 = Counter64: 23728607343 +.1.3.6.1.2.1.31.1.1.1.10.5001 = Counter64: 1281317914384 +.1.3.6.1.2.1.31.1.1.1.10.10101 = Counter64: 284164004452 +.1.3.6.1.2.1.31.1.1.1.10.10102 = Counter64: 226617476039 +.1.3.6.1.2.1.31.1.1.1.10.10103 = Counter64: 245510662915 +.1.3.6.1.2.1.31.1.1.1.10.10104 = Counter64: 233211604480 +.1.3.6.1.2.1.31.1.1.1.10.10105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10106 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10113 = Counter64: 50728323415 +.1.3.6.1.2.1.31.1.1.1.10.10114 = Counter64: 52901025322 +.1.3.6.1.2.1.31.1.1.1.10.10115 = Counter64: 60564204127 +.1.3.6.1.2.1.31.1.1.1.10.10116 = Counter64: 47393293686 +.1.3.6.1.2.1.31.1.1.1.10.10117 = Counter64: 55540678542 +.1.3.6.1.2.1.31.1.1.1.10.10118 = Counter64: 60094663648 +.1.3.6.1.2.1.31.1.1.1.10.10119 = Counter64: 58142176031 +.1.3.6.1.2.1.31.1.1.1.10.10120 = Counter64: 66630551583 +.1.3.6.1.2.1.31.1.1.1.10.10121 = Counter64: 55707716617 +.1.3.6.1.2.1.31.1.1.1.10.10122 = Counter64: 51411721784 +.1.3.6.1.2.1.31.1.1.1.10.10123 = Counter64: 70638118741 +.1.3.6.1.2.1.31.1.1.1.10.10124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10125 = Counter64: 40002390394 +.1.3.6.1.2.1.31.1.1.1.10.10126 = Counter64: 49452900832 +.1.3.6.1.2.1.31.1.1.1.10.10127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10128 = Counter64: 46335985935 +.1.3.6.1.2.1.31.1.1.1.10.10129 = Counter64: 51509340069 +.1.3.6.1.2.1.31.1.1.1.10.10130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10142 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10144 = Counter64: 95967530493 +.1.3.6.1.2.1.31.1.1.1.10.10145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10147 = Counter64: 234514546720 +.1.3.6.1.2.1.31.1.1.1.10.10148 = Counter64: 214031384519 +.1.3.6.1.2.1.31.1.1.1.10.10149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10151 = Counter64: 103777185195 +.1.3.6.1.2.1.31.1.1.1.10.10152 = Counter64: 99516483230 +.1.3.6.1.2.1.31.1.1.1.10.10601 = Counter64: 437280307535 +.1.3.6.1.2.1.31.1.1.1.10.10602 = Counter64: 698181263972 +.1.3.6.1.2.1.31.1.1.1.10.10603 = Counter64: 41583129602 +.1.3.6.1.2.1.31.1.1.1.10.10604 = Counter64: 44273443 +.1.3.6.1.2.1.31.1.1.1.10.10605 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10606 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10607 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10609 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10610 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10611 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10612 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10613 = Counter64: 4333416349 +.1.3.6.1.2.1.31.1.1.1.10.10614 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10615 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10616 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10617 = Counter64: 43029901913 +.1.3.6.1.2.1.31.1.1.1.10.10618 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10619 = Counter64: 42197551699 +.1.3.6.1.2.1.31.1.1.1.10.10620 = Counter64: 46116267942 +.1.3.6.1.2.1.31.1.1.1.10.10621 = Counter64: 41651891957 +.1.3.6.1.2.1.31.1.1.1.10.10622 = Counter64: 54006792455 +.1.3.6.1.2.1.31.1.1.1.10.10623 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10624 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10625 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10626 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10627 = Counter64: 46082720689 +.1.3.6.1.2.1.31.1.1.1.10.10628 = Counter64: 44211631138 +.1.3.6.1.2.1.31.1.1.1.10.10629 = Counter64: 39562082819 +.1.3.6.1.2.1.31.1.1.1.10.10630 = Counter64: 46747107659 +.1.3.6.1.2.1.31.1.1.1.10.10631 = Counter64: 39168924238 +.1.3.6.1.2.1.31.1.1.1.10.10632 = Counter64: 46022371292 +.1.3.6.1.2.1.31.1.1.1.10.10633 = Counter64: 40749086171 +.1.3.6.1.2.1.31.1.1.1.10.10634 = Counter64: 39526289089 +.1.3.6.1.2.1.31.1.1.1.10.10635 = Counter64: 39506093952 +.1.3.6.1.2.1.31.1.1.1.10.10636 = Counter64: 40562903670 +.1.3.6.1.2.1.31.1.1.1.10.10637 = Counter64: 46596384285 +.1.3.6.1.2.1.31.1.1.1.10.10638 = Counter64: 41275678283 +.1.3.6.1.2.1.31.1.1.1.10.10639 = Counter64: 41687508473 +.1.3.6.1.2.1.31.1.1.1.10.10640 = Counter64: 46851088682 +.1.3.6.1.2.1.31.1.1.1.10.10641 = Counter64: 42786904059 +.1.3.6.1.2.1.31.1.1.1.10.10642 = Counter64: 46291978405 +.1.3.6.1.2.1.31.1.1.1.10.10643 = Counter64: 40622622134 +.1.3.6.1.2.1.31.1.1.1.10.10644 = Counter64: 45711960874 +.1.3.6.1.2.1.31.1.1.1.10.10645 = Counter64: 42024729807 +.1.3.6.1.2.1.31.1.1.1.10.10646 = Counter64: 46111147848 +.1.3.6.1.2.1.31.1.1.1.10.10647 = Counter64: 40117203382 +.1.3.6.1.2.1.31.1.1.1.10.10648 = Counter64: 43628935015 +.1.3.6.1.2.1.31.1.1.1.10.10649 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10650 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10651 = Counter64: 876093559133 +.1.3.6.1.2.1.31.1.1.1.10.10652 = Counter64: 73653041588 +.1.3.6.1.2.1.31.1.1.1.10.11101 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11102 = Counter64: 43299737263 +.1.3.6.1.2.1.31.1.1.1.10.11103 = Counter64: 46960104221 +.1.3.6.1.2.1.31.1.1.1.10.11104 = Counter64: 41110736940 +.1.3.6.1.2.1.31.1.1.1.10.11105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11106 = Counter64: 52596062225 +.1.3.6.1.2.1.31.1.1.1.10.11107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11113 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11114 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11115 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11116 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11117 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11118 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11119 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11120 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11121 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11122 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11123 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11125 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11126 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11128 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11129 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11142 = Counter64: 40945206101 +.1.3.6.1.2.1.31.1.1.1.10.11143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11144 = Counter64: 96513644924 +.1.3.6.1.2.1.31.1.1.1.10.11145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11147 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11148 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11151 = Counter64: 87175660098 +.1.3.6.1.2.1.31.1.1.1.10.11152 = Counter64: 41102320737 +.1.3.6.1.2.1.31.1.1.1.10.14002 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.181 = Counter64: 146889715 +.1.3.6.1.2.1.31.1.1.1.11.5001 = Counter64: 7689122945 +.1.3.6.1.2.1.31.1.1.1.11.10101 = Counter64: 321841128 +.1.3.6.1.2.1.31.1.1.1.11.10102 = Counter64: 145957162 +.1.3.6.1.2.1.31.1.1.1.11.10103 = Counter64: 230202729 +.1.3.6.1.2.1.31.1.1.1.11.10104 = Counter64: 159455172 +.1.3.6.1.2.1.31.1.1.1.11.10105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10106 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10113 = Counter64: 36851780 +.1.3.6.1.2.1.31.1.1.1.11.10114 = Counter64: 38469333 +.1.3.6.1.2.1.31.1.1.1.11.10115 = Counter64: 44544081 +.1.3.6.1.2.1.31.1.1.1.11.10116 = Counter64: 33990667 +.1.3.6.1.2.1.31.1.1.1.11.10117 = Counter64: 40619203 +.1.3.6.1.2.1.31.1.1.1.11.10118 = Counter64: 44021849 +.1.3.6.1.2.1.31.1.1.1.11.10119 = Counter64: 43373360 +.1.3.6.1.2.1.31.1.1.1.11.10120 = Counter64: 48267818 +.1.3.6.1.2.1.31.1.1.1.11.10121 = Counter64: 40328437 +.1.3.6.1.2.1.31.1.1.1.11.10122 = Counter64: 36560108 +.1.3.6.1.2.1.31.1.1.1.11.10123 = Counter64: 51964107 +.1.3.6.1.2.1.31.1.1.1.11.10124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10125 = Counter64: 32561722 +.1.3.6.1.2.1.31.1.1.1.11.10126 = Counter64: 31699135 +.1.3.6.1.2.1.31.1.1.1.11.10127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10128 = Counter64: 32590144 +.1.3.6.1.2.1.31.1.1.1.11.10129 = Counter64: 33793183 +.1.3.6.1.2.1.31.1.1.1.11.10130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10142 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10144 = Counter64: 32560450 +.1.3.6.1.2.1.31.1.1.1.11.10145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10147 = Counter64: 170060862 +.1.3.6.1.2.1.31.1.1.1.11.10148 = Counter64: 92603846 +.1.3.6.1.2.1.31.1.1.1.11.10149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10151 = Counter64: 630356952 +.1.3.6.1.2.1.31.1.1.1.11.10152 = Counter64: 599717820 +.1.3.6.1.2.1.31.1.1.1.11.10601 = Counter64: 1877742139 +.1.3.6.1.2.1.31.1.1.1.11.10602 = Counter64: 6191563484 +.1.3.6.1.2.1.31.1.1.1.11.10603 = Counter64: 30200323 +.1.3.6.1.2.1.31.1.1.1.11.10604 = Counter64: 12763 +.1.3.6.1.2.1.31.1.1.1.11.10605 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10606 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10607 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10609 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10610 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10611 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10612 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10613 = Counter64: 1670181 +.1.3.6.1.2.1.31.1.1.1.11.10614 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10615 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10616 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10617 = Counter64: 31499312 +.1.3.6.1.2.1.31.1.1.1.11.10618 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10619 = Counter64: 27720333 +.1.3.6.1.2.1.31.1.1.1.11.10620 = Counter64: 30184203 +.1.3.6.1.2.1.31.1.1.1.11.10621 = Counter64: 29462646 +.1.3.6.1.2.1.31.1.1.1.11.10622 = Counter64: 35117876 +.1.3.6.1.2.1.31.1.1.1.11.10623 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10624 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10625 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10626 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10627 = Counter64: 114377781 +.1.3.6.1.2.1.31.1.1.1.11.10628 = Counter64: 101849297 +.1.3.6.1.2.1.31.1.1.1.11.10629 = Counter64: 35985457 +.1.3.6.1.2.1.31.1.1.1.11.10630 = Counter64: 118296299 +.1.3.6.1.2.1.31.1.1.1.11.10631 = Counter64: 35509962 +.1.3.6.1.2.1.31.1.1.1.11.10632 = Counter64: 114192503 +.1.3.6.1.2.1.31.1.1.1.11.10633 = Counter64: 28989276 +.1.3.6.1.2.1.31.1.1.1.11.10634 = Counter64: 36101064 +.1.3.6.1.2.1.31.1.1.1.11.10635 = Counter64: 36790196 +.1.3.6.1.2.1.31.1.1.1.11.10636 = Counter64: 38278936 +.1.3.6.1.2.1.31.1.1.1.11.10637 = Counter64: 117449605 +.1.3.6.1.2.1.31.1.1.1.11.10638 = Counter64: 30016121 +.1.3.6.1.2.1.31.1.1.1.11.10639 = Counter64: 30418511 +.1.3.6.1.2.1.31.1.1.1.11.10640 = Counter64: 118912546 +.1.3.6.1.2.1.31.1.1.1.11.10641 = Counter64: 32006572 +.1.3.6.1.2.1.31.1.1.1.11.10642 = Counter64: 113815794 +.1.3.6.1.2.1.31.1.1.1.11.10643 = Counter64: 42586223 +.1.3.6.1.2.1.31.1.1.1.11.10644 = Counter64: 112186504 +.1.3.6.1.2.1.31.1.1.1.11.10645 = Counter64: 29498658 +.1.3.6.1.2.1.31.1.1.1.11.10646 = Counter64: 112299591 +.1.3.6.1.2.1.31.1.1.1.11.10647 = Counter64: 40044291 +.1.3.6.1.2.1.31.1.1.1.11.10648 = Counter64: 30482703 +.1.3.6.1.2.1.31.1.1.1.11.10649 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10650 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10651 = Counter64: 5211970284 +.1.3.6.1.2.1.31.1.1.1.11.10652 = Counter64: 413251930 +.1.3.6.1.2.1.31.1.1.1.11.11101 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11102 = Counter64: 30999529 +.1.3.6.1.2.1.31.1.1.1.11.11103 = Counter64: 111171481 +.1.3.6.1.2.1.31.1.1.1.11.11104 = Counter64: 37904959 +.1.3.6.1.2.1.31.1.1.1.11.11105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11106 = Counter64: 15216592 +.1.3.6.1.2.1.31.1.1.1.11.11107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11113 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11114 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11115 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11116 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11117 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11118 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11119 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11120 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11121 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11122 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11123 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11125 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11126 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11128 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11129 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11142 = Counter64: 65241516 +.1.3.6.1.2.1.31.1.1.1.11.11143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11144 = Counter64: 33589824 +.1.3.6.1.2.1.31.1.1.1.11.11145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11147 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11148 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11151 = Counter64: 538148232 +.1.3.6.1.2.1.31.1.1.1.11.11152 = Counter64: 295679987 +.1.3.6.1.2.1.31.1.1.1.11.14002 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.181 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.5001 = Counter64: 111601941 +.1.3.6.1.2.1.31.1.1.1.12.10101 = Counter64: 956501599 +.1.3.6.1.2.1.31.1.1.1.12.10102 = Counter64: 957478189 +.1.3.6.1.2.1.31.1.1.1.12.10103 = Counter64: 957022964 +.1.3.6.1.2.1.31.1.1.1.12.10104 = Counter64: 957431769 +.1.3.6.1.2.1.31.1.1.1.12.10105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10106 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10113 = Counter64: 18592856 +.1.3.6.1.2.1.31.1.1.1.12.10114 = Counter64: 18559963 +.1.3.6.1.2.1.31.1.1.1.12.10115 = Counter64: 18599559 +.1.3.6.1.2.1.31.1.1.1.12.10116 = Counter64: 18542577 +.1.3.6.1.2.1.31.1.1.1.12.10117 = Counter64: 18540670 +.1.3.6.1.2.1.31.1.1.1.12.10118 = Counter64: 18601364 +.1.3.6.1.2.1.31.1.1.1.12.10119 = Counter64: 18550378 +.1.3.6.1.2.1.31.1.1.1.12.10120 = Counter64: 18432503 +.1.3.6.1.2.1.31.1.1.1.12.10121 = Counter64: 18595391 +.1.3.6.1.2.1.31.1.1.1.12.10122 = Counter64: 18531585 +.1.3.6.1.2.1.31.1.1.1.12.10123 = Counter64: 18526518 +.1.3.6.1.2.1.31.1.1.1.12.10124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10125 = Counter64: 18367659 +.1.3.6.1.2.1.31.1.1.1.12.10126 = Counter64: 18700277 +.1.3.6.1.2.1.31.1.1.1.12.10127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10128 = Counter64: 18527233 +.1.3.6.1.2.1.31.1.1.1.12.10129 = Counter64: 18434402 +.1.3.6.1.2.1.31.1.1.1.12.10130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10142 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10144 = Counter64: 462810100 +.1.3.6.1.2.1.31.1.1.1.12.10145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10147 = Counter64: 957420265 +.1.3.6.1.2.1.31.1.1.1.12.10148 = Counter64: 957732369 +.1.3.6.1.2.1.31.1.1.1.12.10149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10151 = Counter64: 22937309 +.1.3.6.1.2.1.31.1.1.1.12.10152 = Counter64: 19042823 +.1.3.6.1.2.1.31.1.1.1.12.10601 = Counter64: 18787347 +.1.3.6.1.2.1.31.1.1.1.12.10602 = Counter64: 18787345 +.1.3.6.1.2.1.31.1.1.1.12.10603 = Counter64: 18548356 +.1.3.6.1.2.1.31.1.1.1.12.10604 = Counter64: 11925 +.1.3.6.1.2.1.31.1.1.1.12.10605 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10606 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10607 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10609 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10610 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10611 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10612 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10613 = Counter64: 849387 +.1.3.6.1.2.1.31.1.1.1.12.10614 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10615 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10616 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10617 = Counter64: 18521491 +.1.3.6.1.2.1.31.1.1.1.12.10618 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10619 = Counter64: 18604680 +.1.3.6.1.2.1.31.1.1.1.12.10620 = Counter64: 18517748 +.1.3.6.1.2.1.31.1.1.1.12.10621 = Counter64: 18529221 +.1.3.6.1.2.1.31.1.1.1.12.10622 = Counter64: 18632792 +.1.3.6.1.2.1.31.1.1.1.12.10623 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10624 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10625 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10626 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10627 = Counter64: 18671479 +.1.3.6.1.2.1.31.1.1.1.12.10628 = Counter64: 18680947 +.1.3.6.1.2.1.31.1.1.1.12.10629 = Counter64: 18462164 +.1.3.6.1.2.1.31.1.1.1.12.10630 = Counter64: 18761630 +.1.3.6.1.2.1.31.1.1.1.12.10631 = Counter64: 18460633 +.1.3.6.1.2.1.31.1.1.1.12.10632 = Counter64: 18746115 +.1.3.6.1.2.1.31.1.1.1.12.10633 = Counter64: 18612966 +.1.3.6.1.2.1.31.1.1.1.12.10634 = Counter64: 18467008 +.1.3.6.1.2.1.31.1.1.1.12.10635 = Counter64: 18459218 +.1.3.6.1.2.1.31.1.1.1.12.10636 = Counter64: 18467800 +.1.3.6.1.2.1.31.1.1.1.12.10637 = Counter64: 18778030 +.1.3.6.1.2.1.31.1.1.1.12.10638 = Counter64: 18574122 +.1.3.6.1.2.1.31.1.1.1.12.10639 = Counter64: 18560125 +.1.3.6.1.2.1.31.1.1.1.12.10640 = Counter64: 18765112 +.1.3.6.1.2.1.31.1.1.1.12.10641 = Counter64: 18597540 +.1.3.6.1.2.1.31.1.1.1.12.10642 = Counter64: 18766287 +.1.3.6.1.2.1.31.1.1.1.12.10643 = Counter64: 18505350 +.1.3.6.1.2.1.31.1.1.1.12.10644 = Counter64: 18760151 +.1.3.6.1.2.1.31.1.1.1.12.10645 = Counter64: 18612473 +.1.3.6.1.2.1.31.1.1.1.12.10646 = Counter64: 18756583 +.1.3.6.1.2.1.31.1.1.1.12.10647 = Counter64: 18484099 +.1.3.6.1.2.1.31.1.1.1.12.10648 = Counter64: 18538305 +.1.3.6.1.2.1.31.1.1.1.12.10649 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10650 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10651 = Counter64: 14777907 +.1.3.6.1.2.1.31.1.1.1.12.10652 = Counter64: 17185264 +.1.3.6.1.2.1.31.1.1.1.12.11101 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11102 = Counter64: 20123041 +.1.3.6.1.2.1.31.1.1.1.12.11103 = Counter64: 20373286 +.1.3.6.1.2.1.31.1.1.1.12.11104 = Counter64: 20042565 +.1.3.6.1.2.1.31.1.1.1.12.11105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11106 = Counter64: 304616362 +.1.3.6.1.2.1.31.1.1.1.12.11107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11113 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11114 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11115 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11116 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11117 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11118 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11119 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11120 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11121 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11122 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11123 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11125 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11126 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11128 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11129 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11142 = Counter64: 20057365 +.1.3.6.1.2.1.31.1.1.1.12.11143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11144 = Counter64: 464825756 +.1.3.6.1.2.1.31.1.1.1.12.11145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11147 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11148 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11151 = Counter64: 22081093 +.1.3.6.1.2.1.31.1.1.1.12.11152 = Counter64: 15577553 +.1.3.6.1.2.1.31.1.1.1.12.14002 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.181 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.5001 = Counter64: 67235971 +.1.3.6.1.2.1.31.1.1.1.13.10101 = Counter64: 935766779 +.1.3.6.1.2.1.31.1.1.1.13.10102 = Counter64: 937774684 +.1.3.6.1.2.1.31.1.1.1.13.10103 = Counter64: 937491671 +.1.3.6.1.2.1.31.1.1.1.13.10104 = Counter64: 937972103 +.1.3.6.1.2.1.31.1.1.1.13.10105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10106 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10113 = Counter64: 463454081 +.1.3.6.1.2.1.31.1.1.1.13.10114 = Counter64: 463398173 +.1.3.6.1.2.1.31.1.1.1.13.10115 = Counter64: 461417122 +.1.3.6.1.2.1.31.1.1.1.13.10116 = Counter64: 463352241 +.1.3.6.1.2.1.31.1.1.1.13.10117 = Counter64: 462760760 +.1.3.6.1.2.1.31.1.1.1.13.10118 = Counter64: 462407823 +.1.3.6.1.2.1.31.1.1.1.13.10119 = Counter64: 462394753 +.1.3.6.1.2.1.31.1.1.1.13.10120 = Counter64: 461836560 +.1.3.6.1.2.1.31.1.1.1.13.10121 = Counter64: 463079740 +.1.3.6.1.2.1.31.1.1.1.13.10122 = Counter64: 463040841 +.1.3.6.1.2.1.31.1.1.1.13.10123 = Counter64: 462463839 +.1.3.6.1.2.1.31.1.1.1.13.10124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10125 = Counter64: 457063828 +.1.3.6.1.2.1.31.1.1.1.13.10126 = Counter64: 465298212 +.1.3.6.1.2.1.31.1.1.1.13.10127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10128 = Counter64: 463129196 +.1.3.6.1.2.1.31.1.1.1.13.10129 = Counter64: 463437557 +.1.3.6.1.2.1.31.1.1.1.13.10130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10142 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10144 = Counter64: 178336044 +.1.3.6.1.2.1.31.1.1.1.13.10145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10147 = Counter64: 938150783 +.1.3.6.1.2.1.31.1.1.1.13.10148 = Counter64: 939478035 +.1.3.6.1.2.1.31.1.1.1.13.10149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10151 = Counter64: 13667021 +.1.3.6.1.2.1.31.1.1.1.13.10152 = Counter64: 8549893 +.1.3.6.1.2.1.31.1.1.1.13.10601 = Counter64: 465709823 +.1.3.6.1.2.1.31.1.1.1.13.10602 = Counter64: 465925338 +.1.3.6.1.2.1.31.1.1.1.13.10603 = Counter64: 461976951 +.1.3.6.1.2.1.31.1.1.1.13.10604 = Counter64: 614194 +.1.3.6.1.2.1.31.1.1.1.13.10605 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10606 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10607 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10609 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10610 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10611 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10612 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10613 = Counter64: 59638950 +.1.3.6.1.2.1.31.1.1.1.13.10614 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10615 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10616 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10617 = Counter64: 462341096 +.1.3.6.1.2.1.31.1.1.1.13.10618 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10619 = Counter64: 465719267 +.1.3.6.1.2.1.31.1.1.1.13.10620 = Counter64: 466393569 +.1.3.6.1.2.1.31.1.1.1.13.10621 = Counter64: 462475044 +.1.3.6.1.2.1.31.1.1.1.13.10622 = Counter64: 460866594 +.1.3.6.1.2.1.31.1.1.1.13.10623 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10624 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10625 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10626 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10627 = Counter64: 464841594 +.1.3.6.1.2.1.31.1.1.1.13.10628 = Counter64: 465001968 +.1.3.6.1.2.1.31.1.1.1.13.10629 = Counter64: 459158162 +.1.3.6.1.2.1.31.1.1.1.13.10630 = Counter64: 463745839 +.1.3.6.1.2.1.31.1.1.1.13.10631 = Counter64: 458633393 +.1.3.6.1.2.1.31.1.1.1.13.10632 = Counter64: 463797139 +.1.3.6.1.2.1.31.1.1.1.13.10633 = Counter64: 462506844 +.1.3.6.1.2.1.31.1.1.1.13.10634 = Counter64: 459227630 +.1.3.6.1.2.1.31.1.1.1.13.10635 = Counter64: 459237285 +.1.3.6.1.2.1.31.1.1.1.13.10636 = Counter64: 459286113 +.1.3.6.1.2.1.31.1.1.1.13.10637 = Counter64: 463946377 +.1.3.6.1.2.1.31.1.1.1.13.10638 = Counter64: 462535345 +.1.3.6.1.2.1.31.1.1.1.13.10639 = Counter64: 462533994 +.1.3.6.1.2.1.31.1.1.1.13.10640 = Counter64: 463826166 +.1.3.6.1.2.1.31.1.1.1.13.10641 = Counter64: 462531824 +.1.3.6.1.2.1.31.1.1.1.13.10642 = Counter64: 463756669 +.1.3.6.1.2.1.31.1.1.1.13.10643 = Counter64: 458685823 +.1.3.6.1.2.1.31.1.1.1.13.10644 = Counter64: 463798794 +.1.3.6.1.2.1.31.1.1.1.13.10645 = Counter64: 463312350 +.1.3.6.1.2.1.31.1.1.1.13.10646 = Counter64: 464529935 +.1.3.6.1.2.1.31.1.1.1.13.10647 = Counter64: 459883076 +.1.3.6.1.2.1.31.1.1.1.13.10648 = Counter64: 460780421 +.1.3.6.1.2.1.31.1.1.1.13.10649 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10650 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10651 = Counter64: 15153754 +.1.3.6.1.2.1.31.1.1.1.13.10652 = Counter64: 8462413 +.1.3.6.1.2.1.31.1.1.1.13.11101 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11102 = Counter64: 462552078 +.1.3.6.1.2.1.31.1.1.1.13.11103 = Counter64: 463823438 +.1.3.6.1.2.1.31.1.1.1.13.11104 = Counter64: 458705837 +.1.3.6.1.2.1.31.1.1.1.13.11105 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11106 = Counter64: 116024793 +.1.3.6.1.2.1.31.1.1.1.13.11107 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11108 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11109 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11110 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11111 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11112 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11113 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11114 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11115 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11116 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11117 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11118 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11119 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11120 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11121 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11122 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11123 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11124 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11125 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11126 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11127 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11128 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11129 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11130 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11131 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11132 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11133 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11134 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11135 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11136 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11137 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11138 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11139 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11140 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11141 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11142 = Counter64: 466579659 +.1.3.6.1.2.1.31.1.1.1.13.11143 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11144 = Counter64: 178485660 +.1.3.6.1.2.1.31.1.1.1.13.11145 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11146 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11147 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11148 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11149 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11150 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11151 = Counter64: 17604869 +.1.3.6.1.2.1.31.1.1.1.13.11152 = Counter64: 3798026 +.1.3.6.1.2.1.31.1.1.1.13.14002 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.14.1 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.181 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.5001 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.5180 = INTEGER: disabled(2) +.1.3.6.1.2.1.31.1.1.1.14.5181 = INTEGER: disabled(2) +.1.3.6.1.2.1.31.1.1.1.14.5183 = INTEGER: disabled(2) +.1.3.6.1.2.1.31.1.1.1.14.5184 = INTEGER: disabled(2) +.1.3.6.1.2.1.31.1.1.1.14.5186 = INTEGER: disabled(2) +.1.3.6.1.2.1.31.1.1.1.14.5187 = INTEGER: disabled(2) +.1.3.6.1.2.1.31.1.1.1.14.10101 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10102 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10103 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10104 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10105 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10106 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10107 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10108 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10109 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10110 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10111 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10112 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10113 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10114 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10115 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10116 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10117 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10118 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10119 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10120 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10121 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10122 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10123 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10124 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10125 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10126 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10127 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10128 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10129 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10130 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10131 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10132 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10133 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10134 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10135 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10136 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10137 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10138 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10139 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10140 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10141 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10142 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10143 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10144 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10145 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10146 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10147 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10148 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10149 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10150 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10151 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10152 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10601 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10602 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10603 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10604 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10605 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10606 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10607 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10608 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10609 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10610 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10611 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10612 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10613 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10614 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10615 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10616 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10617 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10618 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10619 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10620 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10621 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10622 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10623 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10624 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10625 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10626 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10627 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10628 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10629 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10630 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10631 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10632 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10633 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10634 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10635 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10636 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10637 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10638 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10639 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10640 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10641 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10642 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10643 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10644 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10645 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10646 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10647 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10648 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10649 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10650 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10651 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.10652 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11101 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11102 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11103 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11104 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11105 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11106 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11107 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11108 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11109 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11110 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11111 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11112 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11113 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11114 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11115 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11116 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11117 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11118 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11119 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11120 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11121 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11122 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11123 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11124 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11125 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11126 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11127 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11128 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11129 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11130 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11131 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11132 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11133 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11134 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11135 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11136 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11137 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11138 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11139 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11140 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11141 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11142 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11143 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11144 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11145 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11146 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11147 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11148 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11149 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11150 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11151 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.11152 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.14001 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.14.14002 = INTEGER: enabled(1) +.1.3.6.1.2.1.31.1.1.1.15.1 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.181 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.5001 = Gauge32: 6000 +.1.3.6.1.2.1.31.1.1.1.15.5179 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5180 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5181 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5182 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5183 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5184 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5185 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5186 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5187 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.10101 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10102 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10103 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10104 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10105 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10106 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10107 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10108 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10109 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10110 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10111 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10112 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10113 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10114 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10115 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10116 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10117 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10118 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10119 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10120 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10121 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10122 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10123 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10124 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10125 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10126 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10127 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10128 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10129 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10130 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10131 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10132 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10133 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10134 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10135 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10136 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10137 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10138 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10139 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10140 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10141 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10142 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10143 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10144 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10145 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10146 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10147 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10148 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10149 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10150 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10151 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10152 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10601 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10602 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10603 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10604 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10605 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10606 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10607 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10608 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10609 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10610 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10611 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10612 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10613 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10614 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10615 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10616 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10617 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10618 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10619 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10620 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10621 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10622 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10623 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10624 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10625 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10626 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10627 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10628 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10629 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10630 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10631 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10632 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10633 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10634 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10635 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10636 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10637 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10638 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10639 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10640 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10641 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10642 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10643 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10644 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10645 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10646 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10647 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10648 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.10649 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10650 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.10651 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.10652 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11101 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11102 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.11103 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11104 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11105 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11106 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11107 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11108 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11109 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11110 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11111 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11112 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11113 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11114 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11115 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11116 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11117 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11118 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11119 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11120 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11121 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11122 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11123 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11124 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11125 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11126 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11127 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11128 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11129 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11130 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11131 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11132 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11133 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11134 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11135 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11136 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11137 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11138 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11139 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11140 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11141 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11142 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.15.11143 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11144 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11145 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11146 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11147 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11148 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11149 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11150 = Gauge32: 10 +.1.3.6.1.2.1.31.1.1.1.15.11151 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.11152 = Gauge32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.14001 = Gauge32: 10000 +.1.3.6.1.2.1.31.1.1.1.15.14002 = Gauge32: 100 +.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.181 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5001 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5179 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5180 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5181 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5182 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5183 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5184 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5185 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5186 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.5187 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10101 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10102 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10103 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10104 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10105 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10106 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10107 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10108 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10109 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10110 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10111 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10112 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10113 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10114 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10115 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10116 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10117 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10118 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10119 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10120 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10121 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10122 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10123 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10124 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10125 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10126 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10127 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10128 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10129 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10130 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10131 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10132 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10133 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10134 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10135 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10136 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10137 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10138 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10139 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10140 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10141 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10142 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10143 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10144 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10145 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10146 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10147 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10148 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10149 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10150 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10151 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10152 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10601 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10602 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10603 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10604 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10605 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10606 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10607 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10608 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10609 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10610 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10611 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10612 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10613 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10614 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10615 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10616 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10617 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10618 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10619 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10620 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10621 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10622 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10623 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10624 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10625 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10626 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10627 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10628 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10629 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10630 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10631 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10632 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10633 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10634 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10635 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10636 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10637 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10638 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10639 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10640 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10641 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10642 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10643 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10644 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10645 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10646 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10647 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10648 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10649 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10650 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10651 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.10652 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11101 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11102 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11103 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11104 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11105 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11106 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11107 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11108 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11109 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11110 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11111 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11112 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11113 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11114 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11115 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11116 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11117 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11118 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11119 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11120 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11121 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11122 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11123 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11124 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11125 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11126 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11127 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11128 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11129 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11130 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11131 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11132 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11133 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11134 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11135 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11136 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11137 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11138 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11139 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11140 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11141 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11142 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11143 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11144 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11145 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11146 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11147 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11148 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11149 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11150 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11151 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.11152 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.14001 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.14002 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.1 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.181 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.5001 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.5179 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.5180 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.5181 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.5182 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.5183 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.5184 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.5185 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.5186 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.5187 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10101 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10102 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10103 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10104 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10105 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10106 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10107 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10108 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10109 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10110 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10111 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10112 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10113 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10114 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10115 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10116 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10117 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10118 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10119 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10120 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10121 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10122 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10123 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10124 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10125 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10126 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10127 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10128 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10129 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10130 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10131 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10132 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10133 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10134 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10135 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10136 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10137 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10138 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10139 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10140 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10141 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10142 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10143 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10144 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10145 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10146 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10147 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10148 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10149 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10150 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10151 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10152 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10601 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10602 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10603 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10604 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10605 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10606 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10607 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10608 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10609 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10610 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10611 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10612 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10613 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10614 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10615 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10616 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10617 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10618 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10619 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10620 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10621 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10622 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10623 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10624 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10625 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10626 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10627 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10628 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10629 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10630 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10631 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10632 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10633 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10634 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10635 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10636 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10637 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10638 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10639 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10640 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10641 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10642 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10643 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10644 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10645 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10646 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10647 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10648 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10649 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10650 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10651 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.10652 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11101 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11102 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11103 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11104 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11105 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11106 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11107 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11108 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11109 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11110 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11111 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11112 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11113 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11114 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11115 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11116 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11117 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11118 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11119 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11120 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11121 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11122 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11123 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11124 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11125 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11126 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11127 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11128 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11129 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11130 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11131 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11132 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11133 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11134 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11135 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11136 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11137 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11138 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11139 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11140 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11141 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11142 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11143 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11144 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11145 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11146 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11147 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11148 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11149 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11150 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11151 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.11152 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.14001 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.17.14002 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.18.1 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.181 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5001 = STRING: Anonymized 231 +.1.3.6.1.2.1.31.1.1.1.18.5179 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5180 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5181 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5182 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5183 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5184 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5185 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5186 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.5187 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10101 = STRING: Anonymized 018 +.1.3.6.1.2.1.31.1.1.1.18.10102 = STRING: Anonymized 206 +.1.3.6.1.2.1.31.1.1.1.18.10103 = STRING: Anonymized 035 +.1.3.6.1.2.1.31.1.1.1.18.10104 = STRING: Anonymized 167 +.1.3.6.1.2.1.31.1.1.1.18.10105 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10106 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10107 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10108 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10109 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10110 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10111 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10112 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10113 = STRING: Anonymized 105 +.1.3.6.1.2.1.31.1.1.1.18.10114 = STRING: Anonymized 102 +.1.3.6.1.2.1.31.1.1.1.18.10115 = STRING: Anonymized 121 +.1.3.6.1.2.1.31.1.1.1.18.10116 = STRING: Anonymized 194 +.1.3.6.1.2.1.31.1.1.1.18.10117 = STRING: Anonymized 039 +.1.3.6.1.2.1.31.1.1.1.18.10118 = STRING: Anonymized 064 +.1.3.6.1.2.1.31.1.1.1.18.10119 = STRING: Anonymized 136 +.1.3.6.1.2.1.31.1.1.1.18.10120 = STRING: Anonymized 083 +.1.3.6.1.2.1.31.1.1.1.18.10121 = STRING: Anonymized 055 +.1.3.6.1.2.1.31.1.1.1.18.10122 = STRING: Anonymized 138 +.1.3.6.1.2.1.31.1.1.1.18.10123 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.18.10124 = STRING: Anonymized 063 +.1.3.6.1.2.1.31.1.1.1.18.10125 = STRING: Anonymized 092 +.1.3.6.1.2.1.31.1.1.1.18.10126 = STRING: Anonymized 091 +.1.3.6.1.2.1.31.1.1.1.18.10127 = STRING: Anonymized 248 +.1.3.6.1.2.1.31.1.1.1.18.10128 = STRING: Anonymized 032 +.1.3.6.1.2.1.31.1.1.1.18.10129 = STRING: Anonymized 136 +.1.3.6.1.2.1.31.1.1.1.18.10130 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10131 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10132 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10133 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10134 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10135 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10136 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10137 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10138 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10139 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10140 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10141 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10142 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10143 = STRING: Anonymized 162 +.1.3.6.1.2.1.31.1.1.1.18.10144 = STRING: Anonymized 064 +.1.3.6.1.2.1.31.1.1.1.18.10145 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10146 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10147 = STRING: Anonymized 067 +.1.3.6.1.2.1.31.1.1.1.18.10148 = STRING: Anonymized 075 +.1.3.6.1.2.1.31.1.1.1.18.10149 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10150 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10151 = STRING: Anonymized 246 +.1.3.6.1.2.1.31.1.1.1.18.10152 = STRING: Anonymized 007 +.1.3.6.1.2.1.31.1.1.1.18.10601 = STRING: Anonymized 084 +.1.3.6.1.2.1.31.1.1.1.18.10602 = STRING: Anonymized 170 +.1.3.6.1.2.1.31.1.1.1.18.10603 = STRING: Anonymized 254 +.1.3.6.1.2.1.31.1.1.1.18.10604 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10605 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10606 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10607 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10608 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10609 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10610 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10611 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10612 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10613 = STRING: Anonymized 029 +.1.3.6.1.2.1.31.1.1.1.18.10614 = STRING: Anonymized 011 +.1.3.6.1.2.1.31.1.1.1.18.10615 = STRING: Anonymized 045 +.1.3.6.1.2.1.31.1.1.1.18.10616 = STRING: Anonymized 067 +.1.3.6.1.2.1.31.1.1.1.18.10617 = STRING: Anonymized 154 +.1.3.6.1.2.1.31.1.1.1.18.10618 = STRING: Anonymized 176 +.1.3.6.1.2.1.31.1.1.1.18.10619 = STRING: Anonymized 148 +.1.3.6.1.2.1.31.1.1.1.18.10620 = STRING: Anonymized 043 +.1.3.6.1.2.1.31.1.1.1.18.10621 = STRING: Anonymized 230 +.1.3.6.1.2.1.31.1.1.1.18.10622 = STRING: Anonymized 107 +.1.3.6.1.2.1.31.1.1.1.18.10623 = STRING: Anonymized 067 +.1.3.6.1.2.1.31.1.1.1.18.10624 = STRING: Anonymized 250 +.1.3.6.1.2.1.31.1.1.1.18.10625 = STRING: Anonymized 146 +.1.3.6.1.2.1.31.1.1.1.18.10626 = STRING: Anonymized 213 +.1.3.6.1.2.1.31.1.1.1.18.10627 = STRING: Anonymized 040 +.1.3.6.1.2.1.31.1.1.1.18.10628 = STRING: Anonymized 052 +.1.3.6.1.2.1.31.1.1.1.18.10629 = STRING: Anonymized 218 +.1.3.6.1.2.1.31.1.1.1.18.10630 = STRING: Anonymized 006 +.1.3.6.1.2.1.31.1.1.1.18.10631 = STRING: Anonymized 234 +.1.3.6.1.2.1.31.1.1.1.18.10632 = STRING: Anonymized 088 +.1.3.6.1.2.1.31.1.1.1.18.10633 = STRING: Anonymized 063 +.1.3.6.1.2.1.31.1.1.1.18.10634 = STRING: Anonymized 031 +.1.3.6.1.2.1.31.1.1.1.18.10635 = STRING: Anonymized 108 +.1.3.6.1.2.1.31.1.1.1.18.10636 = STRING: Anonymized 246 +.1.3.6.1.2.1.31.1.1.1.18.10637 = STRING: Anonymized 188 +.1.3.6.1.2.1.31.1.1.1.18.10638 = STRING: Anonymized 114 +.1.3.6.1.2.1.31.1.1.1.18.10639 = STRING: Anonymized 129 +.1.3.6.1.2.1.31.1.1.1.18.10640 = STRING: Anonymized 109 +.1.3.6.1.2.1.31.1.1.1.18.10641 = STRING: Anonymized 169 +.1.3.6.1.2.1.31.1.1.1.18.10642 = STRING: Anonymized 103 +.1.3.6.1.2.1.31.1.1.1.18.10643 = STRING: Anonymized 044 +.1.3.6.1.2.1.31.1.1.1.18.10644 = STRING: Anonymized 035 +.1.3.6.1.2.1.31.1.1.1.18.10645 = STRING: Anonymized 223 +.1.3.6.1.2.1.31.1.1.1.18.10646 = STRING: Anonymized 242 +.1.3.6.1.2.1.31.1.1.1.18.10647 = STRING: Anonymized 218 +.1.3.6.1.2.1.31.1.1.1.18.10648 = STRING: Anonymized 055 +.1.3.6.1.2.1.31.1.1.1.18.10649 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10650 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.10651 = STRING: Anonymized 246 +.1.3.6.1.2.1.31.1.1.1.18.10652 = STRING: Anonymized 161 +.1.3.6.1.2.1.31.1.1.1.18.11101 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11102 = STRING: Anonymized 230 +.1.3.6.1.2.1.31.1.1.1.18.11103 = STRING: Anonymized 174 +.1.3.6.1.2.1.31.1.1.1.18.11104 = STRING: Anonymized 091 +.1.3.6.1.2.1.31.1.1.1.18.11105 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11106 = STRING: Anonymized 055 +.1.3.6.1.2.1.31.1.1.1.18.11107 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11108 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11109 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11110 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11111 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11112 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11113 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11114 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11115 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11116 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11117 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11118 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11119 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11120 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11121 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11122 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11123 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11124 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11125 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11126 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11127 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11128 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11129 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11130 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11131 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11132 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11133 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11134 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11135 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11136 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11137 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11138 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11139 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11140 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11141 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11142 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11143 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11144 = STRING: Anonymized 121 +.1.3.6.1.2.1.31.1.1.1.18.11145 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11146 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11147 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11148 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11149 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11150 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.11151 = STRING: Anonymized 122 +.1.3.6.1.2.1.31.1.1.1.18.11152 = STRING: Anonymized 178 +.1.3.6.1.2.1.31.1.1.1.18.14001 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.14002 = STRING: +.1.3.6.1.2.1.31.1.1.1.19.1 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.181 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5001 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5179 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5180 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5181 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5182 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5183 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5184 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5185 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5186 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.5187 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10101 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10102 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10103 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10104 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10105 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10106 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10107 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10108 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10109 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10110 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10111 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10112 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10113 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10114 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10115 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10116 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10117 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10118 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10119 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10120 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10121 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10122 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10123 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10124 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10125 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10126 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10127 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10128 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10129 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10130 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10131 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10132 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10133 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10134 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10135 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10136 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10137 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10138 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10139 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10140 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10141 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10142 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10143 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10144 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10145 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10146 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10147 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10148 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10149 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10150 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10151 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10152 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10601 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10602 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10603 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10604 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10605 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10606 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10607 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10608 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10609 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10610 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10611 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10612 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10613 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10614 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10615 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10616 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10617 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10618 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10619 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10620 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10621 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10622 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10623 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10624 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10625 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10626 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10627 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10628 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10629 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10630 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10631 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10632 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10633 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10634 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10635 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10636 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10637 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10638 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10639 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10640 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10641 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10642 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10643 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10644 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10645 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10646 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10647 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10648 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10649 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10650 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10651 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.10652 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11101 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11102 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11103 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11104 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11105 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11106 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11107 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11108 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11109 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11110 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11111 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11112 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11113 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11114 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11115 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11116 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11117 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11118 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11119 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11120 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11121 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11122 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11123 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11124 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11125 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11126 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11127 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11128 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11129 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11130 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11131 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11132 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11133 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11134 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11135 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11136 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11137 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11138 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11139 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11140 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11141 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11142 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11143 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11144 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11145 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11146 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11147 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11148 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11149 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11150 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11151 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.11152 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.14001 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.14002 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.47.1.1.1.1.2.1 = STRING: Anonymized 151 +.1.3.6.1.2.1.47.1.1.1.1.2.1001 = STRING: Anonymized 211 +.1.3.6.1.2.1.47.1.1.1.1.2.1002 = STRING: Anonymized 149 +.1.3.6.1.2.1.47.1.1.1.1.2.1003 = STRING: Anonymized 239 +.1.3.6.1.2.1.47.1.1.1.1.2.1004 = STRING: Anonymized 044 +.1.3.6.1.2.1.47.1.1.1.1.2.1005 = STRING: Anonymized 051 +.1.3.6.1.2.1.47.1.1.1.1.2.1006 = STRING: Anonymized 131 +.1.3.6.1.2.1.47.1.1.1.1.2.1007 = STRING: Anonymized 182 +.1.3.6.1.2.1.47.1.1.1.1.2.1008 = STRING: Anonymized 110 +.1.3.6.1.2.1.47.1.1.1.1.2.1009 = STRING: Anonymized 172 +.1.3.6.1.2.1.47.1.1.1.1.2.1010 = STRING: Anonymized 179 +.1.3.6.1.2.1.47.1.1.1.1.2.1011 = STRING: Anonymized 103 +.1.3.6.1.2.1.47.1.1.1.1.2.1012 = STRING: Anonymized 064 +.1.3.6.1.2.1.47.1.1.1.1.2.1013 = STRING: Anonymized 241 +.1.3.6.1.2.1.47.1.1.1.1.2.1014 = STRING: Anonymized 078 +.1.3.6.1.2.1.47.1.1.1.1.2.1015 = STRING: Anonymized 182 +.1.3.6.1.2.1.47.1.1.1.1.2.1016 = STRING: Anonymized 022 +.1.3.6.1.2.1.47.1.1.1.1.2.1017 = STRING: Anonymized 139 +.1.3.6.1.2.1.47.1.1.1.1.2.1018 = STRING: Anonymized 148 +.1.3.6.1.2.1.47.1.1.1.1.2.1019 = STRING: Anonymized 162 +.1.3.6.1.2.1.47.1.1.1.1.2.1020 = STRING: Anonymized 248 +.1.3.6.1.2.1.47.1.1.1.1.2.1021 = STRING: Anonymized 127 +.1.3.6.1.2.1.47.1.1.1.1.2.1022 = STRING: Anonymized 147 +.1.3.6.1.2.1.47.1.1.1.1.2.1023 = STRING: Anonymized 060 +.1.3.6.1.2.1.47.1.1.1.1.2.1024 = STRING: Anonymized 161 +.1.3.6.1.2.1.47.1.1.1.1.2.1025 = STRING: Anonymized 033 +.1.3.6.1.2.1.47.1.1.1.1.2.1026 = STRING: Anonymized 056 +.1.3.6.1.2.1.47.1.1.1.1.2.1027 = STRING: Anonymized 216 +.1.3.6.1.2.1.47.1.1.1.1.2.1028 = STRING: Anonymized 091 +.1.3.6.1.2.1.47.1.1.1.1.2.1029 = STRING: Anonymized 122 +.1.3.6.1.2.1.47.1.1.1.1.2.1030 = STRING: Anonymized 058 +.1.3.6.1.2.1.47.1.1.1.1.2.1031 = STRING: Anonymized 114 +.1.3.6.1.2.1.47.1.1.1.1.2.1032 = STRING: Anonymized 253 +.1.3.6.1.2.1.47.1.1.1.1.2.1033 = STRING: Anonymized 138 +.1.3.6.1.2.1.47.1.1.1.1.2.1034 = STRING: Anonymized 099 +.1.3.6.1.2.1.47.1.1.1.1.2.1035 = STRING: Anonymized 242 +.1.3.6.1.2.1.47.1.1.1.1.2.1036 = STRING: Anonymized 210 +.1.3.6.1.2.1.47.1.1.1.1.2.1037 = STRING: Anonymized 003 +.1.3.6.1.2.1.47.1.1.1.1.2.1038 = STRING: Anonymized 060 +.1.3.6.1.2.1.47.1.1.1.1.2.1039 = STRING: Anonymized 210 +.1.3.6.1.2.1.47.1.1.1.1.2.1040 = STRING: Anonymized 144 +.1.3.6.1.2.1.47.1.1.1.1.2.1041 = STRING: Anonymized 053 +.1.3.6.1.2.1.47.1.1.1.1.2.1042 = STRING: Anonymized 029 +.1.3.6.1.2.1.47.1.1.1.1.2.1043 = STRING: Anonymized 063 +.1.3.6.1.2.1.47.1.1.1.1.2.1044 = STRING: Anonymized 207 +.1.3.6.1.2.1.47.1.1.1.1.2.1045 = STRING: Anonymized 063 +.1.3.6.1.2.1.47.1.1.1.1.2.1046 = STRING: Anonymized 045 +.1.3.6.1.2.1.47.1.1.1.1.2.1047 = STRING: Anonymized 172 +.1.3.6.1.2.1.47.1.1.1.1.2.1048 = STRING: Anonymized 136 +.1.3.6.1.2.1.47.1.1.1.1.2.1049 = STRING: Anonymized 124 +.1.3.6.1.2.1.47.1.1.1.1.2.1050 = STRING: Anonymized 110 +.1.3.6.1.2.1.47.1.1.1.1.2.1051 = STRING: Anonymized 052 +.1.3.6.1.2.1.47.1.1.1.1.2.1052 = STRING: Anonymized 119 +.1.3.6.1.2.1.47.1.1.1.1.2.1053 = STRING: Anonymized 000 +.1.3.6.1.2.1.47.1.1.1.1.2.1054 = STRING: Anonymized 170 +.1.3.6.1.2.1.47.1.1.1.1.2.1055 = STRING: Anonymized 071 +.1.3.6.1.2.1.47.1.1.1.1.2.1056 = STRING: Anonymized 170 +.1.3.6.1.2.1.47.1.1.1.1.2.1057 = STRING: Anonymized 246 +.1.3.6.1.2.1.47.1.1.1.1.2.1058 = STRING: Anonymized 201 +.1.3.6.1.2.1.47.1.1.1.1.2.1059 = STRING: Anonymized 120 +.1.3.6.1.2.1.47.1.1.1.1.2.1060 = STRING: Anonymized 209 +.1.3.6.1.2.1.47.1.1.1.1.2.1061 = STRING: Anonymized 202 +.1.3.6.1.2.1.47.1.1.1.1.2.1062 = STRING: Anonymized 011 +.1.3.6.1.2.1.47.1.1.1.1.2.1063 = STRING: Anonymized 202 +.1.3.6.1.2.1.47.1.1.1.1.2.1064 = STRING: Anonymized 226 +.1.3.6.1.2.1.47.1.1.1.1.2.1065 = STRING: Anonymized 192 +.1.3.6.1.2.1.47.1.1.1.1.2.1066 = STRING: Anonymized 134 +.1.3.6.1.2.1.47.1.1.1.1.2.1067 = STRING: Anonymized 053 +.1.3.6.1.2.1.47.1.1.1.1.2.1068 = STRING: Anonymized 082 +.1.3.6.1.2.1.47.1.1.1.1.2.1069 = STRING: Anonymized 195 +.1.3.6.1.2.1.47.1.1.1.1.2.1070 = STRING: Anonymized 236 +.1.3.6.1.2.1.47.1.1.1.1.2.1071 = STRING: Anonymized 078 +.1.3.6.1.2.1.47.1.1.1.1.2.1072 = STRING: Anonymized 163 +.1.3.6.1.2.1.47.1.1.1.1.2.1073 = STRING: Anonymized 099 +.1.3.6.1.2.1.47.1.1.1.1.2.1074 = STRING: Anonymized 037 +.1.3.6.1.2.1.47.1.1.1.1.2.1075 = STRING: Anonymized 067 +.1.3.6.1.2.1.47.1.1.1.1.2.1076 = STRING: Anonymized 024 +.1.3.6.1.2.1.47.1.1.1.1.2.1077 = STRING: Anonymized 007 +.1.3.6.1.2.1.47.1.1.1.1.2.2001 = STRING: Anonymized 249 +.1.3.6.1.2.1.47.1.1.1.1.2.2002 = STRING: Anonymized 077 +.1.3.6.1.2.1.47.1.1.1.1.2.2003 = STRING: Anonymized 171 +.1.3.6.1.2.1.47.1.1.1.1.2.2004 = STRING: Anonymized 003 +.1.3.6.1.2.1.47.1.1.1.1.2.2005 = STRING: Anonymized 107 +.1.3.6.1.2.1.47.1.1.1.1.2.2006 = STRING: Anonymized 067 +.1.3.6.1.2.1.47.1.1.1.1.2.2007 = STRING: Anonymized 167 +.1.3.6.1.2.1.47.1.1.1.1.2.2008 = STRING: Anonymized 225 +.1.3.6.1.2.1.47.1.1.1.1.2.2009 = STRING: Anonymized 126 +.1.3.6.1.2.1.47.1.1.1.1.2.2010 = STRING: Anonymized 176 +.1.3.6.1.2.1.47.1.1.1.1.2.2011 = STRING: Anonymized 064 +.1.3.6.1.2.1.47.1.1.1.1.2.2012 = STRING: Anonymized 210 +.1.3.6.1.2.1.47.1.1.1.1.2.2013 = STRING: Anonymized 070 +.1.3.6.1.2.1.47.1.1.1.1.2.2014 = STRING: Anonymized 240 +.1.3.6.1.2.1.47.1.1.1.1.2.2015 = STRING: Anonymized 107 +.1.3.6.1.2.1.47.1.1.1.1.2.2016 = STRING: Anonymized 107 +.1.3.6.1.2.1.47.1.1.1.1.2.2017 = STRING: Anonymized 103 +.1.3.6.1.2.1.47.1.1.1.1.2.2018 = STRING: Anonymized 017 +.1.3.6.1.2.1.47.1.1.1.1.2.2019 = STRING: Anonymized 095 +.1.3.6.1.2.1.47.1.1.1.1.2.2020 = STRING: Anonymized 153 +.1.3.6.1.2.1.47.1.1.1.1.2.2021 = STRING: Anonymized 211 +.1.3.6.1.2.1.47.1.1.1.1.2.2022 = STRING: Anonymized 224 +.1.3.6.1.2.1.47.1.1.1.1.2.2023 = STRING: Anonymized 046 +.1.3.6.1.2.1.47.1.1.1.1.2.2024 = STRING: Anonymized 135 +.1.3.6.1.2.1.47.1.1.1.1.2.2025 = STRING: Anonymized 138 +.1.3.6.1.2.1.47.1.1.1.1.2.2026 = STRING: Anonymized 082 +.1.3.6.1.2.1.47.1.1.1.1.2.2027 = STRING: Anonymized 117 +.1.3.6.1.2.1.47.1.1.1.1.2.2028 = STRING: Anonymized 169 +.1.3.6.1.2.1.47.1.1.1.1.2.2029 = STRING: Anonymized 093 +.1.3.6.1.2.1.47.1.1.1.1.2.2030 = STRING: Anonymized 196 +.1.3.6.1.2.1.47.1.1.1.1.2.2031 = STRING: Anonymized 062 +.1.3.6.1.2.1.47.1.1.1.1.2.2032 = STRING: Anonymized 242 +.1.3.6.1.2.1.47.1.1.1.1.2.2033 = STRING: Anonymized 240 +.1.3.6.1.2.1.47.1.1.1.1.2.2034 = STRING: Anonymized 038 +.1.3.6.1.2.1.47.1.1.1.1.2.2035 = STRING: Anonymized 064 +.1.3.6.1.2.1.47.1.1.1.1.2.2036 = STRING: Anonymized 032 +.1.3.6.1.2.1.47.1.1.1.1.2.2037 = STRING: Anonymized 183 +.1.3.6.1.2.1.47.1.1.1.1.2.2038 = STRING: Anonymized 048 +.1.3.6.1.2.1.47.1.1.1.1.2.2039 = STRING: Anonymized 137 +.1.3.6.1.2.1.47.1.1.1.1.2.2040 = STRING: Anonymized 170 +.1.3.6.1.2.1.47.1.1.1.1.2.2041 = STRING: Anonymized 022 +.1.3.6.1.2.1.47.1.1.1.1.2.2042 = STRING: Anonymized 226 +.1.3.6.1.2.1.47.1.1.1.1.2.2043 = STRING: Anonymized 111 +.1.3.6.1.2.1.47.1.1.1.1.2.2044 = STRING: Anonymized 093 +.1.3.6.1.2.1.47.1.1.1.1.2.2045 = STRING: Anonymized 136 +.1.3.6.1.2.1.47.1.1.1.1.2.2046 = STRING: Anonymized 249 +.1.3.6.1.2.1.47.1.1.1.1.2.2047 = STRING: Anonymized 245 +.1.3.6.1.2.1.47.1.1.1.1.2.2048 = STRING: Anonymized 150 +.1.3.6.1.2.1.47.1.1.1.1.2.2049 = STRING: Anonymized 243 +.1.3.6.1.2.1.47.1.1.1.1.2.2050 = STRING: Anonymized 033 +.1.3.6.1.2.1.47.1.1.1.1.2.2051 = STRING: Anonymized 094 +.1.3.6.1.2.1.47.1.1.1.1.2.2052 = STRING: Anonymized 084 +.1.3.6.1.2.1.47.1.1.1.1.2.2053 = STRING: Anonymized 128 +.1.3.6.1.2.1.47.1.1.1.1.2.2054 = STRING: Anonymized 227 +.1.3.6.1.2.1.47.1.1.1.1.2.2055 = STRING: Anonymized 233 +.1.3.6.1.2.1.47.1.1.1.1.2.2056 = STRING: Anonymized 075 +.1.3.6.1.2.1.47.1.1.1.1.2.2057 = STRING: Anonymized 100 +.1.3.6.1.2.1.47.1.1.1.1.2.2058 = STRING: Anonymized 137 +.1.3.6.1.2.1.47.1.1.1.1.2.2059 = STRING: Anonymized 210 +.1.3.6.1.2.1.47.1.1.1.1.2.2060 = STRING: Anonymized 206 +.1.3.6.1.2.1.47.1.1.1.1.2.2061 = STRING: Anonymized 227 +.1.3.6.1.2.1.47.1.1.1.1.2.2062 = STRING: Anonymized 251 +.1.3.6.1.2.1.47.1.1.1.1.2.2063 = STRING: Anonymized 232 +.1.3.6.1.2.1.47.1.1.1.1.2.2064 = STRING: Anonymized 078 +.1.3.6.1.2.1.47.1.1.1.1.2.2065 = STRING: Anonymized 245 +.1.3.6.1.2.1.47.1.1.1.1.2.2066 = STRING: Anonymized 054 +.1.3.6.1.2.1.47.1.1.1.1.2.2067 = STRING: Anonymized 185 +.1.3.6.1.2.1.47.1.1.1.1.2.2068 = STRING: Anonymized 250 +.1.3.6.1.2.1.47.1.1.1.1.2.2069 = STRING: Anonymized 073 +.1.3.6.1.2.1.47.1.1.1.1.2.2070 = STRING: Anonymized 157 +.1.3.6.1.2.1.47.1.1.1.1.2.2071 = STRING: Anonymized 031 +.1.3.6.1.2.1.47.1.1.1.1.2.2072 = STRING: Anonymized 023 +.1.3.6.1.2.1.47.1.1.1.1.2.2073 = STRING: Anonymized 092 +.1.3.6.1.2.1.47.1.1.1.1.2.2074 = STRING: Anonymized 058 +.1.3.6.1.2.1.47.1.1.1.1.2.2075 = STRING: Anonymized 123 +.1.3.6.1.2.1.47.1.1.1.1.2.2076 = STRING: Anonymized 226 +.1.3.6.1.2.1.47.1.1.1.1.2.2077 = STRING: Anonymized 049 +.1.3.6.1.2.1.47.1.1.1.1.2.3001 = STRING: Anonymized 086 +.1.3.6.1.2.1.47.1.1.1.1.2.3002 = STRING: Anonymized 190 +.1.3.6.1.2.1.47.1.1.1.1.2.3003 = STRING: Anonymized 170 +.1.3.6.1.2.1.47.1.1.1.1.2.3004 = STRING: Anonymized 068 +.1.3.6.1.2.1.47.1.1.1.1.2.3005 = STRING: Anonymized 139 +.1.3.6.1.2.1.47.1.1.1.1.2.3006 = STRING: Anonymized 189 +.1.3.6.1.2.1.47.1.1.1.1.2.3007 = STRING: Anonymized 187 +.1.3.6.1.2.1.47.1.1.1.1.2.3008 = STRING: Anonymized 048 +.1.3.6.1.2.1.47.1.1.1.1.2.3009 = STRING: Anonymized 148 +.1.3.6.1.2.1.47.1.1.1.1.2.3010 = STRING: Anonymized 105 +.1.3.6.1.2.1.47.1.1.1.1.2.3011 = STRING: Anonymized 043 +.1.3.6.1.2.1.47.1.1.1.1.2.3012 = STRING: Anonymized 183 +.1.3.6.1.2.1.47.1.1.1.1.2.3013 = STRING: Anonymized 064 +.1.3.6.1.2.1.47.1.1.1.1.2.3014 = STRING: Anonymized 164 +.1.3.6.1.2.1.47.1.1.1.1.2.3015 = STRING: Anonymized 246 +.1.3.6.1.2.1.47.1.1.1.1.2.3016 = STRING: Anonymized 064 +.1.3.6.1.2.1.47.1.1.1.1.2.3017 = STRING: Anonymized 129 +.1.3.6.1.2.1.47.1.1.1.1.2.3018 = STRING: Anonymized 092 +.1.3.6.1.2.1.47.1.1.1.1.2.3019 = STRING: Anonymized 056 +.1.3.6.1.2.1.47.1.1.1.1.2.3020 = STRING: Anonymized 143 +.1.3.6.1.2.1.47.1.1.1.1.2.3021 = STRING: Anonymized 165 +.1.3.6.1.2.1.47.1.1.1.1.2.3022 = STRING: Anonymized 056 +.1.3.6.1.2.1.47.1.1.1.1.2.3023 = STRING: Anonymized 039 +.1.3.6.1.2.1.47.1.1.1.1.2.3024 = STRING: Anonymized 186 +.1.3.6.1.2.1.47.1.1.1.1.2.3025 = STRING: Anonymized 000 +.1.3.6.1.2.1.47.1.1.1.1.2.3026 = STRING: Anonymized 095 +.1.3.6.1.2.1.47.1.1.1.1.2.3027 = STRING: Anonymized 135 +.1.3.6.1.2.1.47.1.1.1.1.2.3028 = STRING: Anonymized 003 +.1.3.6.1.2.1.47.1.1.1.1.2.3029 = STRING: Anonymized 086 +.1.3.6.1.2.1.47.1.1.1.1.2.3030 = STRING: Anonymized 068 +.1.3.6.1.2.1.47.1.1.1.1.2.3031 = STRING: Anonymized 247 +.1.3.6.1.2.1.47.1.1.1.1.2.3032 = STRING: Anonymized 232 +.1.3.6.1.2.1.47.1.1.1.1.2.3033 = STRING: Anonymized 155 +.1.3.6.1.2.1.47.1.1.1.1.2.3034 = STRING: Anonymized 067 +.1.3.6.1.2.1.47.1.1.1.1.2.3035 = STRING: Anonymized 167 +.1.3.6.1.2.1.47.1.1.1.1.2.3036 = STRING: Anonymized 244 +.1.3.6.1.2.1.47.1.1.1.1.2.3037 = STRING: Anonymized 042 +.1.3.6.1.2.1.47.1.1.1.1.2.3038 = STRING: Anonymized 184 +.1.3.6.1.2.1.47.1.1.1.1.2.3039 = STRING: Anonymized 119 +.1.3.6.1.2.1.47.1.1.1.1.2.3040 = STRING: Anonymized 131 +.1.3.6.1.2.1.47.1.1.1.1.2.3041 = STRING: Anonymized 001 +.1.3.6.1.2.1.47.1.1.1.1.2.3042 = STRING: Anonymized 148 +.1.3.6.1.2.1.47.1.1.1.1.2.3043 = STRING: Anonymized 216 +.1.3.6.1.2.1.47.1.1.1.1.2.3044 = STRING: Anonymized 149 +.1.3.6.1.2.1.47.1.1.1.1.2.3045 = STRING: Anonymized 228 +.1.3.6.1.2.1.47.1.1.1.1.2.3046 = STRING: Anonymized 211 +.1.3.6.1.2.1.47.1.1.1.1.2.3047 = STRING: Anonymized 220 +.1.3.6.1.2.1.47.1.1.1.1.2.3048 = STRING: Anonymized 167 +.1.3.6.1.2.1.47.1.1.1.1.2.3049 = STRING: Anonymized 130 +.1.3.6.1.2.1.47.1.1.1.1.2.3050 = STRING: Anonymized 125 +.1.3.6.1.2.1.47.1.1.1.1.2.3051 = STRING: Anonymized 037 +.1.3.6.1.2.1.47.1.1.1.1.2.3052 = STRING: Anonymized 193 +.1.3.6.1.2.1.47.1.1.1.1.2.3053 = STRING: Anonymized 206 +.1.3.6.1.2.1.47.1.1.1.1.2.3054 = STRING: Anonymized 084 +.1.3.6.1.2.1.47.1.1.1.1.2.3055 = STRING: Anonymized 169 +.1.3.6.1.2.1.47.1.1.1.1.2.3056 = STRING: Anonymized 235 +.1.3.6.1.2.1.47.1.1.1.1.2.3057 = STRING: Anonymized 022 +.1.3.6.1.2.1.47.1.1.1.1.2.3058 = STRING: Anonymized 070 +.1.3.6.1.2.1.47.1.1.1.1.2.3059 = STRING: Anonymized 202 +.1.3.6.1.2.1.47.1.1.1.1.2.3060 = STRING: Anonymized 128 +.1.3.6.1.2.1.47.1.1.1.1.2.3061 = STRING: Anonymized 203 +.1.3.6.1.2.1.47.1.1.1.1.2.3062 = STRING: Anonymized 185 +.1.3.6.1.2.1.47.1.1.1.1.2.3063 = STRING: Anonymized 176 +.1.3.6.1.2.1.47.1.1.1.1.2.3064 = STRING: Anonymized 195 +.1.3.6.1.2.1.47.1.1.1.1.2.3065 = STRING: Anonymized 165 +.1.3.6.1.2.1.47.1.1.1.1.2.3066 = STRING: Anonymized 127 +.1.3.6.1.2.1.47.1.1.1.1.2.3067 = STRING: Anonymized 214 +.1.3.6.1.2.1.47.1.1.1.1.2.3068 = STRING: Anonymized 253 +.1.3.6.1.2.1.47.1.1.1.1.2.3069 = STRING: Anonymized 012 +.1.3.6.1.2.1.47.1.1.1.1.2.3070 = STRING: Anonymized 223 +.1.3.6.1.2.1.47.1.1.1.1.2.3071 = STRING: Anonymized 074 +.1.3.6.1.2.1.47.1.1.1.1.2.3072 = STRING: Anonymized 145 +.1.3.6.1.2.1.47.1.1.1.1.2.3073 = STRING: Anonymized 048 +.1.3.6.1.2.1.47.1.1.1.1.2.3074 = STRING: Anonymized 007 +.1.3.6.1.2.1.47.1.1.1.1.2.3075 = STRING: Anonymized 187 +.1.3.6.1.2.1.47.1.1.1.1.2.3076 = STRING: Anonymized 049 +.1.3.6.1.2.1.47.1.1.1.1.2.3077 = STRING: Anonymized 182 +.1.3.6.1.2.1.47.1.1.1.1.7.1 = STRING: Anonymized 090 +.1.3.6.1.2.1.47.1.1.1.1.7.1001 = STRING: Anonymized 250 +.1.3.6.1.2.1.47.1.1.1.1.7.1002 = STRING: Anonymized 090 +.1.3.6.1.2.1.47.1.1.1.1.7.1003 = STRING: Anonymized 218 +.1.3.6.1.2.1.47.1.1.1.1.7.1004 = STRING: Anonymized 174 +.1.3.6.1.2.1.47.1.1.1.1.7.1005 = STRING: Anonymized 101 +.1.3.6.1.2.1.47.1.1.1.1.7.1006 = STRING: Anonymized 208 +.1.3.6.1.2.1.47.1.1.1.1.7.1007 = STRING: Anonymized 205 +.1.3.6.1.2.1.47.1.1.1.1.7.1008 = STRING: Anonymized 230 +.1.3.6.1.2.1.47.1.1.1.1.7.1009 = STRING: Anonymized 125 +.1.3.6.1.2.1.47.1.1.1.1.7.1010 = STRING: Anonymized 232 +.1.3.6.1.2.1.47.1.1.1.1.7.1011 = STRING: Anonymized 043 +.1.3.6.1.2.1.47.1.1.1.1.7.1012 = STRING: Anonymized 210 +.1.3.6.1.2.1.47.1.1.1.1.7.1013 = STRING: Anonymized 066 +.1.3.6.1.2.1.47.1.1.1.1.7.1014 = STRING: Anonymized 021 +.1.3.6.1.2.1.47.1.1.1.1.7.1015 = STRING: Anonymized 242 +.1.3.6.1.2.1.47.1.1.1.1.7.1016 = STRING: Anonymized 091 +.1.3.6.1.2.1.47.1.1.1.1.7.1017 = STRING: Anonymized 038 +.1.3.6.1.2.1.47.1.1.1.1.7.1018 = STRING: Anonymized 053 +.1.3.6.1.2.1.47.1.1.1.1.7.1019 = STRING: Anonymized 102 +.1.3.6.1.2.1.47.1.1.1.1.7.1020 = STRING: Anonymized 125 +.1.3.6.1.2.1.47.1.1.1.1.7.1021 = STRING: Anonymized 035 +.1.3.6.1.2.1.47.1.1.1.1.7.1022 = STRING: Anonymized 010 +.1.3.6.1.2.1.47.1.1.1.1.7.1023 = STRING: Anonymized 006 +.1.3.6.1.2.1.47.1.1.1.1.7.1024 = STRING: Anonymized 237 +.1.3.6.1.2.1.47.1.1.1.1.7.1025 = STRING: Anonymized 224 +.1.3.6.1.2.1.47.1.1.1.1.7.1026 = STRING: Anonymized 014 +.1.3.6.1.2.1.47.1.1.1.1.7.1027 = STRING: Anonymized 075 +.1.3.6.1.2.1.47.1.1.1.1.7.1028 = STRING: Anonymized 118 +.1.3.6.1.2.1.47.1.1.1.1.7.1029 = STRING: Anonymized 176 +.1.3.6.1.2.1.47.1.1.1.1.7.1030 = STRING: Anonymized 155 +.1.3.6.1.2.1.47.1.1.1.1.7.1031 = STRING: Anonymized 121 +.1.3.6.1.2.1.47.1.1.1.1.7.1032 = STRING: Anonymized 230 +.1.3.6.1.2.1.47.1.1.1.1.7.1033 = STRING: Anonymized 156 +.1.3.6.1.2.1.47.1.1.1.1.7.1034 = STRING: Anonymized 227 +.1.3.6.1.2.1.47.1.1.1.1.7.1035 = STRING: Anonymized 097 +.1.3.6.1.2.1.47.1.1.1.1.7.1036 = STRING: Anonymized 195 +.1.3.6.1.2.1.47.1.1.1.1.7.1037 = STRING: Anonymized 020 +.1.3.6.1.2.1.47.1.1.1.1.7.1038 = STRING: Anonymized 053 +.1.3.6.1.2.1.47.1.1.1.1.7.1039 = STRING: Anonymized 201 +.1.3.6.1.2.1.47.1.1.1.1.7.1040 = STRING: Anonymized 078 +.1.3.6.1.2.1.47.1.1.1.1.7.1041 = STRING: Anonymized 142 +.1.3.6.1.2.1.47.1.1.1.1.7.1042 = STRING: Anonymized 038 +.1.3.6.1.2.1.47.1.1.1.1.7.1043 = STRING: Anonymized 090 +.1.3.6.1.2.1.47.1.1.1.1.7.1044 = STRING: Anonymized 243 +.1.3.6.1.2.1.47.1.1.1.1.7.1045 = STRING: Anonymized 077 +.1.3.6.1.2.1.47.1.1.1.1.7.1046 = STRING: Anonymized 237 +.1.3.6.1.2.1.47.1.1.1.1.7.1047 = STRING: Anonymized 103 +.1.3.6.1.2.1.47.1.1.1.1.7.1048 = STRING: Anonymized 138 +.1.3.6.1.2.1.47.1.1.1.1.7.1049 = STRING: Anonymized 248 +.1.3.6.1.2.1.47.1.1.1.1.7.1050 = STRING: Anonymized 086 +.1.3.6.1.2.1.47.1.1.1.1.7.1051 = STRING: Anonymized 245 +.1.3.6.1.2.1.47.1.1.1.1.7.1052 = STRING: Anonymized 101 +.1.3.6.1.2.1.47.1.1.1.1.7.1053 = STRING: Anonymized 225 +.1.3.6.1.2.1.47.1.1.1.1.7.1054 = STRING: Anonymized 140 +.1.3.6.1.2.1.47.1.1.1.1.7.1055 = STRING: Anonymized 243 +.1.3.6.1.2.1.47.1.1.1.1.7.1056 = STRING: Anonymized 051 +.1.3.6.1.2.1.47.1.1.1.1.7.1057 = STRING: Anonymized 233 +.1.3.6.1.2.1.47.1.1.1.1.7.1058 = STRING: Anonymized 213 +.1.3.6.1.2.1.47.1.1.1.1.7.1059 = STRING: Anonymized 238 +.1.3.6.1.2.1.47.1.1.1.1.7.1060 = STRING: Anonymized 148 +.1.3.6.1.2.1.47.1.1.1.1.7.1061 = STRING: Anonymized 100 +.1.3.6.1.2.1.47.1.1.1.1.7.1062 = STRING: Anonymized 195 +.1.3.6.1.2.1.47.1.1.1.1.7.1063 = STRING: Anonymized 140 +.1.3.6.1.2.1.47.1.1.1.1.7.1064 = STRING: Anonymized 028 +.1.3.6.1.2.1.47.1.1.1.1.7.1065 = STRING: Anonymized 131 +.1.3.6.1.2.1.47.1.1.1.1.7.1066 = STRING: Anonymized 209 +.1.3.6.1.2.1.47.1.1.1.1.7.1067 = STRING: Anonymized 240 +.1.3.6.1.2.1.47.1.1.1.1.7.1068 = STRING: Anonymized 239 +.1.3.6.1.2.1.47.1.1.1.1.7.1069 = STRING: Anonymized 190 +.1.3.6.1.2.1.47.1.1.1.1.7.1070 = STRING: Anonymized 076 +.1.3.6.1.2.1.47.1.1.1.1.7.1071 = STRING: Anonymized 202 +.1.3.6.1.2.1.47.1.1.1.1.7.1072 = STRING: Anonymized 219 +.1.3.6.1.2.1.47.1.1.1.1.7.1073 = STRING: Anonymized 198 +.1.3.6.1.2.1.47.1.1.1.1.7.1074 = STRING: Anonymized 083 +.1.3.6.1.2.1.47.1.1.1.1.7.1075 = STRING: Anonymized 096 +.1.3.6.1.2.1.47.1.1.1.1.7.1076 = STRING: Anonymized 076 +.1.3.6.1.2.1.47.1.1.1.1.7.1077 = STRING: Anonymized 068 +.1.3.6.1.2.1.47.1.1.1.1.7.2001 = STRING: Anonymized 127 +.1.3.6.1.2.1.47.1.1.1.1.7.2002 = STRING: Anonymized 251 +.1.3.6.1.2.1.47.1.1.1.1.7.2003 = STRING: Anonymized 176 +.1.3.6.1.2.1.47.1.1.1.1.7.2004 = STRING: Anonymized 162 +.1.3.6.1.2.1.47.1.1.1.1.7.2005 = STRING: Anonymized 066 +.1.3.6.1.2.1.47.1.1.1.1.7.2006 = STRING: Anonymized 119 +.1.3.6.1.2.1.47.1.1.1.1.7.2007 = STRING: Anonymized 192 +.1.3.6.1.2.1.47.1.1.1.1.7.2008 = STRING: Anonymized 109 +.1.3.6.1.2.1.47.1.1.1.1.7.2009 = STRING: Anonymized 023 +.1.3.6.1.2.1.47.1.1.1.1.7.2010 = STRING: Anonymized 185 +.1.3.6.1.2.1.47.1.1.1.1.7.2011 = STRING: Anonymized 098 +.1.3.6.1.2.1.47.1.1.1.1.7.2012 = STRING: Anonymized 023 +.1.3.6.1.2.1.47.1.1.1.1.7.2013 = STRING: Anonymized 071 +.1.3.6.1.2.1.47.1.1.1.1.7.2014 = STRING: Anonymized 149 +.1.3.6.1.2.1.47.1.1.1.1.7.2015 = STRING: Anonymized 192 +.1.3.6.1.2.1.47.1.1.1.1.7.2016 = STRING: Anonymized 004 +.1.3.6.1.2.1.47.1.1.1.1.7.2017 = STRING: Anonymized 011 +.1.3.6.1.2.1.47.1.1.1.1.7.2018 = STRING: Anonymized 192 +.1.3.6.1.2.1.47.1.1.1.1.7.2019 = STRING: Anonymized 167 +.1.3.6.1.2.1.47.1.1.1.1.7.2020 = STRING: Anonymized 246 +.1.3.6.1.2.1.47.1.1.1.1.7.2021 = STRING: Anonymized 143 +.1.3.6.1.2.1.47.1.1.1.1.7.2022 = STRING: Anonymized 164 +.1.3.6.1.2.1.47.1.1.1.1.7.2023 = STRING: Anonymized 122 +.1.3.6.1.2.1.47.1.1.1.1.7.2024 = STRING: Anonymized 149 +.1.3.6.1.2.1.47.1.1.1.1.7.2025 = STRING: Anonymized 145 +.1.3.6.1.2.1.47.1.1.1.1.7.2026 = STRING: Anonymized 093 +.1.3.6.1.2.1.47.1.1.1.1.7.2027 = STRING: Anonymized 100 +.1.3.6.1.2.1.47.1.1.1.1.7.2028 = STRING: Anonymized 024 +.1.3.6.1.2.1.47.1.1.1.1.7.2029 = STRING: Anonymized 167 +.1.3.6.1.2.1.47.1.1.1.1.7.2030 = STRING: Anonymized 078 +.1.3.6.1.2.1.47.1.1.1.1.7.2031 = STRING: Anonymized 148 +.1.3.6.1.2.1.47.1.1.1.1.7.2032 = STRING: Anonymized 214 +.1.3.6.1.2.1.47.1.1.1.1.7.2033 = STRING: Anonymized 017 +.1.3.6.1.2.1.47.1.1.1.1.7.2034 = STRING: Anonymized 101 +.1.3.6.1.2.1.47.1.1.1.1.7.2035 = STRING: Anonymized 117 +.1.3.6.1.2.1.47.1.1.1.1.7.2036 = STRING: Anonymized 068 +.1.3.6.1.2.1.47.1.1.1.1.7.2037 = STRING: Anonymized 001 +.1.3.6.1.2.1.47.1.1.1.1.7.2038 = STRING: Anonymized 130 +.1.3.6.1.2.1.47.1.1.1.1.7.2039 = STRING: Anonymized 020 +.1.3.6.1.2.1.47.1.1.1.1.7.2040 = STRING: Anonymized 035 +.1.3.6.1.2.1.47.1.1.1.1.7.2041 = STRING: Anonymized 193 +.1.3.6.1.2.1.47.1.1.1.1.7.2042 = STRING: Anonymized 080 +.1.3.6.1.2.1.47.1.1.1.1.7.2043 = STRING: Anonymized 141 +.1.3.6.1.2.1.47.1.1.1.1.7.2044 = STRING: Anonymized 079 +.1.3.6.1.2.1.47.1.1.1.1.7.2045 = STRING: Anonymized 018 +.1.3.6.1.2.1.47.1.1.1.1.7.2046 = STRING: Anonymized 177 +.1.3.6.1.2.1.47.1.1.1.1.7.2047 = STRING: Anonymized 017 +.1.3.6.1.2.1.47.1.1.1.1.7.2048 = STRING: Anonymized 136 +.1.3.6.1.2.1.47.1.1.1.1.7.2049 = STRING: Anonymized 006 +.1.3.6.1.2.1.47.1.1.1.1.7.2050 = STRING: Anonymized 037 +.1.3.6.1.2.1.47.1.1.1.1.7.2051 = STRING: Anonymized 186 +.1.3.6.1.2.1.47.1.1.1.1.7.2052 = STRING: Anonymized 087 +.1.3.6.1.2.1.47.1.1.1.1.7.2053 = STRING: Anonymized 122 +.1.3.6.1.2.1.47.1.1.1.1.7.2054 = STRING: Anonymized 058 +.1.3.6.1.2.1.47.1.1.1.1.7.2055 = STRING: Anonymized 110 +.1.3.6.1.2.1.47.1.1.1.1.7.2056 = STRING: Anonymized 225 +.1.3.6.1.2.1.47.1.1.1.1.7.2057 = STRING: Anonymized 043 +.1.3.6.1.2.1.47.1.1.1.1.7.2058 = STRING: Anonymized 156 +.1.3.6.1.2.1.47.1.1.1.1.7.2059 = STRING: Anonymized 117 +.1.3.6.1.2.1.47.1.1.1.1.7.2060 = STRING: Anonymized 221 +.1.3.6.1.2.1.47.1.1.1.1.7.2061 = STRING: Anonymized 083 +.1.3.6.1.2.1.47.1.1.1.1.7.2062 = STRING: Anonymized 030 +.1.3.6.1.2.1.47.1.1.1.1.7.2063 = STRING: Anonymized 033 +.1.3.6.1.2.1.47.1.1.1.1.7.2064 = STRING: Anonymized 069 +.1.3.6.1.2.1.47.1.1.1.1.7.2065 = STRING: Anonymized 200 +.1.3.6.1.2.1.47.1.1.1.1.7.2066 = STRING: Anonymized 125 +.1.3.6.1.2.1.47.1.1.1.1.7.2067 = STRING: Anonymized 190 +.1.3.6.1.2.1.47.1.1.1.1.7.2068 = STRING: Anonymized 118 +.1.3.6.1.2.1.47.1.1.1.1.7.2069 = STRING: Anonymized 153 +.1.3.6.1.2.1.47.1.1.1.1.7.2070 = STRING: Anonymized 129 +.1.3.6.1.2.1.47.1.1.1.1.7.2071 = STRING: Anonymized 085 +.1.3.6.1.2.1.47.1.1.1.1.7.2072 = STRING: Anonymized 140 +.1.3.6.1.2.1.47.1.1.1.1.7.2073 = STRING: Anonymized 166 +.1.3.6.1.2.1.47.1.1.1.1.7.2074 = STRING: Anonymized 158 +.1.3.6.1.2.1.47.1.1.1.1.7.2075 = STRING: Anonymized 198 +.1.3.6.1.2.1.47.1.1.1.1.7.2076 = STRING: Anonymized 000 +.1.3.6.1.2.1.47.1.1.1.1.7.2077 = STRING: Anonymized 044 +.1.3.6.1.2.1.47.1.1.1.1.7.3001 = STRING: Anonymized 094 +.1.3.6.1.2.1.47.1.1.1.1.7.3002 = STRING: Anonymized 128 +.1.3.6.1.2.1.47.1.1.1.1.7.3003 = STRING: Anonymized 227 +.1.3.6.1.2.1.47.1.1.1.1.7.3004 = STRING: Anonymized 189 +.1.3.6.1.2.1.47.1.1.1.1.7.3005 = STRING: Anonymized 004 +.1.3.6.1.2.1.47.1.1.1.1.7.3006 = STRING: Anonymized 074 +.1.3.6.1.2.1.47.1.1.1.1.7.3007 = STRING: Anonymized 037 +.1.3.6.1.2.1.47.1.1.1.1.7.3008 = STRING: Anonymized 151 +.1.3.6.1.2.1.47.1.1.1.1.7.3009 = STRING: Anonymized 001 +.1.3.6.1.2.1.47.1.1.1.1.7.3010 = STRING: Anonymized 150 +.1.3.6.1.2.1.47.1.1.1.1.7.3011 = STRING: Anonymized 149 +.1.3.6.1.2.1.47.1.1.1.1.7.3012 = STRING: Anonymized 242 +.1.3.6.1.2.1.47.1.1.1.1.7.3013 = STRING: Anonymized 105 +.1.3.6.1.2.1.47.1.1.1.1.7.3014 = STRING: Anonymized 130 +.1.3.6.1.2.1.47.1.1.1.1.7.3015 = STRING: Anonymized 052 +.1.3.6.1.2.1.47.1.1.1.1.7.3016 = STRING: Anonymized 187 +.1.3.6.1.2.1.47.1.1.1.1.7.3017 = STRING: Anonymized 024 +.1.3.6.1.2.1.47.1.1.1.1.7.3018 = STRING: Anonymized 065 +.1.3.6.1.2.1.47.1.1.1.1.7.3019 = STRING: Anonymized 052 +.1.3.6.1.2.1.47.1.1.1.1.7.3020 = STRING: Anonymized 208 +.1.3.6.1.2.1.47.1.1.1.1.7.3021 = STRING: Anonymized 184 +.1.3.6.1.2.1.47.1.1.1.1.7.3022 = STRING: Anonymized 001 +.1.3.6.1.2.1.47.1.1.1.1.7.3023 = STRING: Anonymized 251 +.1.3.6.1.2.1.47.1.1.1.1.7.3024 = STRING: Anonymized 011 +.1.3.6.1.2.1.47.1.1.1.1.7.3025 = STRING: Anonymized 149 +.1.3.6.1.2.1.47.1.1.1.1.7.3026 = STRING: Anonymized 203 +.1.3.6.1.2.1.47.1.1.1.1.7.3027 = STRING: Anonymized 236 +.1.3.6.1.2.1.47.1.1.1.1.7.3028 = STRING: Anonymized 120 +.1.3.6.1.2.1.47.1.1.1.1.7.3029 = STRING: Anonymized 078 +.1.3.6.1.2.1.47.1.1.1.1.7.3030 = STRING: Anonymized 097 +.1.3.6.1.2.1.47.1.1.1.1.7.3031 = STRING: Anonymized 109 +.1.3.6.1.2.1.47.1.1.1.1.7.3032 = STRING: Anonymized 139 +.1.3.6.1.2.1.47.1.1.1.1.7.3033 = STRING: Anonymized 045 +.1.3.6.1.2.1.47.1.1.1.1.7.3034 = STRING: Anonymized 092 +.1.3.6.1.2.1.47.1.1.1.1.7.3035 = STRING: Anonymized 113 +.1.3.6.1.2.1.47.1.1.1.1.7.3036 = STRING: Anonymized 044 +.1.3.6.1.2.1.47.1.1.1.1.7.3037 = STRING: Anonymized 224 +.1.3.6.1.2.1.47.1.1.1.1.7.3038 = STRING: Anonymized 185 +.1.3.6.1.2.1.47.1.1.1.1.7.3039 = STRING: Anonymized 139 +.1.3.6.1.2.1.47.1.1.1.1.7.3040 = STRING: Anonymized 198 +.1.3.6.1.2.1.47.1.1.1.1.7.3041 = STRING: Anonymized 244 +.1.3.6.1.2.1.47.1.1.1.1.7.3042 = STRING: Anonymized 103 +.1.3.6.1.2.1.47.1.1.1.1.7.3043 = STRING: Anonymized 030 +.1.3.6.1.2.1.47.1.1.1.1.7.3044 = STRING: Anonymized 226 +.1.3.6.1.2.1.47.1.1.1.1.7.3045 = STRING: Anonymized 235 +.1.3.6.1.2.1.47.1.1.1.1.7.3046 = STRING: Anonymized 161 +.1.3.6.1.2.1.47.1.1.1.1.7.3047 = STRING: Anonymized 209 +.1.3.6.1.2.1.47.1.1.1.1.7.3048 = STRING: Anonymized 209 +.1.3.6.1.2.1.47.1.1.1.1.7.3049 = STRING: Anonymized 026 +.1.3.6.1.2.1.47.1.1.1.1.7.3050 = STRING: Anonymized 202 +.1.3.6.1.2.1.47.1.1.1.1.7.3051 = STRING: Anonymized 123 +.1.3.6.1.2.1.47.1.1.1.1.7.3052 = STRING: Anonymized 254 +.1.3.6.1.2.1.47.1.1.1.1.7.3053 = STRING: Anonymized 068 +.1.3.6.1.2.1.47.1.1.1.1.7.3054 = STRING: Anonymized 210 +.1.3.6.1.2.1.47.1.1.1.1.7.3055 = STRING: Anonymized 029 +.1.3.6.1.2.1.47.1.1.1.1.7.3056 = STRING: Anonymized 214 +.1.3.6.1.2.1.47.1.1.1.1.7.3057 = STRING: Anonymized 119 +.1.3.6.1.2.1.47.1.1.1.1.7.3058 = STRING: Anonymized 090 +.1.3.6.1.2.1.47.1.1.1.1.7.3059 = STRING: Anonymized 114 +.1.3.6.1.2.1.47.1.1.1.1.7.3060 = STRING: Anonymized 236 +.1.3.6.1.2.1.47.1.1.1.1.7.3061 = STRING: Anonymized 189 +.1.3.6.1.2.1.47.1.1.1.1.7.3062 = STRING: Anonymized 036 +.1.3.6.1.2.1.47.1.1.1.1.7.3063 = STRING: Anonymized 095 +.1.3.6.1.2.1.47.1.1.1.1.7.3064 = STRING: Anonymized 214 +.1.3.6.1.2.1.47.1.1.1.1.7.3065 = STRING: Anonymized 166 +.1.3.6.1.2.1.47.1.1.1.1.7.3066 = STRING: Anonymized 113 +.1.3.6.1.2.1.47.1.1.1.1.7.3067 = STRING: Anonymized 150 +.1.3.6.1.2.1.47.1.1.1.1.7.3068 = STRING: Anonymized 091 +.1.3.6.1.2.1.47.1.1.1.1.7.3069 = STRING: Anonymized 042 +.1.3.6.1.2.1.47.1.1.1.1.7.3070 = STRING: Anonymized 040 +.1.3.6.1.2.1.47.1.1.1.1.7.3071 = STRING: Anonymized 049 +.1.3.6.1.2.1.47.1.1.1.1.7.3072 = STRING: Anonymized 086 +.1.3.6.1.2.1.47.1.1.1.1.7.3073 = STRING: Anonymized 134 +.1.3.6.1.2.1.47.1.1.1.1.7.3074 = STRING: Anonymized 088 +.1.3.6.1.2.1.47.1.1.1.1.7.3075 = STRING: Anonymized 110 +.1.3.6.1.2.1.47.1.1.1.1.7.3076 = STRING: Anonymized 198 +.1.3.6.1.2.1.47.1.1.1.1.7.3077 = STRING: Anonymized 026 +.1.3.6.1.4.1.9.2.1.1.0 = STRING: Anonymized 059Bootstrap program is C2960X boot loader +.1.3.6.1.4.1.9.2.1.2.0 = STRING: Anonymized 172 +.1.3.6.1.4.1.9.2.1.3.0 = STRING: Anonymized 207 +.1.3.6.1.4.1.9.2.1.4.0 = STRING: Anonymized 060 +.1.3.6.1.4.1.9.2.1.5.0 = IpAddress: 192.168.42.042 +.1.3.6.1.4.1.9.2.1.6.0 = IpAddress: 192.168.42.151 +.1.3.6.1.4.1.9.2.1.8.0 = INTEGER: 284557824 +.1.3.6.1.4.1.9.2.1.9.0 = INTEGER: 2820 +.1.3.6.1.4.1.9.2.1.10.0 = INTEGER: 1000 +.1.3.6.1.4.1.9.2.1.11.0 = INTEGER: -160360354 +.1.3.6.1.4.1.9.2.1.12.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.13.0 = INTEGER: 1024 +.1.3.6.1.4.1.9.2.1.14.0 = INTEGER: 104 +.1.3.6.1.4.1.9.2.1.15.0 = INTEGER: 50 +.1.3.6.1.4.1.9.2.1.16.0 = INTEGER: 49 +.1.3.6.1.4.1.9.2.1.17.0 = INTEGER: 150 +.1.3.6.1.4.1.9.2.1.18.0 = INTEGER: -1870328576 +.1.3.6.1.4.1.9.2.1.19.0 = INTEGER: 182 +.1.3.6.1.4.1.9.2.1.20.0 = INTEGER: 222 +.1.3.6.1.4.1.9.2.1.21.0 = INTEGER: 222 +.1.3.6.1.4.1.9.2.1.22.0 = INTEGER: 600 +.1.3.6.1.4.1.9.2.1.23.0 = INTEGER: 25 +.1.3.6.1.4.1.9.2.1.24.0 = INTEGER: 25 +.1.3.6.1.4.1.9.2.1.25.0 = INTEGER: 150 +.1.3.6.1.4.1.9.2.1.26.0 = INTEGER: 27904741 +.1.3.6.1.4.1.9.2.1.27.0 = INTEGER: 166 +.1.3.6.1.4.1.9.2.1.28.0 = INTEGER: 498 +.1.3.6.1.4.1.9.2.1.29.0 = INTEGER: 498 +.1.3.6.1.4.1.9.2.1.30.0 = INTEGER: 1536 +.1.3.6.1.4.1.9.2.1.31.0 = INTEGER: 73 +.1.3.6.1.4.1.9.2.1.32.0 = INTEGER: 72 +.1.3.6.1.4.1.9.2.1.33.0 = INTEGER: 150 +.1.3.6.1.4.1.9.2.1.34.0 = INTEGER: -678928555 +.1.3.6.1.4.1.9.2.1.35.0 = INTEGER: 26168 +.1.3.6.1.4.1.9.2.1.36.0 = INTEGER: 61795 +.1.3.6.1.4.1.9.2.1.37.0 = INTEGER: 61818 +.1.3.6.1.4.1.9.2.1.38.0 = INTEGER: 5024 +.1.3.6.1.4.1.9.2.1.39.0 = INTEGER: 1 +.1.3.6.1.4.1.9.2.1.40.0 = INTEGER: 1 +.1.3.6.1.4.1.9.2.1.41.0 = INTEGER: 10 +.1.3.6.1.4.1.9.2.1.42.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.43.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.44.0 = INTEGER: 9034 +.1.3.6.1.4.1.9.2.1.45.0 = INTEGER: 9035 +.1.3.6.1.4.1.9.2.1.46.0 = INTEGER: 85 +.1.3.6.1.4.1.9.2.1.47.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.48.0 = IpAddress: 192.168.42.110 +.1.3.6.1.4.1.9.2.1.49.0 = "" +.1.3.6.1.4.1.9.2.1.51.0 = IpAddress: 192.168.42.172 +.1.3.6.1.4.1.9.2.1.52.0 = "" +.1.3.6.1.4.1.9.2.1.56.0 = INTEGER: 79 +.1.3.6.1.4.1.9.2.1.57.0 = INTEGER: 55 +.1.3.6.1.4.1.9.2.1.58.0 = INTEGER: 38 +.1.3.6.1.4.1.9.2.1.59.0 = INTEGER: 1002 +.1.3.6.1.4.1.9.2.1.60.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.61.0 = STRING: Anonymized 216170 West Tasman Dr.San Jose, CA 95134-1706U.S.A.Ph +1-408-526-4000Customer service 1-800-553-6387 or +1-408-526-720824HR Emergency 1-800-553-2447 or +1-408-526-7209Email Address tac@cisco.comWorld Wide Web http://www.cisco.com" +.1.3.6.1.4.1.9.2.1.62.0 = INTEGER: 18024 +.1.3.6.1.4.1.9.2.1.63.0 = INTEGER: 1 +.1.3.6.1.4.1.9.2.1.64.0 = INTEGER: 1 +.1.3.6.1.4.1.9.2.1.65.0 = INTEGER: 4 +.1.3.6.1.4.1.9.2.1.66.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.67.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.68.0 = INTEGER: 9034 +.1.3.6.1.4.1.9.2.1.69.0 = INTEGER: 9035 +.1.3.6.1.4.1.9.2.1.70.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.71.0 = INTEGER: 0 +.1.3.6.1.4.1.9.2.1.72.0 = IpAddress: 192.168.42.167 +.1.3.6.1.4.1.9.2.1.73.0 = STRING: Anonymized 214 +.1.3.6.1.4.1.9.2.1.74.0 = INTEGER: 3 +.1.3.6.1.4.1.9.2.2.1.1.12.1 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.181 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.5001 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10101 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10102 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10103 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10104 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10105 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10106 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10107 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10108 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10109 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10110 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10111 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10112 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10113 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10114 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10115 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10116 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10117 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10118 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10119 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10120 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10121 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10122 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10123 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10124 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10125 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10126 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10127 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10128 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10129 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10130 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10131 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10132 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10133 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10134 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10135 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10136 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10137 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10138 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10139 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10140 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10141 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10142 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10143 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10144 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10145 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10146 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10147 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10148 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10149 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10150 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10151 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10152 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10601 = INTEGER: 1 +.1.3.6.1.4.1.9.2.2.1.1.12.10602 = INTEGER: 2 +.1.3.6.1.4.1.9.2.2.1.1.12.10603 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10604 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10605 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10606 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10607 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10608 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10609 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10610 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10611 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10612 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10613 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10614 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10615 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10616 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10617 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10618 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10619 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10620 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10621 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10622 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10623 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10624 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10625 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10626 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10627 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10628 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10629 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10630 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10631 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10632 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10633 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10634 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10635 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10636 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10637 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10638 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10639 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10640 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10641 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10642 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10643 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10644 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10645 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10646 = INTEGER: 1 +.1.3.6.1.4.1.9.2.2.1.1.12.10647 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10648 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10649 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10650 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10651 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.10652 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11101 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11102 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11103 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11104 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11105 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11106 = INTEGER: 3 +.1.3.6.1.4.1.9.2.2.1.1.12.11107 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11108 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11109 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11110 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11111 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11112 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11113 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11114 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11115 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11116 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11117 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11118 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11119 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11120 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11121 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11122 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11123 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11124 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11125 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11126 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11127 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11128 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11129 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11130 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11131 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11132 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11133 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11134 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11135 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11136 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11137 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11138 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11139 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11140 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11141 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11142 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11143 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11144 = INTEGER: 1 +.1.3.6.1.4.1.9.2.2.1.1.12.11145 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11146 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11147 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11148 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11149 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11150 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11151 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.11152 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.14001 = INTEGER: 0 +.1.3.6.1.4.1.9.2.2.1.1.12.14002 = INTEGER: 0 +.1.3.6.1.4.1.9.2.10.1.0 = INTEGER: 122185728 +.1.3.6.1.4.1.9.2.10.2.0 = INTEGER: 53376512 +.1.3.6.1.4.1.9.2.10.3.0 = STRING: Anonymized 028 +.1.3.6.1.4.1.9.2.10.4.0 = STRING: Anonymized 252 +.1.3.6.1.4.1.9.2.10.5.0 = INTEGER: 1 +.1.3.6.1.4.1.9.2.10.7.0 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.4.1.9.2.10.8.0 = INTEGER: 7 +.1.3.6.1.4.1.9.2.10.10.0 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.4.1.9.2.10.11.0 = INTEGER: 7 +.1.3.6.1.4.1.9.2.10.13.0 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.4.1.9.2.10.14.0 = INTEGER: 7 +.1.3.6.1.4.1.9.2.10.15.0 = INTEGER: 2 +.1.3.6.1.4.1.9.2.10.16.0 = INTEGER: 502 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.2.2.1 = INTEGER: 1 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.2.3.1 = INTEGER: 1 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.3.1.1 = INTEGER: 1 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.3.2.1 = INTEGER: 1 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.3.3.1 = INTEGER: 1 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.4.1.1 = Gauge32: 122185728 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.4.2.1 = Gauge32: 122185728 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.4.3.1 = Gauge32: 122185728 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.5.1.1 = Gauge32: 53376512 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.5.2.1 = Gauge32: 53341184 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.5.3.1 = Gauge32: 56876544 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.6.1.1 = Gauge32: 502 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.6.2.1 = Gauge32: 502 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.6.3.1 = Gauge32: 1140 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.7.1.1 = INTEGER: 2 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.7.2.1 = INTEGER: 2 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.7.3.1 = INTEGER: 2 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.8.1.1 = INTEGER: 3 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.8.2.1 = INTEGER: 3 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.8.3.1 = INTEGER: 3 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.9.1.1 = INTEGER: 3 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.9.2.1 = INTEGER: 3 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.9.3.1 = INTEGER: 3 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.10.1.1 = STRING: Anonymized 175 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.10.2.1 = STRING: Anonymized 163 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.10.3.1 = STRING: Anonymized 131 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.11.1.1 = INTEGER: 2 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.11.2.1 = INTEGER: 2 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.11.3.1 = INTEGER: 2 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.12.1.1 = INTEGER: 45 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.12.2.1 = INTEGER: 45 +.1.3.6.1.4.1.9.9.10.1.1.4.1.1.12.3.1 = INTEGER: 45 +.1.3.6.1.4.1.9.9.13.1.1.0 = INTEGER: 13 +.1.3.6.1.4.1.9.9.43.1.1.1.0 = Timeticks: (4216453087) 488 days, 0:22:10.87 +.1.3.6.1.4.1.9.9.43.1.1.2.0 = Timeticks: (170001075) 19 days, 16:13:30.75 +.1.3.6.1.4.1.9.9.43.1.1.3.0 = Timeticks: (101042911) 11 days, 16:40:29.11 +.1.3.6.1.4.1.9.9.48.1.1.1.2.1 = STRING: Anonymized 021 +.1.3.6.1.4.1.9.9.48.1.1.1.2.2 = STRING: Anonymized 246 +.1.3.6.1.4.1.9.9.48.1.1.1.2.17 = STRING: Anonymized 062 +.1.3.6.1.4.1.9.9.48.1.1.1.2.18 = STRING: Anonymized 021 +.1.3.6.1.4.1.9.9.48.1.1.1.2.20 = STRING: Anonymized 135 +.1.3.6.1.4.1.9.9.48.1.1.1.3.1 = INTEGER: 0 +.1.3.6.1.4.1.9.9.48.1.1.1.3.2 = INTEGER: 0 +.1.3.6.1.4.1.9.9.48.1.1.1.3.17 = INTEGER: 0 +.1.3.6.1.4.1.9.9.48.1.1.1.3.18 = INTEGER: 0 +.1.3.6.1.4.1.9.9.48.1.1.1.3.20 = INTEGER: 0 +.1.3.6.1.4.1.9.9.48.1.1.1.4.1 = INTEGER: 1 +.1.3.6.1.4.1.9.9.48.1.1.1.4.2 = INTEGER: 1 +.1.3.6.1.4.1.9.9.48.1.1.1.4.17 = INTEGER: 1 +.1.3.6.1.4.1.9.9.48.1.1.1.4.18 = INTEGER: 1 +.1.3.6.1.4.1.9.9.48.1.1.1.4.20 = INTEGER: 1 +.1.3.6.1.4.1.9.9.48.1.1.1.5.1 = Gauge32: 81605080 +.1.3.6.1.4.1.9.9.48.1.1.1.5.2 = Gauge32: 12689640 +.1.3.6.1.4.1.9.9.48.1.1.1.5.17 = Gauge32: 40 +.1.3.6.1.4.1.9.9.48.1.1.1.5.18 = Gauge32: 40 +.1.3.6.1.4.1.9.9.48.1.1.1.5.20 = Gauge32: 40 +.1.3.6.1.4.1.9.9.48.1.1.1.6.1 = Gauge32: 284569564 +.1.3.6.1.4.1.9.9.48.1.1.1.6.2 = Gauge32: 20864792 +.1.3.6.1.4.1.9.9.48.1.1.1.6.17 = Gauge32: 938000 +.1.3.6.1.4.1.9.9.48.1.1.1.6.18 = Gauge32: 85920 +.1.3.6.1.4.1.9.9.48.1.1.1.6.20 = Gauge32: 1048536 +.1.3.6.1.4.1.9.9.48.1.1.1.7.1 = Gauge32: 223086088 +.1.3.6.1.4.1.9.9.48.1.1.1.7.2 = Gauge32: 20782100 +.1.3.6.1.4.1.9.9.48.1.1.1.7.17 = Gauge32: 937996 +.1.3.6.1.4.1.9.9.48.1.1.1.7.18 = Gauge32: 85916 +.1.3.6.1.4.1.9.9.48.1.1.1.7.20 = Gauge32: 1048532 +.1.3.6.1.4.1.9.9.109.1.1.1.1.2.1 = INTEGER: 1001 +.1.3.6.1.4.1.9.9.109.1.1.1.1.3.1 = Gauge32: 60 +.1.3.6.1.4.1.9.9.109.1.1.1.1.4.1 = Gauge32: 57 +.1.3.6.1.4.1.9.9.109.1.1.1.1.5.1 = Gauge32: 48 +.1.3.6.1.4.1.9.9.109.1.1.1.1.6.1 = Gauge32: 60 +.1.3.6.1.4.1.9.9.109.1.1.1.1.7.1 = Gauge32: 57 +.1.3.6.1.4.1.9.9.109.1.1.1.1.8.1 = Gauge32: 48 +.1.3.6.1.4.1.9.9.109.1.1.1.1.9.1 = Gauge32: 5 +.1.3.6.1.4.1.9.9.109.1.1.1.1.10.1 = Gauge32: 60 +.1.3.6.1.4.1.9.9.109.1.1.1.1.11.1 = Gauge32: 4 +.1.3.6.1.4.1.9.9.500.1.1.3.0 = INTEGER: 1 +.1.3.6.1.4.1.9.9.500.1.2.1.1.1.1001 = Gauge32: 1 +.1.3.6.1.4.1.9.9.500.1.2.1.1.1.2001 = Gauge32: 2 +.1.3.6.1.4.1.9.9.500.1.2.1.1.1.3001 = Gauge32: 3 +.1.3.6.1.4.1.9.9.500.1.2.1.1.2.1001 = Gauge32: 1 +.1.3.6.1.4.1.9.9.500.1.2.1.1.2.2001 = Gauge32: 2 +.1.3.6.1.4.1.9.9.500.1.2.1.1.2.3001 = Gauge32: 3 +.1.3.6.1.4.1.9.9.500.1.2.1.1.3.1001 = INTEGER: 1 +.1.3.6.1.4.1.9.9.500.1.2.1.1.3.2001 = INTEGER: 2 +.1.3.6.1.4.1.9.9.500.1.2.1.1.3.3001 = INTEGER: 2 +.1.3.6.1.4.1.9.9.500.1.2.1.1.4.1001 = Gauge32: 9 +.1.3.6.1.4.1.9.9.500.1.2.1.1.4.2001 = Gauge32: 7 +.1.3.6.1.4.1.9.9.500.1.2.1.1.4.3001 = Gauge32: 5 +.1.3.6.1.4.1.9.9.500.1.2.1.1.5.1001 = Gauge32: 5 +.1.3.6.1.4.1.9.9.500.1.2.1.1.5.2001 = Gauge32: 5 +.1.3.6.1.4.1.9.9.500.1.2.1.1.5.3001 = Gauge32: 5 +.1.3.6.1.4.1.9.9.500.1.2.1.1.6.1001 = INTEGER: 4 +.1.3.6.1.4.1.9.9.500.1.2.1.1.6.2001 = INTEGER: 4 +.1.3.6.1.4.1.9.9.500.1.2.1.1.6.3001 = INTEGER: 4 +.1.3.6.1.4.1.9.9.500.1.2.1.1.7.1001 = Hex-STRING: 3C 5E C3 4B E1 00 +.1.3.6.1.4.1.9.9.500.1.2.1.1.7.2001 = Hex-STRING: 3C 5E C3 35 50 80 +.1.3.6.1.4.1.9.9.500.1.2.1.1.7.3001 = Hex-STRING: 3C 5E C3 67 DC 80 +.1.3.6.1.4.1.9.9.500.1.2.1.1.8.1001 = STRING: Anonymized 140 +.1.3.6.1.4.1.9.9.500.1.2.1.1.8.2001 = STRING: Anonymized 141 +.1.3.6.1.4.1.9.9.500.1.2.1.1.8.3001 = STRING: Anonymized 109 +.1.3.6.1.4.1.9.9.500.1.2.1.1.9.1001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.9.2001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.9.3001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.10.1001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.10.2001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.10.3001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.11.1001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.11.2001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.11.3001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.12.1001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.12.2001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.12.3001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.13.1001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.13.2001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.13.3001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.14.1001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.14.2001 = Gauge32: 0 +.1.3.6.1.4.1.9.9.500.1.2.1.1.14.3001 = Gauge32: 0 \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/configuration.robot b/tests/network/cisco/standard/snmp/configuration.robot new file mode 100644 index 000000000..04d24ac19 --- /dev/null +++ b/tests/network/cisco/standard/snmp/configuration.robot @@ -0,0 +1,28 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +configuration ${tc} + [Tags] network configuration snmp + ${command} Catenate + ... ${CMD} + ... --mode=configuration + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: running config is ahead of startup config since -1y 3M 1w 4d 18h 40m 35s. changes will be lost in case of a reboot | 'configuration.running.ahead.since.seconds'=-40463790.78s;;;0; + ... 2 --warning-config-running-ahead=0 WARNING: running config is ahead of startup config since -1y 3M 1w 4d 18h 40m 35s. changes will be lost in case of a reboot | 'configuration.running.ahead.since.seconds'=-40463790.78s;0:0;;0; + ... 3 --critical-config-running-ahead=10 CRITICAL: running config is ahead of startup config since -1y 3M 1w 4d 18h 40m 35s. changes will be lost in case of a reboot | 'configuration.running.ahead.since.seconds'=-40463790.78s;;0:10;0; \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/cpu.robot b/tests/network/cisco/standard/snmp/cpu.robot new file mode 100644 index 000000000..990a80233 --- /dev/null +++ b/tests/network/cisco/standard/snmp/cpu.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +cpu ${tc} + [Tags] network cpu snmp + ${command} Catenate + ... ${CMD} + ... --mode=cpu + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --verbose OK: 1 CPU(s) average usage is 60.00 % (5s) 57.00 % (1m) 48.00 % (5m) - CPU '1' usage 60.00 % (5s) 57.00 % (1m) 48.00 % (5m) | 'total_cpu_5s_avg'=60.00%;;;0;100 'total_cpu_1m_avg'=57.00%;;;0;100 'total_cpu_5m_avg'=48.00%;;;0;100 'cpu_5s'=60.00%;;;0;100 'cpu_1m'=57.00%;;;0;100 'cpu_5m'=48.00%;;;0;100 CPU '1' usage 60.00 % (5s) 57.00 % (1m) 48.00 % (5m) + ... 2 --check-order='process,old_sys,system_ext' OK: 1 CPU(s) average usage is 60.00 % (5s) 57.00 % (1m) 48.00 % (5m) - CPU '1' usage 60.00 % (5s) 57.00 % (1m) 48.00 % (5m) | 'total_cpu_5s_avg'=60.00%;;;0;100 'total_cpu_1m_avg'=57.00%;;;0;100 'total_cpu_5m_avg'=48.00%;;;0;100 'cpu_5s'=60.00%;;;0;100 'cpu_1m'=57.00%;;;0;100 'cpu_5m'=48.00%;;;0;100 + ... 3 --warning-average-5s=0:2 --critical-average-5s=0:2 CRITICAL: 1 CPU(s) average usage is 60.00 % (5s) | 'total_cpu_5s_avg'=60.00%;0:2;0:2;0;100 'total_cpu_1m_avg'=57.00%;;;0;100 'total_cpu_5m_avg'=48.00%;;;0;100 'cpu_5s'=60.00%;;;0;100 'cpu_1m'=57.00%;;;0;100 'cpu_5m'=48.00%;;;0;100 + ... 4 --warning-core-1m=0:1 --critical-core-1m=0:1 CRITICAL: CPU '1' usage 57.00 % (1m) | 'total_cpu_5s_avg'=60.00%;;;0;100 'total_cpu_1m_avg'=57.00%;;;0;100 'total_cpu_5m_avg'=48.00%;;;0;100 'cpu_5s'=60.00%;;;0;100 'cpu_1m'=57.00%;0:1;0:1;0;100 'cpu_5m'=48.00%;;;0;100 + ... 5 --warning-average-5s=0:5 --critical-average-5s=0:5 CRITICAL: 1 CPU(s) average usage is 60.00 % (5s) | 'total_cpu_5s_avg'=60.00%;0:5;0:5;0;100 'total_cpu_1m_avg'=57.00%;;;0;100 'total_cpu_5m_avg'=48.00%;;;0;100 'cpu_5s'=60.00%;;;0;100 'cpu_1m'=57.00%;;;0;100 'cpu_5m'=48.00%;;;0;100 + ... 6 --warning-average-1m=0:2 --critical-average-1m=0:2 CRITICAL: 1 CPU(s) average usage is 57.00 % (1m) | 'total_cpu_5s_avg'=60.00%;;;0;100 'total_cpu_1m_avg'=57.00%;0:2;0:2;0;100 'total_cpu_5m_avg'=48.00%;;;0;100 'cpu_5s'=60.00%;;;0;100 'cpu_1m'=57.00%;;;0;100 'cpu_5m'=48.00%;;;0;100 + ... 7 --warning-average-5m=0:2 --critical-average-5m=0:0 CRITICAL: 1 CPU(s) average usage is 48.00 % (5m) | 'total_cpu_5s_avg'=60.00%;;;0;100 'total_cpu_1m_avg'=57.00%;;;0;100 'total_cpu_5m_avg'=48.00%;0:2;0:0;0;100 'cpu_5s'=60.00%;;;0;100 'cpu_1m'=57.00%;;;0;100 'cpu_5m'=48.00%;;;0;100 diff --git a/tests/network/cisco/standard/snmp/interfaces.robot b/tests/network/cisco/standard/snmp/interfaces.robot new file mode 100644 index 000000000..8139b9edb --- /dev/null +++ b/tests/network/cisco/standard/snmp/interfaces.robot @@ -0,0 +1,35 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +interfaces ${tc} + [Tags] network interfaces snmp + ${command} Catenate + ... ${CMD} + ... --mode=interfaces + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + ${output} Run ${command} + ${output} Strip String ${output} + Should Contain + ... ${output} + ... ${expected_result} + ... Wrong output result for command:\n${command}\n\nObtained:\n${output}\n\nExpected:\n${expected_result}\n + ... values=False + ... collapse_spaces=True + + Examples: tc extra_options expected_result -- + ... 1 --oid-display='ifName' CRITICAL: Interface 'Anonymized 250' Status : down (admin: up) - Interface 'Anonymized 235' Status : down (admin: up) - Interface 'Anonymized 155' Status : down (admin: up) - Interface 'Anonymized 080' Status : down (admin: up) - Interface 'Anonymized 103' Status : down (admin: up) + ... 2 --oid-extra-display='ifdesc' CRITICAL: Interface 'Anonymized 250' [ Anonymized 147 ] Status : down (admin: up) - Interface 'Anonymized 235' [ Anonymized 094 ] Status : down (admin: up) - Interface 'Anonymized 155' [ Anonymized 130 ] Status : down (admin: up) - Interface 'Anonymized 080' [ Anonymized 221 ] Status : down (admin: up) - Interface 'Anonymized 103' [ Anonymized 017 ] Status : down (admin: up) + ... 3 --display-transform-dst='toto' --display-transform-src='Anonymized 250' CRITICAL: Interface 'toto' Status : down (admin: up) - Interface 'Anonymized 235' Status : down (admin: up) - Interface 'Anonymized 155' Status : down (admin: up) - Interface 'Anonymized 080' Status : down (admin: up) - Interface 'Anonymized 103' Status : down (admin: up) \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/list-interfaces.robot b/tests/network/cisco/standard/snmp/list-interfaces.robot new file mode 100644 index 000000000..268e5ffb7 --- /dev/null +++ b/tests/network/cisco/standard/snmp/list-interfaces.robot @@ -0,0 +1,36 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +list-interfaces ${tc} + [Tags] network list-interfaces snmp + ${command} Catenate + ... ${CMD} + ... --mode=list-interfaces + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + ${output} Run ${command} + ${output} Strip String ${output} + Should Contain + ... ${output} + ... ${expected_result} + ... Wrong output result for command:\n${command}\n\nObtained:\n${output}\n\nExpected:\n${expected_result}\n + ... values=False + ... collapse_spaces=True + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List interfaces: 'Anonymized 250' [speed = 1000][status = down][id = 1][type = propVirtual] 'Anonymized 072' [speed = 1000][status = up][id = 10101][type = ethernetCsmacd] 'Anonymized 064' [speed = 1000][status = up][id = 10102][type = ethernetCsmacd] 'Anonymized 254' [speed = 1000][status = up][id = 10103][type = ethernetCsmacd] 'Anonymized 243' [speed = 1000][status = up][id = 10104][type = ethernetCsmacd] 'Anonymized 071' [speed = 10][status = down][id = 10105][type = ethernetCsmacd] 'Anonymized 023' [speed = 10][status = down][id = 10106][type = ethernetCsmacd] + ... 2 --add-extra-oid='alias,.1.3.6.1.2.1.31.1.1.1.18' 'Anonymized 250' [speed = 1000][status = down][id = 1][alias = ][type = propVirtual] + ... 3 --display-transform-src='eth' --display-transform-dst='ens' 'Anonymized 250' [speed = 1000][status = down][id = 1][type = propVirtual] + ... 4 --add-mac-address 'Anonymized 250' [speed = 1000][status = down][id = 1][macaddress = 41:6e:6f:6e:79:6d:69:7a:65:64:20:32:34:38][type = propVirtual] \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/memory-flash.robot b/tests/network/cisco/standard/snmp/memory-flash.robot new file mode 100644 index 000000000..17fa960ae --- /dev/null +++ b/tests/network/cisco/standard/snmp/memory-flash.robot @@ -0,0 +1,32 @@ +*** Settings *** +Documentation Network citrix netscaler health + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +memory-flash ${tc} + [Tags] network memory-flash snmp + ${command} Catenate + ... ${CMD} + ... --mode=memory-flash + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All memory flash partitions are ok | 'Anonymized 175#memory.flash.usage.bytes'=68809216B;;;0;122185728 'Anonymized 175#memory.flash.free.bytes'=53376512B;;;0;122185728 'Anonymized 175#memory.flash.usage.percentage'=56.32%;;;0;100 'Anonymized 163#memory.flash.usage.bytes'=68844544B;;;0;122185728 'Anonymized 163#memory.flash.free.bytes'=53341184B;;;0;122185728 'Anonymized 163#memory.flash.usage.percentage'=56.34%;;;0;100 'Anonymized 131#memory.flash.usage.bytes'=65309184B;;;0;122185728 'Anonymized 131#memory.flash.free.bytes'=56876544B;;;0;122185728 'Anonymized 131#memory.flash.usage.percentage'=53.45%;;;0;100 + ... 2 --warning-status='\\\%{status} eq "readWrite"' --filter-name='Anonymized 175' WARNING: Partition 'Anonymized 175' status : readWrite | 'Anonymized 175#memory.flash.usage.bytes'=68809216B;;;0;122185728 'Anonymized 175#memory.flash.free.bytes'=53376512B;;;0;122185728 'Anonymized 175#memory.flash.usage.percentage'=56.32%;;;0;100 + ... 3 --critical-status='\\\%{status} eq "readWrite"' --filter-name='Anonymized 175' CRITICAL: Partition 'Anonymized 175' status : readWrite | 'Anonymized 175#memory.flash.usage.bytes'=68809216B;;;0;122185728 'Anonymized 175#memory.flash.free.bytes'=53376512B;;;0;122185728 'Anonymized 175#memory.flash.usage.percentage'=56.32%;;;0;100 + ... 4 --warning-usage='' --critical-usage='' --filter-name='Anonymized 175' OK: Partition 'Anonymized 175' status : readWrite, Total: 116.53 MB Used: 65.62 MB (56.32%) Free: 50.90 MB (43.68%) | 'Anonymized 175#memory.flash.usage.bytes'=68809216B;;;0;122185728 'Anonymized 175#memory.flash.free.bytes'=53376512B;;;0;122185728 'Anonymized 175#memory.flash.usage.percentage'=56.32%;;;0;100 + ... 5 --warning-usage-free=50 --critical-usage-free='' --filter-name='Anonymized 175' WARNING: Partition 'Anonymized 175' Total: 116.53 MB Used: 65.62 MB (56.32%) Free: 50.90 MB (43.68%) | 'Anonymized 175#memory.flash.usage.bytes'=68809216B;;;0;122185728 'Anonymized 175#memory.flash.free.bytes'=53376512B;0:50;;0;122185728 'Anonymized 175#memory.flash.usage.percentage'=56.32%;;;0;100 + ... 6 --warning-usage-prct=0 --critical-usage-prct=1 --filter-name='Anonymized 175' CRITICAL: Partition 'Anonymized 175' Used : 56.32 % | 'Anonymized 175#memory.flash.usage.bytes'=68809216B;;;0;122185728 'Anonymized 175#memory.flash.free.bytes'=53376512B;;;0;122185728 'Anonymized 175#memory.flash.usage.percentage'=56.32%;0:0;0:1;0;100 \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/memory.robot b/tests/network/cisco/standard/snmp/memory.robot new file mode 100644 index 000000000..b3dfd91e7 --- /dev/null +++ b/tests/network/cisco/standard/snmp/memory.robot @@ -0,0 +1,29 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +memory ${tc} + [Tags] network memory snmp + ${command} Catenate + ... ${CMD} + ... --mode=memory + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --warning-usage=0 WARNING: Memory 'Anonymized 021' Usage Total: 349.21 MB Used: 77.82 MB (22.29%) Free: 271.39 MB (77.71%) - Memory 'Anonymized 062' Usage Total: 916.05 KB Used: 40.00 B (0.00%) Free: 916.02 KB (100.00%) - Memory 'Anonymized 021' Usage Total: 83.95 KB Used: 40.00 B (0.05%) Free: 83.91 KB (99.95%) - Memory 'Anonymized 246' Usage Total: 32.00 MB Used: 12.10 MB (37.82%) Free: 19.90 MB (62.18%) - Memory 'Anonymized 135' Usage Total: 1.00 MB Used: 40.00 B (0.00%) Free: 1023.96 KB (100.00%) | 'used_Anonymized 021'=81605080B;0:0;;0;366174644 'used_Anonymized 062'=40B;0:0;;0;938040 'used_Anonymized 021'=40B;0:0;;0;85960 'used_Anonymized 246'=12689640B;0:0;;0;33554432 'used_Anonymized 135'=40B;0:0;;0;1048576 + ... 2 --critical-usage=0 CRITICAL: Memory 'Anonymized 021' Usage Total: 349.21 MB Used: 77.82 MB (22.29%) Free: 271.39 MB (77.71%) - Memory 'Anonymized 062' Usage Total: 916.05 KB Used: 40.00 B (0.00%) Free: 916.02 KB (100.00%) - Memory 'Anonymized 021' Usage Total: 83.95 KB Used: 40.00 B (0.05%) Free: 83.91 KB (99.95%) - Memory 'Anonymized 246' Usage Total: 32.00 MB Used: 12.10 MB (37.82%) Free: 19.90 MB (62.18%) - Memory 'Anonymized 135' Usage Total: 1.00 MB Used: 40.00 B (0.00%) Free: 1023.96 KB (100.00%) | 'used_Anonymized 021'=81605080B;;0:0;0;366174644 'used_Anonymized 062'=40B;;0:0;0;938040 'used_Anonymized 021'=40B;;0:0;0;85960 'used_Anonymized 246'=12689640B;;0:0;0;33554432 'used_Anonymized 135'=40B;;0:0;0;1048576 + ... 3 --filter-pool='.*' OK: All memories are ok | 'used_Anonymized 021'=81605080B;;;0;366174644 'used_Anonymized 062'=40B;;;0;938040 'used_Anonymized 021'=40B;;;0;85960 'used_Anonymized 246'=12689640B;;;0;33554432 'used_Anonymized 135'=40B;;;0;1048576 + ... 4 --check-order='enhanced_pool,pool,process,system_ext' OK: All memories are ok | 'used_Anonymized 021'=81605080B;;;0;366174644 'used_Anonymized 062'=40B;;;0;938040 'used_Anonymized 021'=40B;;;0;85960 'used_Anonymized 246'=12689640B;;;0;33554432 'used_Anonymized 135'=40B;;;0;1048576 \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/stack.robot b/tests/network/cisco/standard/snmp/stack.robot new file mode 100644 index 000000000..572f91b14 --- /dev/null +++ b/tests/network/cisco/standard/snmp/stack.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +stack ${tc} + [Tags] network stack snmp + ${command} Catenate + ... ${CMD} + ... --mode=stack + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: Stack status is 'redundant' - Number of members waiting: 0, progressing: 0, added: 0, ready: 3, SDM mismatch: 0, version mismatch: 0, feature mismatch: 0, new master init: 0, provisioned: 0, invalid: 0, removed: 0 - All stack members status are ok | 'waiting'=0;;;0; 'progressing'=0;;;0; 'added'=0;;;0; 'ready'=3;;;0; 'sdm_mismatch'=0;;;0; 'version_mismatch'=0;;;0; 'feature_mismatch'=0;;;0; 'new_master_init'=0;;;0; 'provisioned'=0;;;0; 'invalid'=0;;;0; 'removed'=0;;;0; + ... 2 --critical-status='\\\%{role} =~ /master/' CRITICAL: Member 'Anonymized 250' state is 'ready', role is 'master' | 'waiting'=0;;;0; 'progressing'=0;;;0; 'added'=0;;;0; 'ready'=3;;;0; 'sdm_mismatch'=0;;;0; 'version_mismatch'=0;;;0; 'feature_mismatch'=0;;;0; 'new_master_init'=0;;;0; 'provisioned'=0;;;0; 'invalid'=0;;;0; 'removed'=0;;;0; + ... 3 --warning-stack-status='\\\%{stack_status} =~ /redundant/' WARNING: Stack status is 'redundant' | 'waiting'=0;;;0; 'progressing'=0;;;0; 'added'=0;;;0; 'ready'=3;;;0; 'sdm_mismatch'=0;;;0; 'version_mismatch'=0;;;0; 'feature_mismatch'=0;;;0; 'new_master_init'=0;;;0; 'provisioned'=0;;;0; 'invalid'=0;;;0; 'removed'=0;;;0; + ... 4 --critical-stack-status='\\\%{stack_status} =~ /redundant/' CRITICAL: Stack status is 'redundant' | 'waiting'=0;;;0; 'progressing'=0;;;0; 'added'=0;;;0; 'ready'=3;;;0; 'sdm_mismatch'=0;;;0; 'version_mismatch'=0;;;0; 'feature_mismatch'=0;;;0; 'new_master_init'=0;;;0; 'provisioned'=0;;;0; 'invalid'=0;;;0; 'removed'=0;;;0; + ... 5 --warning-status='\\\%{state} =~ /ready/' WARNING: Member 'Anonymized 250' state is 'ready', role is 'master' - Member 'Anonymized 127' state is 'ready', role is 'member' - Member 'Anonymized 094' state is 'ready', role is 'member' | 'waiting'=0;;;0; 'progressing'=0;;;0; 'added'=0;;;0; 'ready'=3;;;0; 'sdm_mismatch'=0;;;0; 'version_mismatch'=0;;;0; 'feature_mismatch'=0;;;0; 'new_master_init'=0;;;0; 'provisioned'=0;;;0; 'invalid'=0;;;0; 'removed'=0;;;0; + ... 6 --warning-waiting=@0:10 --critical-waiting=@2:2 WARNING: Number of members waiting: 0 | 'waiting'=0;@0:10;@2:2;0; 'progressing'=0;;;0; 'added'=0;;;0; 'ready'=3;;;0; 'sdm_mismatch'=0;;;0; 'version_mismatch'=0;;;0; 'feature_mismatch'=0;;;0; 'new_master_init'=0;;;0; 'provisioned'=0;;;0; 'invalid'=0;;;0; 'removed'=0;;;0; \ No newline at end of file diff --git a/tests/network/cisco/standard/snmp/uptime.robot b/tests/network/cisco/standard/snmp/uptime.robot new file mode 100644 index 000000000..882ee541f --- /dev/null +++ b/tests/network/cisco/standard/snmp/uptime.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::cisco::standard::snmp::plugin + + +*** Test Cases *** +uptime ${tc} + [Tags] network uptime snmp + ${command} Catenate + ... ${CMD} + ... --mode=uptime + ... --hostname=${HOSTNAME} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/cisco/standard/snmp/cisco + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: System uptime is: 19d 16h 25m 40s | 'uptime'=1700740.00s;;;0; + ... 2 --warning-uptime=2000 WARNING: System uptime is: 19d 16h 25m 40s | 'uptime'=1700740.00s;0:2000;;0; + ... 3 --critical-uptime=5000 CRITICAL: System uptime is: 19d 16h 25m 40s | 'uptime'=1700740.00s;;0:5000;0; + ... 4 --add-sysdesc OK: System uptime is: 19d 16h 25m 40s, Anonymized 023Technical Support: http://www.cisco.com/techsupport | 'uptime'=1700740.00s;;;0; + ... 5 --force-oid='.1.3.6.1.2.1.2.2.1.3.181' OK: System uptime is: 0d | 'uptime'=0.00s;;;0; + ... 6 --check-overload --reboot-window=1000 OK: System uptime is: 19d 16h 25m 40s | 'uptime'=1700740.00s;;;0; + ... 7 --unit='w' OK: System uptime is: 19d 16h 25m 40s | 'uptime'=2.81w;;;0; \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/apm.robot b/tests/network/f5/bigip/snmp/apm.robot new file mode 100644 index 000000000..a87ddc037 --- /dev/null +++ b/tests/network/f5/bigip/snmp/apm.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +apm ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=apm + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: sessions-created : Buffer creation, active sessions: 3724, pending sessions: 146 - All virtual servers are ok + ... 2 ${EMPTY} OK: created sessions: 0, active sessions: 3724, pending sessions: 146 - All virtual servers are ok | 'system.sessions.created.count'=0;;;0; 'system.sessions.active.count'=3724;;;0; 'system.sessions.pending.count'=146;;;0; + ... 3 --filter-ap='toto' UNKNOWN: No virtual server found. + ... 4 --warning-sessions-active=3000 --critical-sessions-active=4000 WARNING: active sessions: 3724 | 'system.sessions.created.count'=0;;;0; 'system.sessions.active.count'=3724;0:3000;0:4000;0; 'system.sessions.pending.count'=146;;;0; + ... 5 --warning-sessions-pending=100 --critical-sessions-pending=140 CRITICAL: pending sessions: 146 | 'system.sessions.created.count'=0;;;0; 'system.sessions.active.count'=3724;;;0; 'system.sessions.pending.count'=146;0:100;0:140;0; \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/connections.robot b/tests/network/f5/bigip/snmp/connections.robot new file mode 100644 index 000000000..b48c1c224 --- /dev/null +++ b/tests/network/f5/bigip/snmp/connections.robot @@ -0,0 +1,30 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +connections ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=connections + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: Current client connections : 5395, Current client SSL connections : 0, client-ssl-tps : Buffer creation, Current server connections: 5242, Current server SSL connections : 4574 | 'connections.client.current.count'=5395;;;0; 'connections.client.ssl.current.count'=0;;;0; 'connections.server.current.count'=5242;;;0; 'connections.server.ssl.current.count'=4574;;;0; + ... 2 --filter-counters='^client-ssl|server-ssl$' OK: Current client SSL connections : 0, client-ssl-tps : Buffer creation, Current server SSL connections : 4574 | 'connections.client.ssl.current.count'=0;;;0; 'connections.server.ssl.current.count'=4574;;;0; + ... 3 --warning-client=25 WARNING: Current client connections : 5395 | 'connections.client.current.count'=5395;0:25;;0; 'connections.client.ssl.current.count'=0;;;0; 'connections.client.ssl.persecond'=0.00;;;0; 'connections.server.current.count'=5242;;;0; 'connections.server.ssl.current.count'=4574;;;0; + ... 4 --critical-client=25 CRITICAL: Current client connections : 5395 | 'connections.client.current.count'=5395;;0:25;0; 'connections.client.ssl.current.count'=0;;;0; 'connections.client.ssl.persecond'=0.00;;;0; 'connections.server.current.count'=5242;;;0; 'connections.server.ssl.current.count'=4574;;;0; \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/cpu.snmpwalk b/tests/network/f5/bigip/snmp/cpu.snmpwalk new file mode 100644 index 000000000..4b3c796aa --- /dev/null +++ b/tests/network/f5/bigip/snmp/cpu.snmpwalk @@ -0,0 +1,2240 @@ +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.1 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.2 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.3 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.4 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.5 = 5 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.6 = 6 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.7 = 7 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.8 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.9 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.10 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.11 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.12 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.13 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.14 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.15 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.16 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.17 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.18 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.19 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.20 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.21 = 21 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.22 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.23 = 23 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.24 = 24 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.25 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.26 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.27 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.28 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.29 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.30 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.31 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.32 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.33 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.34 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.35 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.36 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.37 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.38 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.39 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.40 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.41 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.42 = 42 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.43 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.44 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.45 = 45 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.46 = 46 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.47 = 47 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.48 = 48 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.49 = 49 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.50 = 50 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.51 = 51 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.52 = 52 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.53 = 53 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.54 = 54 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.55 = 55 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.56 = 56 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.2 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.3 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.4 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.6 = 5 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.7 = 6 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.8 = 7 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.9 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.10 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.11 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.12 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.13 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.14 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.15 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.16 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.17 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.18 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.19 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.20 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.21 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.22 = 21 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.23 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.24 = 23 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.25 = 24 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.26 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.27 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.28 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.29 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.30 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.31 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.32 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.33 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.34 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.35 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.36 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.37 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.38 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.39 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.40 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.41 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.42 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.43 = 42 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.44 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.45 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.46 = 45 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.47 = 46 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.48 = 47 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.49 = 48 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.50 = 49 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.51 = 50 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.52 = 51 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.53 = 52 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.54 = 53 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.55 = 54 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.56 = 55 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.1 = 211670011 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.2 = 75404966 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.3 = 205801278 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.4 = 76904406 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.5 = 203495430 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.6 = 77957011 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.7 = 202448724 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.8 = 76909323 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.9 = 198485821 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.10 = 76010132 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.11 = 198780785 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.12 = 74635437 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.13 = 198343037 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.14 = 74941652 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.15 = 204769241 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.16 = 74522690 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.17 = 207724724 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.18 = 74610428 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.19 = 204815125 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.20 = 74262602 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.21 = 206063805 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.22 = 74692987 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.23 = 205460488 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.24 = 74421661 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.25 = 202289872 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.26 = 74418258 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.27 = 202225103 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.28 = 75840363 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.29 = 184577624 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.30 = 55999173 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.31 = 179654920 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.32 = 54718304 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.33 = 175613371 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.34 = 54352935 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.35 = 174632668 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.36 = 54331311 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.37 = 169521899 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.38 = 53570670 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.39 = 167101678 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.40 = 53165543 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.41 = 167933064 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.42 = 52802358 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.43 = 173786862 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.44 = 52835897 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.45 = 173216807 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.46 = 51723205 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.47 = 172306394 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.48 = 52728583 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.49 = 170176871 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.50 = 52144027 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.51 = 171875689 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.52 = 52652659 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.53 = 172969605 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.54 = 52656557 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.55 = 162447782 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.56 = 173316142 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.2 = 7774682 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.4 = 13354523 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.6 = 11750987 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.8 = 10960705 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.10 = 9781283 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.12 = 9270233 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.14 = 8775482 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.16 = 8627185 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.18 = 8173583 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.20 = 7803205 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.22 = 7725362 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.24 = 7679436 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.26 = 7508826 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.28 = 10797691 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.30 = 34332351 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.32 = 35278190 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.34 = 34453830 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.36 = 35774113 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.38 = 35683141 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.40 = 35917425 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.42 = 35527681 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.44 = 35631238 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.46 = 34538325 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.48 = 35453625 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.50 = 35024434 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.52 = 35226646 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.54 = 35268071 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.56 = 11115734 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.1 = 23270957 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.2 = 12514137 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.3 = 22894096 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.4 = 12762135 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.5 = 22785208 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.6 = 12718879 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.7 = 22617314 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.8 = 12658184 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.9 = 22208292 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.10 = 12302829 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.11 = 22077645 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.12 = 12273230 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.13 = 21881610 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.14 = 12073897 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.15 = 22520525 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.16 = 12103343 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.17 = 22560789 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.18 = 12044119 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.19 = 22717419 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.20 = 11960132 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.21 = 22639099 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.22 = 12286412 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.23 = 22585670 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.24 = 12290940 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.25 = 22217197 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.26 = 12182804 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.27 = 22380285 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.28 = 12438528 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.29 = 20377963 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.30 = 8065500 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.31 = 19508037 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.32 = 8610380 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.33 = 19501827 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.34 = 8496499 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.35 = 19264322 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.36 = 8434051 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.37 = 18776185 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.38 = 8222088 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.39 = 18532243 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.40 = 8207752 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.41 = 18560074 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.42 = 8077345 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.43 = 19250730 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.44 = 8087330 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.45 = 19219727 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.46 = 7979151 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.47 = 19202128 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.48 = 8107173 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.49 = 19047789 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.50 = 7944591 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.51 = 18980571 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.52 = 8066466 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.53 = 18746663 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.54 = 7959774 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.55 = 18139105 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.56 = 15154621 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.1 = 410504933 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.2 = 564190351 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.3 = 418723971 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.4 = 558581386 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.5 = 421315535 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.6 = 559225218 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.7 = 422675913 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.8 = 561330859 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.9 = 427064909 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.10 = 563792475 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.11 = 426764319 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.12 = 565481529 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.13 = 427562061 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.14 = 565609241 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.15 = 420659575 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.16 = 566151389 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.17 = 421523462 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.18 = 566755960 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.19 = 421099359 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.20 = 567294297 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.21 = 422883599 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.22 = 566883827 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.23 = 423526006 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.24 = 567407631 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.25 = 424661019 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.26 = 567351868 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.27 = 426539891 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.28 = 558466381 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.29 = 446037896 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.30 = 564057018 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.31 = 451896014 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.32 = 564219813 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.33 = 453826557 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.34 = 565194939 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.35 = 456717377 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.36 = 564258622 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.37 = 458373142 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.38 = 565016983 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.39 = 460890690 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.40 = 565465454 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.41 = 459851182 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.42 = 566046585 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.43 = 453611210 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.44 = 566084196 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.45 = 454253576 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.46 = 567862097 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.47 = 455388648 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.48 = 566335945 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.49 = 457254296 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.50 = 567096869 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.51 = 457743032 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.52 = 566638079 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.53 = 459218446 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.54 = 566607635 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.55 = 463716983 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.56 = 462756724 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.1 = 242951 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.2 = 467432 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.3 = 58621 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.4 = 367945 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.5 = 50988 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.6 = 487812 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.7 = 48412 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.8 = 532702 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.9 = 56525 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.10 = 411325 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.11 = 56554 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.12 = 648700 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.13 = 57143 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.14 = 452329 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.15 = 79106 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.16 = 499304 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.17 = 73206 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.18 = 449286 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.19 = 82641 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.20 = 618607 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.21 = 74385 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.22 = 505841 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.23 = 86511 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.24 = 510058 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.25 = 82687 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.26 = 590938 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.27 = 93692 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.28 = 657481 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.29 = 21246 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.30 = 471914 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.31 = 22928 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.32 = 229823 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.33 = 23533 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.34 = 491366 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.35 = 23476 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.36 = 324577 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.37 = 23232 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.38 = 440617 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.39 = 22878 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.40 = 327258 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.41 = 22452 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.42 = 446355 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.43 = 21568 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.44 = 365545 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.45 = 22033 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.46 = 792610 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.47 = 22540 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.48 = 374840 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.49 = 22253 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.50 = 394221 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.51 = 22123 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.52 = 432359 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.53 = 21711 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.54 = 422770 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.55 = 4686 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.56 = 1656396 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.1 = 20539 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.2 = 142911 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.3 = 18918 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.4 = 95353 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.5 = 16111 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.6 = 93498 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.7 = 12394 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.8 = 64929 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.9 = 10862 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.10 = 51985 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.11 = 10734 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.12 = 78438 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.13 = 9998 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.14 = 176417 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.15 = 17198 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.16 = 68203 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.17 = 13245 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.18 = 136380 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.19 = 14588 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.20 = 134842 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.21 = 15204 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.22 = 109664 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.23 = 14804 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.24 = 71479 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.25 = 12997 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.26 = 115934 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.27 = 14617 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.28 = 122844 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.29 = 7400 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.30 = 17759 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.31 = 6544 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.32 = 48597 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.33 = 5469 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.34 = 17027 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.35 = 5008 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.36 = 21497 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.37 = 4381 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.38 = 16007 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.39 = 4052 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.40 = 15577 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.41 = 3730 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.42 = 14790 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.43 = 3242 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.44 = 14205 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.45 = 2994 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.46 = 12535 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.47 = 2801 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.48 = 12694 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.49 = 2611 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.50 = 179117 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.51 = 2397 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.52 = 11942 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.53 = 2527 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.54 = 11505 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.55 = 1495 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.56 = 200114 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.1 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.2 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.3 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.4 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.5 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.6 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.7 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.8 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.9 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.10 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.11 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.12 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.13 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.14 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.15 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.16 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.17 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.18 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.19 = 42 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.20 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.21 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.22 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.23 = 46 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.24 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.25 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.26 = 70 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.27 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.28 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.29 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.30 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.31 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.32 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.33 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.34 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.35 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.36 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.37 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.38 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.41 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.42 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.43 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.44 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.45 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.46 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.47 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.49 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.50 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.51 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.52 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.53 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.54 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.55 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.56 = 24 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.1 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.2 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.3 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.4 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.5 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.6 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.7 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.8 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.9 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.10 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.11 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.12 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.13 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.14 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.15 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.16 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.17 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.18 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.19 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.20 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.21 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.22 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.23 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.24 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.25 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.26 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.27 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.28 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.29 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.30 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.31 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.32 = 7 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.33 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.34 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.35 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.36 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.37 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.38 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.39 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.40 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.41 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.42 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.43 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.44 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.45 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.46 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.47 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.49 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.50 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.51 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.52 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.53 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.54 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.55 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.56 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.30 = 5 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.46 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.54 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.56 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.1 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.2 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.3 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.4 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.6 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.7 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.8 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.9 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.10 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.11 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.12 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.13 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.14 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.15 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.16 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.17 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.18 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.19 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.20 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.21 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.22 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.23 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.24 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.25 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.26 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.27 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.28 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.29 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.31 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.32 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.33 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.35 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.36 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.37 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.38 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.39 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.41 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.43 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.45 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.47 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.49 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.51 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.53 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.55 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.56 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.1 = 58 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.2 = 86 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.3 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.4 = 86 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.5 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.6 = 79 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.7 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.8 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.9 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.10 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.11 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.12 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.13 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.14 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.15 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.16 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.17 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.18 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.19 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.20 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.21 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.22 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.23 = 58 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.24 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.25 = 63 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.26 = 71 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.27 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.28 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.29 = 65 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.30 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.31 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.32 = 90 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.33 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.34 = 86 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.35 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.36 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.37 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.38 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.39 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.40 = 90 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.41 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.42 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.43 = 66 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.44 = 89 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.45 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.46 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.47 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.48 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.49 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.50 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.51 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.52 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.53 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.54 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.55 = 69 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.56 = 73 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.1 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.2 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.3 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.4 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.5 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.6 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.7 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.8 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.9 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.10 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.11 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.12 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.13 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.14 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.15 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.16 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.17 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.18 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.19 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.20 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.21 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.22 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.23 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.24 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.25 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.26 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.27 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.28 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.29 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.30 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.31 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.32 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.33 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.34 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.35 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.36 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.37 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.38 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.41 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.42 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.43 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.44 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.45 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.46 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.47 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.48 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.49 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.50 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.51 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.52 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.53 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.54 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.55 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.56 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.1 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.2 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.3 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.4 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.5 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.6 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.7 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.8 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.9 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.10 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.11 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.12 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.13 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.14 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.15 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.16 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.17 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.18 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.19 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.20 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.21 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.22 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.23 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.24 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.25 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.26 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.27 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.28 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.29 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.30 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.31 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.32 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.33 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.34 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.35 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.36 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.37 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.38 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.39 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.41 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.42 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.43 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.44 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.45 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.46 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.47 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.49 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.50 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.51 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.52 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.53 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.54 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.55 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.56 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.28 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.36 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.38 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.40 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.56 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.1 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.2 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.3 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.4 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.6 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.7 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.8 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.9 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.10 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.11 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.12 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.13 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.14 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.15 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.16 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.17 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.18 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.19 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.20 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.21 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.22 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.23 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.24 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.25 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.26 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.27 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.28 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.29 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.31 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.33 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.35 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.36 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.37 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.38 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.39 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.41 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.43 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.45 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.47 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.49 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.51 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.53 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.55 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.56 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.1 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.2 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.3 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.4 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.5 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.6 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.7 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.8 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.9 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.10 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.11 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.12 = 79 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.13 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.14 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.15 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.16 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.17 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.18 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.19 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.20 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.21 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.22 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.23 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.24 = 79 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.25 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.26 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.27 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.28 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.29 = 66 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.30 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.31 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.32 = 89 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.33 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.34 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.35 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.36 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.37 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.38 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.39 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.40 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.41 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.42 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.43 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.44 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.45 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.46 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.47 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.48 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.49 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.50 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.51 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.52 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.53 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.54 = 89 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.55 = 69 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.56 = 74 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.1 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.2 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.3 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.4 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.5 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.6 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.7 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.8 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.9 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.10 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.11 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.12 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.13 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.14 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.15 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.16 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.17 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.18 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.19 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.20 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.21 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.22 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.23 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.24 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.25 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.26 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.27 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.28 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.29 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.30 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.31 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.32 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.33 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.34 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.35 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.36 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.37 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.38 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.40 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.41 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.42 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.43 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.44 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.45 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.46 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.47 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.48 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.49 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.50 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.51 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.52 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.53 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.54 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.55 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.56 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.1 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.2 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.3 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.4 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.5 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.6 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.7 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.8 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.9 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.10 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.11 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.12 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.13 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.14 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.15 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.16 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.17 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.18 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.19 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.20 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.21 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.22 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.23 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.24 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.25 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.26 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.27 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.28 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.29 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.30 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.31 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.32 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.33 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.34 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.35 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.36 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.37 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.38 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.39 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.41 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.42 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.43 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.44 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.45 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.46 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.47 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.49 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.50 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.51 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.52 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.53 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.54 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.55 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.56 = 23 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.36 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.38 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.46 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.56 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.1 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.2 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.3 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.4 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.6 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.7 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.8 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.9 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.10 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.11 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.12 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.13 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.14 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.15 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.16 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.17 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.18 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.19 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.20 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.21 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.22 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.23 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.24 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.25 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.26 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.27 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.28 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.29 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.31 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.33 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.35 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.36 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.37 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.38 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.39 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.41 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.43 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.45 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.47 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.49 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.51 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.53 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.55 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.56 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.1 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.2 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.3 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.4 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.5 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.6 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.7 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.8 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.9 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.10 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.11 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.12 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.13 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.14 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.15 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.16 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.17 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.18 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.19 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.20 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.21 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.22 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.23 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.24 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.25 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.26 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.27 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.28 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.29 = 66 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.30 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.31 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.32 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.33 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.34 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.35 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.36 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.37 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.38 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.39 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.40 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.41 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.42 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.43 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.44 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.45 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.46 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.47 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.48 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.49 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.50 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.51 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.52 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.53 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.54 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.55 = 69 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.56 = 73 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.1 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.2 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.3 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.4 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.5 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.6 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.7 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.8 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.9 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.10 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.11 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.12 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.13 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.14 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.15 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.16 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.17 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.18 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.19 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.20 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.21 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.22 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.23 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.24 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.25 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.26 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.27 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.28 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.29 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.30 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.31 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.32 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.33 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.34 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.35 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.36 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.37 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.38 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.40 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.41 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.42 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.43 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.44 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.45 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.46 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.47 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.48 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.49 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.50 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.51 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.52 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.53 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.54 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.55 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.56 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.56 = 0 \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/cpuusage.robot b/tests/network/f5/bigip/snmp/cpuusage.robot new file mode 100644 index 000000000..70a10cdf1 --- /dev/null +++ b/tests/network/f5/bigip/snmp/cpuusage.robot @@ -0,0 +1,30 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +cpu-usage ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=cpu-usage + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/cpu + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} --filter-counters='^usage-5s' --filter-name='10' OK: CPU '10' CPU Usage 5sec : 35 % | 'usage_5s'=35%;;;0;100 + ... 2 --filter-name='12' OK: CPU '12' CPU Usage 5sec : 36 %, CPU Usage 1min : 36 %, CPU Usage 5min : 36 %, CPU User 5sec : 31 %, CPU User 1min : 31 %, CPU User 5min : 32 %, CPU IO Wait 5sec : 0 %, CPU IO Wait 1min : 0 %, CPU IO Wait 5min : 0 %, CPU System 5sec : 3 %, CPU System 1min : 4 %, CPU System 5min : 3 %, CPU Idle 5sec : 62 %, CPU Idle 1min : 62 %, CPU Idle 5min : 62 % | 'usage_5s'=36%;;;0;100 'usage_1m'=36%;;;0;100 'usage_5m'=36%;;;0;100 'user_5s'=31%;;;0;100 'user_1m'=31%;;;0;100 'user_5m'=32%;;;0;100 'iowait_5s'=0%;;;0;100 'iowait_1m'=0%;;;0;100 'iowait_5m'=0%;;;0;100 'system_5s'=3%;;;0;100 'system_1m'=4%;;;0;100 'system_5m'=3%;;;0;100 'idle_5s'=62%;;;0;100 'idle_1m'=62%;;;0;100 'idle_5m'=62%;;;0;100 + ... 3 --warning-usage-1m='30' --filter-counters='^usage-1m' --filter-name='0' WARNING: CPU '0' CPU Usage 1min : 39 % - CPU '10' CPU Usage 1min : 35 % - CPU '20' CPU Usage 1min : 38 % - CPU '30' CPU Usage 1min : 31 % | 'usage_1m_0'=39%;0:30;;0;100 'usage_1m_10'=35%;0:30;;0;100 'usage_1m_20'=38%;0:30;;0;100 'usage_1m_30'=31%;0:30;;0;100 'usage_1m_40'=29%;0:30;;0;100 'usage_1m_50'=30%;0:30;;0;100 + ... 4 --critical-usage-5m='32' --filter-counters='^usage-5m' --filter-name='0' CRITICAL: CPU '0' CPU Usage 5min : 39 % - CPU '10' CPU Usage 5min : 37 % - CPU '20' CPU Usage 5min : 38 % | 'usage_5m_0'=39%;;0:32;0;100 'usage_5m_10'=37%;;0:32;0;100 'usage_5m_20'=38%;;0:32;0;100 'usage_5m_30'=31%;;0:32;0;100 'usage_5m_40'=29%;;0:32;0;100 'usage_5m_50'=30%;;0:32;0;100 \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/failover.robot b/tests/network/f5/bigip/snmp/failover.robot new file mode 100644 index 000000000..68f5f41dd --- /dev/null +++ b/tests/network/f5/bigip/snmp/failover.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +failover ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=failover + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: Sync status is 'inSync' - Failover status is 'active' + ... 2 --filter-counters='.*' OK: Sync status is 'inSync' - Failover status is 'active' + ... 3 --warning-sync-status='\\\%{syncstatus} eq "inSync"' WARNING: Sync status is 'inSync' + ... 4 --critical-sync-status='\\\%{syncstatus} =~ /inSync/' CRITICAL: Sync status is 'inSync' + ... 5 --warning-failover-status='\\\%{failoverstatus} eq "active"' WARNING: Failover status is 'active' + ... 6 --critical-failover-status='\\\%{failoverstatus} =~ /active/' CRITICAL: Failover status is 'active' \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/hardware.robot b/tests/network/f5/bigip/snmp/hardware.robot new file mode 100644 index 000000000..effccc357 --- /dev/null +++ b/tests/network/f5/bigip/snmp/hardware.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin +... --mode=hardware +... --hostname=${HOSTNAME} +... --snmp-version=${SNMPVERSION} +... --snmp-port=${SNMPPORT} +... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + +*** Test Cases *** +hardware ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All 7 components are ok [4/4 fans, 2/2 psus, 1/1 temperatures]. | '1#hardware.fan.speed.rpm'=0rpm;;;0; '2#hardware.fan.speed.rpm'=0rpm;;;0; '3#hardware.fan.speed.rpm'=0rpm;;;0; '4#hardware.fan.speed.rpm'=0rpm;;;0; '1#hardware.temperature.celsius'=18.00C;;;; 'hardware.fan.count'=4;;;; 'hardware.psu.count'=2;;;; 'hardware.temperature.count'=1;;;; + ... 2 --filter='.*' --no-component=CRITICAL CRITICAL: No components are checked. + ... 3 --component='temperature' OK: All 1 components are ok [1/1 temperatures]. | '1#hardware.temperature.celsius'=18.00C;;;; 'hardware.temperature.count'=1;;;; + ... 4 --threshold-overload='fan,CRITICAL,^good$' CRITICAL: Fan '1' status is 'good' - Fan '2' status is 'good' - Fan '3' status is 'good' - Fan '4' status is 'good' | '1#hardware.fan.speed.rpm'=0rpm;;;0; '2#hardware.fan.speed.rpm'=0rpm;;;0; '3#hardware.fan.speed.rpm'=0rpm;;;0; '4#hardware.fan.speed.rpm'=0rpm;;;0; '1#hardware.temperature.celsius'=18.00C;;;; 'hardware.fan.count'=4;;;; 'hardware.psu.count'=2;;;; 'hardware.temperature.count'=1;;;; + ... 5 --warning='temperature,.*,20:22' WARNING: Temperature '1' is 18.00 C | '1#hardware.fan.speed.rpm'=0rpm;;;0; '2#hardware.fan.speed.rpm'=0rpm;;;0; '3#hardware.fan.speed.rpm'=0rpm;;;0; '4#hardware.fan.speed.rpm'=0rpm;;;0; '1#hardware.temperature.celsius'=18.00C;20:22;;; 'hardware.fan.count'=4;;;; 'hardware.psu.count'=2;;;; 'hardware.temperature.count'=1;;;; + ... 6 --critical='temperature,.*,19:25' --warning='temperature,.*,20:22' CRITICAL: Temperature '1' is 18.00 C | '1#hardware.fan.speed.rpm'=0rpm;;;0; '2#hardware.fan.speed.rpm'=0rpm;;;0; '3#hardware.fan.speed.rpm'=0rpm;;;0; '4#hardware.fan.speed.rpm'=0rpm;;;0; '1#hardware.temperature.celsius'=18.00C;20:22;19:25;; 'hardware.fan.count'=4;;;; 'hardware.psu.count'=2;;;; 'hardware.temperature.count'=1;;;; diff --git a/tests/network/f5/bigip/snmp/list-trunks.robot b/tests/network/f5/bigip/snmp/list-trunks.robot new file mode 100644 index 000000000..5356a69e8 --- /dev/null +++ b/tests/network/f5/bigip/snmp/list-trunks.robot @@ -0,0 +1,28 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +list-trunks ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=list-trunks + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List trunks: 'Anonymized 234' [status: up] [speed: 20000] + ... 2 --filter-name='toto' List trunks: 'Anonymized 234' [status: up] [speed: 20000] #filter not working \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/list-virtualservers.robot b/tests/network/f5/bigip/snmp/list-virtualservers.robot new file mode 100644 index 000000000..6d78e72fe --- /dev/null +++ b/tests/network/f5/bigip/snmp/list-virtualservers.robot @@ -0,0 +1,28 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +list-virtualservers ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=list-virtualservers + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List virtual servers: [name: /Common/ActiveSync.app/ActiveSync_combined_http] [status: blue] [state: enabled] [name: /Common/ActiveSync.app/ActiveSync_combined_https] [status: green] [state: enabled] + ... 2 --filter-name='toto' List virtual servers: \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/listnodes.robot b/tests/network/f5/bigip/snmp/listnodes.robot new file mode 100644 index 000000000..843127338 --- /dev/null +++ b/tests/network/f5/bigip/snmp/listnodes.robot @@ -0,0 +1,28 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +list-nodes ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=list-nodes + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List nodes: [name: /Common/172.20.15.202] [status: blue] [state: enabled] [name: /Common/172.20.2.117] [status: blue] [state: enabled] [name: /Common/172.20.2.127] [status: blue] [state: enabled] [name: /Common/172.20.2.132] [status: blue] [state: enabled] + ... 2 --filter-name='toto' List nodes: \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/listpools.robot b/tests/network/f5/bigip/snmp/listpools.robot new file mode 100644 index 000000000..92836995c --- /dev/null +++ b/tests/network/f5/bigip/snmp/listpools.robot @@ -0,0 +1,28 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +list-pools ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=list-pools + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List pools: [name: /Common/AN-577_pool] [status: green] [state: enabled] [name: /Common/ActiveDirectory_pool] [status: green] [state: enabled] [name: /Common/ActiveSync.app/ActiveSync_as_pool7] [status: green] [state: enabled] [name: /Common/ActiveSync_cert.app/ActiveSync_cert_as_pool7] [status: green] [state: enabled] + ... 2 --filter-name='/Common/AN-577_pool' List pools: [name: /Common/AN-577_pool] [status: green] [state: enabled] \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/node-status.robot b/tests/network/f5/bigip/snmp/node-status.robot new file mode 100644 index 000000000..7e435d067 --- /dev/null +++ b/tests/network/f5/bigip/snmp/node-status.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +node-status ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=node-status + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All nodes are ok | '/Common/delco#node.connections.server.current.count'=0;;;0; + ... 2 --filter-name='/Common/owa-vip' OK: Node '/Common/owa-vip' status: blue [state: enabled] [reason: Anonymized 164], current server connections : 0 | '/Common/owa-vip#node.connections.server.current.count'=0;;;0; + ... 3 --unknown-status='\\\%{state} eq "enabled"' UNKNOWN: Node '/Common/delco' status: blue [state: enabled] [reason: Anonymized 027] - Node '/Common/owa-vip' status: blue [state: enabled] [reason: Anonymized 164] + ... 4 --critical-status='\\\%{state} eq "enabled"' CRITICAL: Node '/Common/delco' status: blue [state: enabled] [reason: Anonymized 027] - Node '/Common/owa-vip' status: blue [state: enabled] [reason: Anonymized 164] + ... 5 --warning-status='\\\%{state} eq "enabled"' WARNING: Node '/Common/delco' status: blue [state: enabled] [reason: Anonymized 027] - Node '/Common/owa-vip' status: blue [state: enabled] [reason: Anonymized 164] + ... 6 --warning-current-server-connections=10 --critical-current-server-connections=5 CRITICAL: Node '/Common/172.20.25.4' current server connections : 59 - Node '/Common/eloi-prod-vs' current server connections : 15 - Node '/Common/ibcm-prd-app1' \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/pool-status.robot b/tests/network/f5/bigip/snmp/pool-status.robot new file mode 100644 index 000000000..8adfc28b8 --- /dev/null +++ b/tests/network/f5/bigip/snmp/pool-status.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +pool-status ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=pool-status + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All pools are ok | '/Common/IDM_pool#pool.connections.server.current.count'=0;;;0; '/Common/IDM_pool#pool.members.active.count'=0;;;0; + ... 2 --filter-name='/Common/IDM_pool' OK: Pool '/Common/IDM_pool' status: blue [state: enabled] [reason: Anonymized 149] - current server connections: 0, current active members: 0 | '/Common/IDM_pool#pool.connections.server.current.count'=0;;;0; '/Common/IDM_pool#pool.members.active.count'=0;;;0; '/Common/IDM_pool#pool.members.total.count'=1;;;0; + ... 3 --unknown-status='\\\%{state} eq "enabled"' UNKNOWN: Pool '/Common/IDM_pool' status: blue [state: enabled] [reason: Anonymized 149] - Pool '/Common/OWA_pool' status: green [state: enabled] [reason: Anonymized 183] + ... 4 --critical-status='\\\%{state} eq "enabled"' CRITICAL: Pool '/Common/IDM_pool' status: blue [state: enabled] [reason: Anonymized 149] - Pool '/Common/OWA_pool' status: green [state: enabled] [reason: Anonymized 183] + ... 5 --warning-status='\\\%{state} eq "enabled"' WARNING: Pool '/Common/IDM_pool' status: blue [state: enabled] [reason: Anonymized 149] - Pool '/Common/OWA_pool' status: green [state: enabled] [reason: Anonymized 183] + ... 6 --warning-current-server-connections=10 --critical-current-server-connections=5 CRITICAL: Pool '/Common/Eloi_pool' current server connections: 10 - Pool '/Common/Portan_pool' current server connections: 6 \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/slim-f5-bigip.snmpwalk b/tests/network/f5/bigip/snmp/slim-f5-bigip.snmpwalk new file mode 100644 index 000000000..c5490f886 --- /dev/null +++ b/tests/network/f5/bigip/snmp/slim-f5-bigip.snmpwalk @@ -0,0 +1,20700 @@ +.1.3.6.1.2.1.2.2.1.2.32 = STRING: Anonymized 056 +.1.3.6.1.2.1.2.2.1.2.576 = STRING: 1.0 +.1.3.6.1.2.1.2.2.1.2.592 = STRING: 2.0 +.1.3.6.1.2.1.2.2.1.2.608 = STRING: 3.0 +.1.3.6.1.2.1.2.2.1.2.624 = STRING: 4.0 +.1.3.6.1.2.1.2.2.1.2.640 = STRING: 5.0 +.1.3.6.1.2.1.2.2.1.2.656 = STRING: 6.0 +.1.3.6.1.2.1.2.2.1.2.1072 = STRING: 10.0 +.1.3.6.1.2.1.2.2.1.2.1088 = STRING: 11.0 +.1.3.6.1.2.1.2.2.1.2.1104 = STRING: 12.0 +.1.3.6.1.2.1.2.2.1.2.1120 = STRING: 7.0 +.1.3.6.1.2.1.2.2.1.2.1136 = STRING: 8.0 +.1.3.6.1.2.1.2.2.1.2.1152 = STRING: 9.0 +.1.3.6.1.2.1.2.2.1.2.2112 = STRING: /Common/http-tunnel +.1.3.6.1.2.1.2.2.1.2.2128 = STRING: /Common/socks-tunnel +.1.3.6.1.2.1.2.2.1.2.2144 = STRING: /Common/VLAN-807 +.1.3.6.1.2.1.2.2.1.2.2160 = STRING: /Common/VLAN-808 +.1.3.6.1.2.1.2.2.1.2.2176 = STRING: /Common/VLAN-809 +.1.3.6.1.2.1.2.2.1.2.2192 = STRING: /Common/VLAN-810 +.1.3.6.1.2.1.2.2.1.2.2208 = STRING: /Common/VLAN-814 +.1.3.6.1.2.1.2.2.1.2.2224 = STRING: /Common/VLAN-HA +.1.3.6.1.2.1.2.2.1.2.2240 = STRING: /Common/VLAN-INTERNAL +.1.3.6.1.2.1.2.2.1.2.2256 = STRING: Anonymized 219 +.1.3.6.1.2.1.2.2.1.2.2272 = STRING: Anonymized 112 +.1.3.6.1.2.1.2.2.1.2.2288 = STRING: /Common/connectivity_exch +.1.3.6.1.2.1.2.2.1.2.2304 = STRING: Anonymized 163 +.1.3.6.1.2.1.2.2.1.8.32 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.576 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.592 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.608 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.624 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.640 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.656 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.1072 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.1088 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.1104 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.1120 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.1136 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.1152 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.2112 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.8.2128 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.8.2144 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2160 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2176 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2192 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2208 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2224 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2240 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.2256 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.8.2272 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.8.2288 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.8.2304 = INTEGER: 4 +.1.3.6.1.2.1.2.2.1.20.32 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.576 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.592 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.608 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.624 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.640 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.656 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1072 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1088 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1104 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1120 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1136 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1152 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2112 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2128 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2144 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2160 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2176 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2192 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2208 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2224 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2240 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2256 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2272 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2288 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.2304 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.21.32 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.576 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.592 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.608 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.624 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.640 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.656 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1072 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1088 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1104 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1120 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1136 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1152 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2112 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2128 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2144 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2160 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2176 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2192 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2208 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2224 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2240 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2256 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2272 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2288 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.2304 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.22.32 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.576 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.592 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.608 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.624 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.640 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.656 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1072 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1088 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1104 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1120 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1136 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1152 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2112 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2128 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2144 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2160 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2176 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2192 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2208 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2224 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2240 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2256 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2272 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2288 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.2304 = OID: .0.0 +.1.3.6.1.4.1.3375.2.1.1.1.1.13.0 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.1.1.1.21.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.1.2.1.8.0 = Gauge32: 5395 +.1.3.6.1.4.1.3375.2.1.1.2.1.15.0 = Gauge32: 5242 +.1.3.6.1.4.1.3375.2.1.1.2.9.2.0 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.1.2.9.6.0 = Counter64: 37683174 +.1.3.6.1.4.1.3375.2.1.1.2.9.9.0 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.1.2.10.2.0 = Gauge32: 4574 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.1.12.84.114.117.110.107.95.68.77.90.69.120.116 = STRING: Anonymized 234 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.2.12.84.114.117.110.107.95.68.77.90.69.120.116 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.3.12.84.114.117.110.107.95.68.77.90.69.120.116 = Hex-STRING: 00 94 A1 73 89 90 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.4.12.84.114.117.110.107.95.68.77.90.69.120.116 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.5.12.84.114.117.110.107.95.68.77.90.69.120.116 = Gauge32: 20000 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.6.12.84.114.117.110.107.95.68.77.90.69.120.116 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.7.12.84.114.117.110.107.95.68.77.90.69.120.116 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.8.12.84.114.117.110.107.95.68.77.90.69.120.116 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.9.12.84.114.117.110.107.95.68.77.90.69.120.116 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.2.12.1.2.1.10.12.84.114.117.110.107.95.68.77.90.69.120.116 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.2.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 18090413459 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.3.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 18361203791678 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.4.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 18473080271 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.5.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 18615336901229 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.8.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.9.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.10.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.2.12.2.3.1.11.12.84.114.117.110.107.95.68.77.90.69.120.116 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.2.12.3.2.1.2.12.84.114.117.110.107.95.68.77.90.69.120.116.3.53.46.48 = STRING: "5.0" +.1.3.6.1.4.1.3375.2.1.2.12.3.2.1.2.12.84.114.117.110.107.95.68.77.90.69.120.116.3.54.46.48 = STRING: "6.0" +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.2 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.3 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.4 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.1 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.2 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.3 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.4 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.2 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.2.1 = INTEGER: 18 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.1.3.48.46.48 = STRING: "0.0" +.1.3.6.1.4.1.3375.2.1.8.2.3.1.1.3.48.46.50 = STRING: "0.2" +.1.3.6.1.4.1.3375.2.1.8.2.3.1.1.3.48.46.52 = STRING: "0.4" +.1.3.6.1.4.1.3375.2.1.8.2.3.1.1.3.48.46.54 = STRING: "0.6" +.1.3.6.1.4.1.3375.2.1.8.2.3.1.2.3.48.46.48 = Counter64: 25589 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.2.3.48.46.50 = Counter64: 25589 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.2.3.48.46.52 = Counter64: 25589 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.2.3.48.46.54 = Counter64: 25589 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.3.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.3.3.48.46.50 = Counter64: 2 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.3.3.48.46.52 = Counter64: 4 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.3.3.48.46.54 = Counter64: 6 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.4.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.4.3.48.46.50 = Counter64: 2 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.4.3.48.46.52 = Counter64: 4 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.4.3.48.46.54 = Counter64: 6 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.5.3.48.46.48 = Counter64: 1 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.5.3.48.46.50 = Counter64: 1 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.5.3.48.46.52 = Counter64: 1 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.5.3.48.46.54 = Counter64: 1 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.6.3.48.46.48 = Counter64: 2106049056 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.6.3.48.46.50 = Counter64: 2128787163 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.6.3.48.46.52 = Counter64: 2038802537 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.6.3.48.46.54 = Counter64: 2004965997 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.7.3.48.46.48 = Counter64: 2122564047052 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.7.3.48.46.50 = Counter64: 2110224026804 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.7.3.48.46.52 = Counter64: 2102565313847 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.7.3.48.46.54 = Counter64: 1960137627678 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.8.3.48.46.48 = Counter64: 1013011233 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.8.3.48.46.50 = Counter64: 1003219419 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.8.3.48.46.52 = Counter64: 981783727 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.8.3.48.46.54 = Counter64: 994056903 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.9.3.48.46.48 = Counter64: 2496091040842 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.9.3.48.46.50 = Counter64: 2366042607237 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.9.3.48.46.52 = Counter64: 2290503412000 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.9.3.48.46.54 = Counter64: 2443698728102 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.10.3.48.46.48 = Counter64: 4455 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.10.3.48.46.50 = Counter64: 4570 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.10.3.48.46.52 = Counter64: 4458 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.10.3.48.46.54 = Counter64: 4553 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.11.3.48.46.48 = Counter64: 44627608 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.11.3.48.46.50 = Counter64: 72968727 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.11.3.48.46.52 = Counter64: 19671930 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.11.3.48.46.54 = Counter64: 23549738 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.12.3.48.46.48 = Gauge32: 1324 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.12.3.48.46.50 = Gauge32: 1368 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.12.3.48.46.52 = Gauge32: 1369 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.12.3.48.46.54 = Gauge32: 1331 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.13.3.48.46.48 = Counter64: 1207315909 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.13.3.48.46.50 = Counter64: 1249624599 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.13.3.48.46.52 = Counter64: 1167372522 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.13.3.48.46.54 = Counter64: 1186260176 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.14.3.48.46.48 = Counter64: 2169730919747 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.14.3.48.46.50 = Counter64: 2149148391581 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.14.3.48.46.52 = Counter64: 2154597838656 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.14.3.48.46.54 = Counter64: 2015975620419 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.15.3.48.46.48 = Counter64: 2267448318 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.15.3.48.46.50 = Counter64: 2189225035 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.15.3.48.46.52 = Counter64: 2109435839 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.15.3.48.46.54 = Counter64: 2217097064 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.16.3.48.46.48 = Counter64: 2465643308443 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.16.3.48.46.50 = Counter64: 2342349632492 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.16.3.48.46.52 = Counter64: 2264844587025 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.16.3.48.46.54 = Counter64: 2418420839832 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.17.3.48.46.48 = Counter64: 4357 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.17.3.48.46.50 = Counter64: 4584 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.17.3.48.46.52 = Counter64: 4310 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.17.3.48.46.54 = Counter64: 4424 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.18.3.48.46.48 = Counter64: 16413271 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.18.3.48.46.50 = Counter64: 32569634 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.18.3.48.46.52 = Counter64: 16370250 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.18.3.48.46.54 = Counter64: 20229220 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.19.3.48.46.48 = Gauge32: 1303 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.19.3.48.46.50 = Gauge32: 1291 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.19.3.48.46.52 = Gauge32: 1331 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.19.3.48.46.54 = Gauge32: 1324 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.20.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.20.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.20.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.20.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.21.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.21.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.21.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.21.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.22.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.22.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.22.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.22.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.23.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.23.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.23.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.23.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.24.3.48.46.48 = Counter64: 44411 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.24.3.48.46.50 = Counter64: 322540 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.24.3.48.46.52 = Counter64: 47827 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.24.3.48.46.54 = Counter64: 48592 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.25.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.25.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.25.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.25.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.26.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.26.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.26.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.26.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.27.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.27.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.27.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.27.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.28.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.28.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.28.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.28.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.29.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.29.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.29.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.29.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.30.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.30.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.30.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.30.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.31.3.48.46.48 = Counter64: 22695378944 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.31.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.31.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.31.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.32.3.48.46.48 = Counter64: 2175382320 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.32.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.32.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.32.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.33.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.33.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.33.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.33.3.48.46.54 = Counter64: 1 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.34.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.34.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.34.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.34.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.35.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.35.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.35.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.35.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.36.3.48.46.48 = Counter64: 23565697 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.36.3.48.46.50 = Counter64: 23476529 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.36.3.48.46.52 = Counter64: 23885404 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.36.3.48.46.54 = Counter64: 23947907 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.37.3.48.46.48 = Gauge32: 15 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.37.3.48.46.50 = Gauge32: 12 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.37.3.48.46.52 = Gauge32: 10 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.37.3.48.46.54 = Gauge32: 20 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.38.3.48.46.48 = Gauge32: 15 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.38.3.48.46.50 = Gauge32: 12 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.38.3.48.46.52 = Gauge32: 11 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.38.3.48.46.54 = Gauge32: 18 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.39.3.48.46.48 = Gauge32: 15 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.39.3.48.46.50 = Gauge32: 11 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.39.3.48.46.52 = Gauge32: 10 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.39.3.48.46.54 = Gauge32: 12 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.40.3.48.46.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.40.3.48.46.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.40.3.48.46.52 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.40.3.48.46.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.41.3.48.46.48 = Gauge32: 22163456 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.41.3.48.46.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.41.3.48.46.52 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.41.3.48.46.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.42.3.48.46.48 = Gauge32: 2124396 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.42.3.48.46.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.42.3.48.46.52 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.42.3.48.46.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.43.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.43.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.43.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.43.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.44.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.44.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.44.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.44.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.45.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.45.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.45.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.45.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.46.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.46.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.46.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.46.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.47.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.47.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.47.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.47.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.48.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.48.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.48.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.48.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.49.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.49.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.49.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.49.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.50.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.50.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.50.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.50.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.51.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.51.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.51.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.51.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.52.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.52.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.52.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.52.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.53.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.53.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.53.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.53.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.54.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.54.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.54.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.54.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.55.3.48.46.48 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.55.3.48.46.50 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.55.3.48.46.52 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.8.2.3.1.55.3.48.46.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.1.14.1.1.0 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.1.14.3.1.0 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.13.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.14.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = "" +.1.3.6.1.4.1.3375.2.2.4.1.2.1.16.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = "" +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = Gauge32: 59 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = Gauge32: 15 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = Gauge32: 21 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = Gauge32: 61 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = Gauge32: 123 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = Gauge32: 857 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = Gauge32: 823 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = Gauge32: 833 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = Gauge32: 606 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = Gauge32: 295 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = Gauge32: 314 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = Gauge32: 341 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = Gauge32: 348 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = Gauge32: 140 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = Gauge32: 8 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.1.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = Hex-STRING: AC 14 04 43 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = Hex-STRING: AC 14 02 42 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = Hex-STRING: AC 14 05 03 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = Hex-STRING: AC 14 02 0B +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = Hex-STRING: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = Hex-STRING: AC 14 C8 2C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = Hex-STRING: AC 14 02 8A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = Hex-STRING: AC 14 17 E1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = Hex-STRING: AC 14 02 36 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = Hex-STRING: AC 14 02 4B +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = Hex-STRING: AC 14 02 51 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = Hex-STRING: AC 14 02 52 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = Hex-STRING: AC 14 19 01 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = Hex-STRING: AC 14 19 02 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = Hex-STRING: AC 14 19 03 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = Hex-STRING: AC 14 19 04 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = Hex-STRING: AC 14 19 05 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = Hex-STRING: AC 14 19 06 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = Hex-STRING: AC 14 04 0A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = Hex-STRING: AC 14 04 1A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = Hex-STRING: AC 14 05 17 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = Hex-STRING: AC 14 05 26 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = Hex-STRING: AC 14 05 59 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = Hex-STRING: AC 14 05 60 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = Hex-STRING: AC 14 05 62 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = Hex-STRING: AC 14 05 DF +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = Hex-STRING: AC 14 02 3A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = Hex-STRING: AC 14 02 75 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = Hex-STRING: AC 14 02 7F +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = Hex-STRING: AC 14 02 84 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = Hex-STRING: AC 14 02 88 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = Hex-STRING: AC 14 02 8C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = Hex-STRING: AC 14 02 8E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = Hex-STRING: AC 14 23 33 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = Hex-STRING: AC 14 23 34 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = Hex-STRING: AC 14 05 6C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = Hex-STRING: AC 14 05 7F +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = Hex-STRING: AC 14 05 82 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = Hex-STRING: AC 14 05 BD +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = Hex-STRING: AC 14 02 74 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = Hex-STRING: AC 14 C8 0F +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = Hex-STRING: AC 14 0F CA +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = Hex-STRING: AC 14 18 9D +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = Hex-STRING: C0 A8 E3 01 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = Hex-STRING: C0 A8 E4 01 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = Hex-STRING: 5F 83 89 41 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = Hex-STRING: 5F 83 89 42 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = Hex-STRING: AC 14 05 91 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = Hex-STRING: AC 14 05 20 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = Hex-STRING: AC 14 05 3A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = Hex-STRING: AC 14 2B 0A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = Hex-STRING: AC 14 17 B9 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = Hex-STRING: C0 A8 28 10 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = Hex-STRING: C0 A8 28 11 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = Hex-STRING: C0 A8 2D 0B +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = Hex-STRING: C0 A8 2D 0C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = Hex-STRING: C0 A8 28 47 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = Hex-STRING: AC 14 04 0E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = Hex-STRING: AC 14 04 0F +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = Hex-STRING: AC 14 02 23 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = Hex-STRING: AC 14 02 2C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = Hex-STRING: AC 14 04 07 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = Hex-STRING: AC 14 04 08 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = Hex-STRING: AC 14 04 36 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = Hex-STRING: AC 14 04 37 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = Hex-STRING: AC 14 04 49 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = Hex-STRING: AC 14 04 4A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = Hex-STRING: AC 14 C8 2D +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = Hex-STRING: AC 14 06 1E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = Hex-STRING: AC 14 05 F9 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = Hex-STRING: AC 14 C8 5D +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = Hex-STRING: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = Hex-STRING: C0 A8 2A 0B +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = Hex-STRING: C0 A8 2A 0C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = Hex-STRING: AC 14 C8 2E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = Hex-STRING: AC 14 23 4F +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = Hex-STRING: AC 14 77 01 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = Hex-STRING: AC 14 17 BA +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = Hex-STRING: AC 14 02 3D +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = Hex-STRING: AC 14 C8 51 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = Hex-STRING: AC 14 C8 3C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = Hex-STRING: 5E 17 FB 7E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = Hex-STRING: C0 A8 2A 15 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = Hex-STRING: C0 A8 2A 16 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = Hex-STRING: C0 A8 2B 0B +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = Hex-STRING: C0 A8 2B 0C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = Hex-STRING: C0 A8 2B 15 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = Hex-STRING: C0 A8 2B 16 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = STRING: Anonymized 109 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = STRING: Anonymized 126 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = Hex-STRING: AC 14 02 9A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = Hex-STRING: AC 14 C8 3F +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = Hex-STRING: AC 14 0F 57 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = Hex-STRING: AC 14 0F 58 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = Hex-STRING: AC 14 17 A5 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = Hex-STRING: AC 14 23 93 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = Hex-STRING: AC 14 23 C6 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = Hex-STRING: AC 14 0F 7F +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = Hex-STRING: AC 14 0F 7E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = Hex-STRING: AC 14 23 BD +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = Hex-STRING: AC 14 23 BC +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = Hex-STRING: AC 14 0F C9 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = Hex-STRING: AC 14 0F 59 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = Hex-STRING: AC 14 C8 27 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = Hex-STRING: AC 14 17 E2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = Hex-STRING: AC 14 2A 21 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = Hex-STRING: 59 B9 3B 9E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = Hex-STRING: C0 A8 1A 0A +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = Hex-STRING: C0 A8 2E 0B +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = Hex-STRING: C0 A8 2E 0C +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = Hex-STRING: C0 A8 2E 0D +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = Hex-STRING: AC 14 0F B6 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = Hex-STRING: AC 14 02 0E +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = Hex-STRING: AC 14 C8 36 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = Hex-STRING: AC 14 C8 35 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = Hex-STRING: AC 1C 01 19 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = Hex-STRING: AC 14 15 A2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = Hex-STRING: AC 14 C8 50 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Hex-STRING: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Hex-STRING: AC 14 05 F8 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = Hex-STRING: AC 14 C8 29 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Hex-STRING: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Hex-STRING: AC 14 0F D1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.2.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Hex-STRING: AC 14 0F D0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.3.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.4.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.5.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = STRING: Anonymized 027 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = STRING: Anonymized 164 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = STRING: Anonymized 007 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = STRING: Anonymized 060 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = STRING: Anonymized 021 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = STRING: Anonymized 217 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = STRING: Anonymized 098 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = STRING: Anonymized 155 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = STRING: Anonymized 083 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = STRING: Anonymized 099 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = STRING: Anonymized 044 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = STRING: Anonymized 208 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = STRING: Anonymized 063 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = STRING: Anonymized 003 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = STRING: Anonymized 198 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = STRING: Anonymized 107 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = STRING: Anonymized 051 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = STRING: Anonymized 223 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = STRING: Anonymized 150 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = STRING: Anonymized 149 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = STRING: Anonymized 022 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = STRING: Anonymized 072 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = STRING: Anonymized 160 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = STRING: Anonymized 054 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = STRING: Anonymized 188 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = STRING: Anonymized 233 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = STRING: Anonymized 175 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = STRING: Anonymized 226 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = STRING: Anonymized 024 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = STRING: Anonymized 218 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = STRING: Anonymized 035 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = STRING: Anonymized 206 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = STRING: Anonymized 205 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = STRING: Anonymized 212 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = STRING: Anonymized 045 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = STRING: Anonymized 193 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = STRING: Anonymized 076 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = STRING: Anonymized 022 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = STRING: Anonymized 126 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = STRING: Anonymized 055 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = STRING: Anonymized 085 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = STRING: Anonymized 097 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = STRING: Anonymized 150 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = STRING: Anonymized 092 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = STRING: Anonymized 213 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = STRING: Anonymized 230 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = STRING: Anonymized 110 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = STRING: Anonymized 060 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = STRING: Anonymized 088 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = STRING: Anonymized 122 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = STRING: Anonymized 232 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = STRING: Anonymized 051 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = STRING: Anonymized 147 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = STRING: Anonymized 115 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = STRING: Anonymized 136 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = STRING: Anonymized 016 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = STRING: Anonymized 042 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = STRING: Anonymized 212 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = STRING: Anonymized 208 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = STRING: Anonymized 084 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = STRING: Anonymized 196 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = STRING: Anonymized 188 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = STRING: Anonymized 224 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = STRING: Anonymized 197 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = STRING: Anonymized 144 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = STRING: Anonymized 075 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = STRING: Anonymized 224 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = STRING: Anonymized 031 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = STRING: Anonymized 009 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = STRING: Anonymized 213 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = STRING: Anonymized 162 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = STRING: Anonymized 217 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = STRING: Anonymized 188 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = STRING: Anonymized 152 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = STRING: Anonymized 076 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = STRING: Anonymized 120 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = STRING: Anonymized 120 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = STRING: Anonymized 071 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = STRING: Anonymized 060 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = STRING: Anonymized 203 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = STRING: Anonymized 005 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = STRING: Anonymized 135 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = STRING: Anonymized 178 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = STRING: Anonymized 147 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = STRING: Anonymized 133 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = STRING: Anonymized 157 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = STRING: Anonymized 012 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = STRING: Anonymized 192 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = STRING: Anonymized 148 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = STRING: Anonymized 026 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = STRING: Anonymized 155 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = STRING: Anonymized 180 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = STRING: Anonymized 238 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = STRING: Anonymized 033 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = STRING: Anonymized 058 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = STRING: Anonymized 213 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = STRING: Anonymized 231 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = STRING: Anonymized 089 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = STRING: Anonymized 040 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = STRING: Anonymized 230 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = STRING: Anonymized 147 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = STRING: Anonymized 084 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = STRING: Anonymized 054 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = STRING: Anonymized 249 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = STRING: Anonymized 021 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = STRING: Anonymized 041 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = STRING: Anonymized 247 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = STRING: Anonymized 166 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = STRING: Anonymized 135 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = STRING: Anonymized 022 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = STRING: Anonymized 059 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = STRING: Anonymized 228 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 067 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 023 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = STRING: Anonymized 201 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 125 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 124 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.6.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 072 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.13.47.67.111.109.109.111.110.47.100.101.108.99.111 = STRING: "/Common/delco" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112 = STRING: "/Common/owa-vip" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.18.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51 = STRING: Anonymized 150 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112 = STRING: "/Common/Netmgt-vip" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.18.47.67.111.109.109.111.110.47.100.97.108.111.122.95.110.111.100.101 = STRING: "/Common/daloz_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115 = STRING: "/Common/fes-pre_vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108 = STRING: "/Common/ref-pre-ml" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101 = STRING: "/Common/webvue-gte" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52 = STRING: Anonymized 110 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53 = STRING: Anonymized 217 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49 = STRING: Anonymized 100 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50 = STRING: Anonymized 045 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49 = STRING: Anonymized 072 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.50 = STRING: Anonymized 140 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.51 = STRING: Anonymized 146 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52 = STRING: Anonymized 051 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53 = STRING: Anonymized 049 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.54 = STRING: Anonymized 002 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.49.48 = STRING: Anonymized 096 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51 = STRING: Anonymized 230 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56 = STRING: Anonymized 073 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57 = STRING: Anonymized 038 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.54 = STRING: Anonymized 194 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.57.56 = STRING: Anonymized 226 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.97.110.45.53.55.55.95.110.111.100.101 = STRING: "/Common/an-577_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115 = STRING: "/Common/annuaire_vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55 = STRING: Anonymized 008 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55 = STRING: Anonymized 001 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50 = STRING: Anonymized 051 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54 = STRING: Anonymized 093 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48 = STRING: Anonymized 201 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50 = STRING: Anonymized 068 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49 = STRING: Anonymized 142 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50 = STRING: Anonymized 158 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.48.56 = STRING: Anonymized 114 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55 = STRING: Anonymized 009 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48 = STRING: Anonymized 118 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57 = STRING: Anonymized 066 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115 = STRING: "/Common/eloi-prod-vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101 = STRING: "/Common/swannv2_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50 = STRING: Anonymized 077 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55 = STRING: Anonymized 067 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49 = STRING: Anonymized 195 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49 = STRING: Anonymized 095 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53 = STRING: Anonymized 027 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54 = STRING: Anonymized 194 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.98.100.100.49 = STRING: "/Common/fm15-prd-bdd1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.102.109.49.53.45.112.114.100.45.119.101.98.49 = STRING: "/Common/fm15-prd-web1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49 = STRING: "/Common/fm16-prd-web1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49 = STRING: "/Common/ibcm-prd-app1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115 = STRING: "/Common/mezzo-process" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49 = STRING: "/Common/port-prd-app1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50 = STRING: "/Common/port-prd-app2" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49 = STRING: "/Common/wall-prd-wam1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50 = STRING: "/Common/wall-prd-wam2" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49 = STRING: "/Common/zen2-prd-app1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54 = STRING: "/Common/owa-sso-1-2016" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54 = STRING: "/Common/owa-sso-2-2016" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108 = STRING: "/Common/Solman-vip_pool" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101 = STRING: "/Common/eliasse_vs_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49 = STRING: "/Common/exch16-prd-app1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50 = STRING: "/Common/exch16-prd-app2" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51 = STRING: "/Common/exch16-prd-app3" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52 = STRING: "/Common/exch16-prd-app4" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53 = STRING: "/Common/exch16-prd-app5" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54 = STRING: "/Common/exch16-prd-app6" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115 = STRING: "/Common/mezzo-viewer_vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.110.101.116.109.103.116.45.112.114.100.45.97.112.112.49 = STRING: "/Common/netmgt-prd-app1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.110.105.101.112.99.101.45.101.120.116.95.110.111.100.101 = STRING: "/Common/niepce-ext_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116 = STRING: "/Common/resasalles-meet" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108 = STRING: "/Common/voeux_sisso_ssl" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101 = STRING: "/Common/ws-prd-ds1_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101 = STRING: "/Common/ws-prd-ds2_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101 = STRING: "/Common/fes-prd-erp_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112 = STRING: "/Common/fss-dev-ctn1-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.49 = STRING: "/Common/ironlog-prd-app1" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101 = STRING: "/Common/meezov5-web_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101 = STRING: "/Common/prd-idm-vip_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100 = STRING: "/Common/propositions-prd" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115 = STRING: "/Common/telemaque2022_vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114 = STRING: Anonymized 028 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101 = STRING: "/Common/ws-prd-ens1_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101 = STRING: "/Common/ws-prd-ens2_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101 = STRING: "/Common/ws-prd-seg1_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101 = STRING: "/Common/ws-prd-seg2_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101 = STRING: "/Common/ws-prd-tue1_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101 = STRING: "/Common/ws-prd-tue2_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.53 = STRING: Anonymized 224 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.95.97.117.116.111.95.56.49.46.57.50.46.56.48.46.53.54 = STRING: Anonymized 127 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100 = STRING: "/Common/deport-podman-prd" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115 = STRING: "/Common/eloi-formation-vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112 = STRING: "/Common/fm22-prd-bdd1-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112 = STRING: "/Common/fm22-prd-web1-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112 = STRING: "/Common/gmao-prd-app2-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101 = STRING: "/Common/sext-dev-app_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112 = STRING: "/Common/vote-dev-app1-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112 = STRING: "/Common/vote-prd-app1-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112 = STRING: "/Common/vote-prd-app2-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112 = STRING: "/Common/vote-pre-app1-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112 = STRING: "/Common/vote-pre-app2-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = STRING: "/Common/fm20-prd-bdd1_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101 = STRING: "/Common/fm21-prd-bdd1_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115 = STRING: "/Common/ironlog-prd-app-vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112 = STRING: "/Common/pcvue-prd-web2-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112 = STRING: "/Common/print-prd-app3-app" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101 = STRING: "/Common/Event_claranet_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.27.47.67.111.109.109.111.110.47.95.97.117.116.111.95.49.57.50.46.49.54.56.46.50.54.46.49.48 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101 = STRING: "/Common/ws-prd-access1_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101 = STRING: "/Common/ws-prd-access2_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101 = STRING: "/Common/ws-prd-access3_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101 = STRING: "/Common/depot-questions_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.112.111.111.108 = STRING: "/Common/depot-questions_pool" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101 = STRING: "/Common/airs-prd-app-app_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101 = STRING: "/Common/airs-rec-app-app_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101 = STRING: "/Common/vip-prd-actimage_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101 = STRING: "/Common/gmao-prd-web1-app_node" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115 = STRING: "/Common/propositions-recette_vs" +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.33.47.67.111.109.109.111.110.47.100.115.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 180 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.37.47.67.111.109.109.111.110.47.110.105.101.112.99.101.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 064 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101 = STRING: Anonymized 220 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 159 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 239 +.1.3.6.1.4.1.3375.2.2.4.3.2.1.7.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 111 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = INTEGER: 5 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = INTEGER: 5 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.19.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.21.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = "" +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = Gauge32: 5 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = Gauge32: 3 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = Gauge32: 3 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = Gauge32: 3 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = Gauge32: 3 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = Gauge32: 5 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = Gauge32: 4 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.1.2.1.23.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = Gauge32: 10 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = Gauge32: 6 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = Gauge32: 182 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = Gauge32: 21 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = Gauge32: 97 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = Gauge32: 11 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = Gauge32: 138 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = Gauge32: 586 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = Gauge32: 57 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = Gauge32: 10 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = Gauge32: 1175 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = Gauge32: 2147 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = Gauge32: 9 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = Gauge32: 5 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = Gauge32: 88 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 308 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = Gauge32: 5 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108.13.47.67.111.109.109.111.110.47.100.101.108.99.111.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55.389 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49.4446 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.6081 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.6081 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49.636 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50.636 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112.8287 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49.4446 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53.1812 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54.1812 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.2001 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.2001 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.15.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108.13.47.67.111.109.109.111.110.47.100.101.108.99.111.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55.389 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49.4446 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.6081 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.6081 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49.636 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50.636 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112.8287 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49.4446 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53.1812 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54.1812 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.2001 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.2001 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101.80 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112.8080 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.16.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108.13.47.67.111.109.109.111.110.47.100.101.108.99.111.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55.389 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49.4446 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.6081 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.6081 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49.636 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50.636 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112.8287 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49.4446 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53.1812 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54.1812 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.2001 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.2001 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101.80 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112.8080 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112.8080 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112.8080 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112.8080 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112.8080 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112.8080 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = "" +.1.3.6.1.4.1.3375.2.2.5.3.2.1.18.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = "" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = STRING: "/Common/IDM_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = STRING: "/Common/OWA_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = STRING: "/Common/OWS_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = STRING: "/Common/Tim_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = STRING: "/Common/Eloi_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = STRING: "/Common/FM14_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = STRING: "/Common/FM16_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = STRING: "/Common/FM19_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = STRING: "/Common/FM20_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = STRING: "/Common/Anais_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = STRING: "/Common/Delco_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = STRING: "/Common/Flora_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = STRING: "/Common/Meibo_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = STRING: "/Common/Mezzo_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = STRING: "/Common/Swann_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = STRING: "/Common/AN-577_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = STRING: "/Common/Carlv5_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = STRING: "/Common/Deport_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = STRING: "/Common/Netmgt_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = STRING: "/Common/Solman_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = STRING: "/Common/WS1-ds_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = STRING: "/Common/ZendTo_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = STRING: "/Common/Exhange_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = STRING: "/Common/Gespage_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = STRING: "/Common/Moneweb_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = STRING: "/Common/OWA_sso_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = STRING: "/Common/Swannv2_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = STRING: "/Common/fes-pre_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = STRING: "/Common/pki-mdm-pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = STRING: "/Common/FM20-BDD_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = STRING: "/Common/IBCM-scc_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = STRING: "/Common/airs-prd_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = STRING: "/Common/airs-rec_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = STRING: "/Common/Derouleur_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = STRING: "/Common/FM19-bdd1_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = STRING: "/Common/Presse-an_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = STRING: "/Common/ResaAgran_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = STRING: "/Common/Swann-web_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = STRING: "/Common/Telemaque_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = STRING: "/Common/Telephone_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = STRING: "/Common/Varnishan_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = STRING: "/Common/ws-prd-ds_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = STRING: "/Common/GTE-Webvue_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = STRING: "/Common/Ref-pre-ml_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = STRING: "/Common/Wallix_wam_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = STRING: "/Common/eliasse_vs_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = STRING: "/Common/ldapds_dev_read" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = STRING: "/Common/portan-dev_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = STRING: "/Common/ws-prd-ens_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = STRING: "/Common/ws-prd-seg_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = STRING: "/Common/Phototheque_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = STRING: "/Common/ResaSeances_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = STRING: "/Common/ResaVisites_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = STRING: "/Common/carl-wss-v5_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = STRING: "/Common/fes-prd-erp_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = STRING: "/Common/FM21-PRD-BDD_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = STRING: "/Common/GTE-Touchvue_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = STRING: "/Common/MapiHttp_TFA_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = STRING: "/Common/Mezzo-viewer_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = STRING: "/Common/Voeuxsissoan_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = STRING: "/Common/seg-prd-test_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = STRING: "/Common/ws-prd-tuext_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = STRING: "/Common/Donsetvoyages_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = STRING: "/Common/GTE-Touchvue2_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = STRING: "/Common/Mezzo-process_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = STRING: "/Common/TableauDeBord_POOL" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = STRING: "/Common/Telemaque2017_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = STRING: "/Common/Telemaque2022_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = STRING: "/Common/Telephone-pre_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = STRING: "/Common/inwebo-radius_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = STRING: "/Common/ws-prd-access_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = STRING: "/Common/Eloi-formation_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = STRING: "/Common/Event_claranet_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = STRING: "/Common/ResaSalles-rec_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = STRING: "/Common/ws-prd-ds-2001_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = STRING: "/Common/ActiveDirectory_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = STRING: "/Common/Depot-Questions_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = STRING: "/Common/Votedistant-dev_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = STRING: "/Common/Votedistant-prd_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = STRING: "/Common/Votedistant-pre_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = STRING: "/Common/fss-dev-ctn-app_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = STRING: "/Common/resasalles-meet_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = STRING: "/Common/VIP-prd-actimage_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = STRING: "/Common/propositions-prd_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = STRING: "/Common/ironlog-prd-app-vs_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = STRING: "/Common/propositions-recette_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = STRING: Anonymized 203 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = STRING: Anonymized 119 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = STRING: "/Common/MapiHttp_TFA-ActiveDirectory_pool" +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = STRING: Anonymized 217 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 076 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = STRING: Anonymized 220 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = STRING: Anonymized 205 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = STRING: Anonymized 110 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = STRING: Anonymized 231 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = STRING: Anonymized 067 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = STRING: Anonymized 245 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = STRING: Anonymized 131 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = STRING: Anonymized 169 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = STRING: Anonymized 200 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = STRING: Anonymized 057 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = STRING: Anonymized 027 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = STRING: Anonymized 083 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = STRING: Anonymized 163 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.1.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = STRING: Anonymized 253 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.2.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.3.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.4.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108 = STRING: Anonymized 149 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108 = STRING: Anonymized 183 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108 = STRING: Anonymized 032 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108 = STRING: Anonymized 036 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108 = STRING: Anonymized 047 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108 = STRING: Anonymized 246 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108 = STRING: Anonymized 186 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108 = STRING: Anonymized 083 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108 = STRING: Anonymized 184 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108 = STRING: Anonymized 058 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108 = STRING: Anonymized 184 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108 = STRING: Anonymized 030 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108 = STRING: Anonymized 229 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108 = STRING: Anonymized 181 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108 = STRING: Anonymized 164 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108 = STRING: Anonymized 207 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108 = STRING: Anonymized 057 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108 = STRING: Anonymized 176 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108 = STRING: Anonymized 192 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108 = STRING: Anonymized 094 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108 = STRING: Anonymized 047 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108 = STRING: Anonymized 237 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108 = STRING: Anonymized 067 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108 = STRING: Anonymized 081 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108 = STRING: Anonymized 159 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108 = STRING: Anonymized 214 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108 = STRING: Anonymized 154 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108 = STRING: Anonymized 195 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108 = STRING: Anonymized 069 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108 = STRING: Anonymized 165 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108 = STRING: Anonymized 042 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108 = STRING: Anonymized 109 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108 = STRING: Anonymized 134 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108 = STRING: Anonymized 052 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108 = STRING: Anonymized 204 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108 = STRING: Anonymized 215 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108 = STRING: Anonymized 191 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108 = STRING: Anonymized 064 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108 = STRING: Anonymized 161 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108 = STRING: Anonymized 165 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108 = STRING: Anonymized 048 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108 = STRING: Anonymized 135 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108 = STRING: Anonymized 010 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108 = STRING: Anonymized 113 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100 = STRING: Anonymized 008 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108 = STRING: Anonymized 066 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108 = STRING: Anonymized 079 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108 = STRING: Anonymized 182 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108 = STRING: Anonymized 251 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108 = STRING: Anonymized 106 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108 = STRING: Anonymized 165 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108 = STRING: Anonymized 059 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108 = STRING: Anonymized 109 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108 = STRING: Anonymized 019 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108 = STRING: Anonymized 089 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108 = STRING: Anonymized 216 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108 = STRING: Anonymized 079 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108 = STRING: Anonymized 237 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108 = STRING: Anonymized 134 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108 = STRING: Anonymized 065 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108 = STRING: Anonymized 007 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108 = STRING: Anonymized 047 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76 = STRING: Anonymized 186 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108 = STRING: Anonymized 108 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108 = STRING: Anonymized 135 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108 = STRING: Anonymized 027 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108 = STRING: Anonymized 055 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108 = STRING: Anonymized 158 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108 = STRING: Anonymized 026 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108 = STRING: Anonymized 210 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108 = STRING: Anonymized 004 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = STRING: Anonymized 179 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108 = STRING: Anonymized 166 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108 = STRING: Anonymized 016 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108 = STRING: Anonymized 019 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108 = STRING: Anonymized 073 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108 = STRING: Anonymized 226 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108 = STRING: Anonymized 021 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108 = STRING: Anonymized 049 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108 = STRING: Anonymized 158 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108 = STRING: Anonymized 184 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55 = STRING: Anonymized 169 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108 = STRING: Anonymized 162 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108 = STRING: Anonymized 222 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55 = STRING: Anonymized 134 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114 = STRING: Anonymized 160 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55 = STRING: Anonymized 124 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55 = STRING: Anonymized 058 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55 = STRING: Anonymized 241 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55 = STRING: Anonymized 140 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55 = STRING: Anonymized 025 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55 = STRING: Anonymized 146 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55 = STRING: Anonymized 221 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55 = STRING: Anonymized 210 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55 = STRING: Anonymized 174 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55 = STRING: Anonymized 110 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55 = STRING: Anonymized 173 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55 = STRING: Anonymized 042 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55 = STRING: Anonymized 078 +.1.3.6.1.4.1.3375.2.2.5.5.2.1.5.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55 = STRING: Anonymized 135 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108.13.47.67.111.109.109.111.110.47.100.101.108.99.111.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51.80 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55.389 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49.4446 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.6081 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.6081 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49.636 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50.636 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55.80 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112.8287 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49.4446 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53.1812 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54.1812 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.2001 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.2001 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101.80 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112.8080 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112.8080 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112.8080 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112.8080 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.6.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.16.47.67.111.109.109.111.110.47.73.68.77.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.100.45.105.100.109.45.118.105.112.95.110.111.100.101.443 = STRING: Anonymized 194 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.16.47.67.111.109.109.111.110.47.79.87.65.95.112.111.111.108.15.47.67.111.109.109.111.110.47.111.119.97.45.118.105.112.443 = STRING: Anonymized 086 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.16.47.67.111.109.109.111.110.47.79.87.83.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.52.46.50.54.443 = STRING: Anonymized 242 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.16.47.67.111.109.109.111.110.47.84.105.109.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.50.443 = STRING: Anonymized 060 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.17.47.67.111.109.109.111.110.47.69.108.111.105.95.112.111.111.108.20.47.67.111.109.109.111.110.47.101.108.111.105.45.112.114.111.100.45.118.115.443 = STRING: Anonymized 157 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.17.47.67.111.109.109.111.110.47.70.77.49.52.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.51.48.443 = STRING: Anonymized 166 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.17.47.67.111.109.109.111.110.47.70.77.49.54.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.17.47.67.111.109.109.111.110.47.70.77.49.57.95.112.111.111.108.42.47.67.111.109.109.111.110.47.102.105.108.101.109.97.107.101.114.49.57.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = STRING: Anonymized 063 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.17.47.67.111.109.109.111.110.47.70.77.50.48.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.49.53.46.50.48.50.443 = STRING: Anonymized 003 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.98.100.100.49.45.97.112.112.443 = STRING: Anonymized 201 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.65.110.97.105.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.102.109.50.50.45.112.114.100.45.119.101.98.49.45.97.112.112.443 = STRING: Anonymized 037 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.68.101.108.99.111.95.112.111.111.108.13.47.67.111.109.109.111.110.47.100.101.108.99.111.443 = STRING: Anonymized 245 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.70.108.111.114.97.95.112.111.111.108.41.47.67.111.109.109.111.110.47.102.108.111.114.97.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.95.110.111.100.101.443 = STRING: Anonymized 223 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.77.101.105.98.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.97.110.110.117.97.105.114.101.95.118.115.443 = STRING: Anonymized 138 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.50.51.80 = STRING: Anonymized 233 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.77.101.122.122.111.95.112.111.111.108.24.47.67.111.109.109.111.110.47.109.101.101.122.111.118.53.45.119.101.98.95.110.111.100.101.80 = STRING: Anonymized 166 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.83.119.97.110.110.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.49.443 = STRING: Anonymized 079 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.65.78.45.53.55.55.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = STRING: Anonymized 090 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.112.111.111.108.30.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.119.101.98.49.45.97.112.112.95.110.111.100.101.80 = STRING: Anonymized 123 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.68.101.112.111.114.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.49.55.443 = STRING: Anonymized 170 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.78.101.116.109.103.116.95.112.111.111.108.18.47.67.111.109.109.111.110.47.78.101.116.109.103.116.45.118.105.112.443 = STRING: Anonymized 242 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.80 = STRING: Anonymized 222 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.80.111.114.116.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.80 = STRING: Anonymized 088 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.83.111.108.109.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.83.111.108.109.97.110.45.118.105.112.95.112.111.111.108.443 = STRING: Anonymized 109 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = STRING: Anonymized 177 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.87.83.49.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = STRING: Anonymized 137 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.19.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.112.111.111.108.21.47.67.111.109.109.111.110.47.122.101.110.50.45.112.114.100.45.97.112.112.49.80 = STRING: Anonymized 107 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 073 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 117 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 023 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 173 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 092 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.69.120.104.97.110.103.101.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 062 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.71.101.115.112.97.103.101.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.114.105.110.116.45.112.114.100.45.97.112.112.51.45.97.112.112.443 = STRING: Anonymized 223 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.77.111.110.101.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.56.50.443 = STRING: Anonymized 155 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = STRING: Anonymized 173 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.79.87.65.95.115.115.111.95.112.111.111.108.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = STRING: Anonymized 060 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.83.119.97.110.110.118.50.95.112.111.111.108.20.47.67.111.109.109.111.110.47.115.119.97.110.110.118.50.95.110.111.100.101.443 = STRING: Anonymized 228 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.102.101.115.45.112.114.101.95.118.115.443 = STRING: Anonymized 111 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.20.47.67.111.109.109.111.110.47.112.107.105.45.109.100.109.45.112.111.111.108.21.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.52.46.49.53.55.389 = STRING: Anonymized 253 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.21.47.67.111.109.109.111.110.47.70.77.50.48.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.48.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = STRING: Anonymized 054 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.21.47.67.111.109.109.111.110.47.73.66.67.77.45.115.99.99.95.112.111.111.108.21.47.67.111.109.109.111.110.47.105.98.99.109.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 019 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.21.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.112.114.100.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = STRING: Anonymized 178 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.21.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.95.112.111.111.108.29.47.67.111.109.109.111.110.47.97.105.114.115.45.114.101.99.45.97.112.112.45.97.112.112.95.110.111.100.101.443 = STRING: Anonymized 088 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.68.101.114.111.117.108.101.117.114.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.50.55.443 = STRING: Anonymized 141 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.70.77.49.57.45.98.100.100.49.95.112.111.111.108.44.47.67.111.109.109.111.110.47.102.109.49.57.45.112.114.100.45.98.100.100.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = STRING: Anonymized 147 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.80.114.101.115.115.101.45.97.110.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.80 = STRING: Anonymized 078 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.82.101.115.97.65.103.114.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = STRING: Anonymized 109 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.83.119.97.110.110.45.119.101.98.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.55.53.443 = STRING: Anonymized 133 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = STRING: Anonymized 014 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = STRING: Anonymized 032 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.55.46.49.4446 = STRING: Anonymized 033 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.49.6081 = STRING: Anonymized 043 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.86.97.114.110.105.115.104.97.110.95.112.111.111.108.21.47.67.111.109.109.111.110.47.112.111.114.116.45.112.114.100.45.97.112.112.50.6081 = STRING: Anonymized 172 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = STRING: Anonymized 058 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.22.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.443 = STRING: Anonymized 002 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.71.84.69.45.87.101.98.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = STRING: Anonymized 106 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.82.101.102.45.112.114.101.45.109.108.95.112.111.111.108.18.47.67.111.109.109.111.110.47.114.101.102.45.112.114.101.45.109.108.443 = STRING: Anonymized 094 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.49.443 = STRING: Anonymized 052 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.87.97.108.108.105.120.95.119.97.109.95.112.111.111.108.21.47.67.111.109.109.111.110.47.119.97.108.108.45.112.114.100.45.119.97.109.50.443 = STRING: Anonymized 225 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.118.115.95.110.111.100.101.80 = STRING: Anonymized 140 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.49.636 = STRING: Anonymized 010 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.108.100.97.112.100.115.95.100.101.118.95.114.101.97.100.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.51.53.46.53.50.636 = STRING: Anonymized 116 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.112.111.114.116.97.110.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.115.101.120.116.45.100.101.118.45.97.112.112.95.110.111.100.101.80 = STRING: Anonymized 166 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.49.95.110.111.100.101.443 = STRING: Anonymized 213 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.50.95.110.111.100.101.443 = STRING: Anonymized 034 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = STRING: Anonymized 128 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.50.95.110.111.100.101.443 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.24.47.67.111.109.109.111.110.47.80.104.111.116.111.116.104.101.113.117.101.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.48.443 = STRING: Anonymized 129 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.24.47.67.111.109.109.111.110.47.82.101.115.97.83.101.97.110.99.101.115.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.51.56.443 = STRING: Anonymized 214 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.24.47.67.111.109.109.111.110.47.82.101.115.97.86.105.115.105.116.101.115.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.50.55.80 = STRING: Anonymized 079 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.24.47.67.111.109.109.111.110.47.99.97.114.108.45.119.115.115.45.118.53.95.112.111.111.108.25.47.67.111.109.109.111.110.47.103.109.97.111.45.112.114.100.45.97.112.112.50.45.97.112.112.8287 = STRING: Anonymized 101 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.101.115.45.112.114.100.45.101.114.112.95.110.111.100.101.443 = STRING: Anonymized 065 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.70.77.50.49.45.80.82.68.45.66.68.68.95.112.111.111.108.26.47.67.111.109.109.111.110.47.102.109.50.49.45.112.114.100.45.98.100.100.49.95.110.111.100.101.443 = STRING: Anonymized 131 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.95.112.111.111.108.18.47.67.111.109.109.111.110.47.119.101.98.118.117.101.45.103.116.101.443 = STRING: Anonymized 172 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 090 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 099 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 120 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 117 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.112.111.111.108.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 030 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.77.101.122.122.111.45.118.105.101.119.101.114.95.112.111.111.108.23.47.67.111.109.109.111.110.47.109.101.122.122.111.45.118.105.101.119.101.114.95.118.115.80 = STRING: Anonymized 025 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.23.47.67.111.109.109.111.110.47.118.111.101.117.120.95.115.105.115.115.111.95.115.115.108.443 = STRING: Anonymized 068 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.80 = STRING: Anonymized 033 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.86.111.101.117.120.115.105.115.115.111.97.110.95.112.111.111.108.24.47.67.111.109.109.111.110.47.118.111.101.117.120.97.110.46.115.105.115.115.111.46.102.114.443 = STRING: Anonymized 121 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.49.95.110.111.100.101.443 = STRING: Anonymized 126 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.49.95.110.111.100.101.443 = STRING: Anonymized 079 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.112.111.111.108.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.50.95.110.111.100.101.443 = STRING: Anonymized 215 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.68.111.110.115.101.116.118.111.121.97.103.101.115.95.112.111.111.108.25.47.67.111.109.109.111.110.47.100.101.112.111.114.116.45.112.111.100.109.97.110.45.112.114.100.443 = STRING: Anonymized 116 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.71.84.69.45.84.111.117.99.104.118.117.101.50.95.112.111.111.108.26.47.67.111.109.109.111.110.47.112.99.118.117.101.45.112.114.100.45.119.101.98.50.45.97.112.112.443 = STRING: Anonymized 015 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.77.101.122.122.111.45.112.114.111.99.101.115.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.109.101.122.122.111.45.112.114.111.99.101.115.115.80 = STRING: Anonymized 011 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.84.97.98.108.101.97.117.68.101.66.111.114.100.95.80.79.79.76.21.47.67.111.109.109.111.110.47.102.109.49.54.45.112.114.100.45.119.101.98.49.443 = STRING: Anonymized 066 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.49.55.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.52.50.443 = STRING: Anonymized 113 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.109.97.113.117.101.50.48.50.50.95.112.111.111.108.24.47.67.111.109.109.111.110.47.116.101.108.101.109.97.113.117.101.50.48.50.50.95.118.115.443 = STRING: Anonymized 119 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.84.101.108.101.112.104.111.110.101.45.112.114.101.95.112.111.111.108.21.47.67.111.109.109.111.110.47.49.57.50.46.49.54.56.46.50.50.56.46.49.4446 = STRING: Anonymized 132 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.53.1812 = STRING: Anonymized 148 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.105.110.119.101.98.111.45.114.97.100.105.117.115.95.112.111.111.108.21.47.67.111.109.109.111.110.47.57.53.46.49.51.49.46.49.51.55.46.54.54.1812 = STRING: Anonymized 084 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.49.95.110.111.100.101.443 = STRING: Anonymized 036 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.50.95.110.111.100.101.443 = STRING: Anonymized 172 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.26.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.95.112.111.111.108.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.115.115.51.95.110.111.100.101.443 = STRING: Anonymized 128 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.27.47.67.111.109.109.111.110.47.69.108.111.105.45.102.111.114.109.97.116.105.111.110.95.112.111.111.108.25.47.67.111.109.109.111.110.47.101.108.111.105.45.102.111.114.109.97.116.105.111.110.45.118.115.443 = STRING: Anonymized 019 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.112.111.111.108.27.47.67.111.109.109.111.110.47.69.118.101.110.116.95.99.108.97.114.97.110.101.116.95.110.111.100.101.80 = STRING: Anonymized 206 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.27.47.67.111.109.109.111.110.47.82.101.115.97.83.97.108.108.101.115.45.114.101.99.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.49.51.54.443 = STRING: Anonymized 027 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.2001 = STRING: Anonymized 075 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.27.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.112.111.111.108.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.50.95.110.111.100.101.2001 = STRING: Anonymized 239 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = STRING: Anonymized 089 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = STRING: Anonymized 002 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = STRING: Anonymized 196 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.68.101.112.111.116.45.81.117.101.115.116.105.111.110.115.95.112.111.111.108.28.47.67.111.109.109.111.110.47.100.101.112.111.116.45.113.117.101.115.116.105.111.110.115.95.110.111.100.101.80 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.100.101.118.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.100.101.118.45.97.112.112.49.45.97.112.112.8080 = STRING: Anonymized 133 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.49.45.97.112.112.8080 = STRING: Anonymized 068 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.100.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.100.45.97.112.112.50.45.97.112.112.8080 = STRING: Anonymized 136 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.49.45.97.112.112.8080 = STRING: Anonymized 053 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.86.111.116.101.100.105.115.116.97.110.116.45.112.114.101.95.112.111.111.108.25.47.67.111.109.109.111.110.47.118.111.116.101.45.112.114.101.45.97.112.112.50.45.97.112.112.8080 = STRING: Anonymized 084 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.45.97.112.112.95.112.111.111.108.24.47.67.111.109.109.111.110.47.102.115.115.45.100.101.118.45.99.116.110.49.45.97.112.112.8080 = STRING: Anonymized 190 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.28.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.95.112.111.111.108.23.47.67.111.109.109.111.110.47.114.101.115.97.115.97.108.108.101.115.45.109.101.101.116.443 = STRING: Anonymized 248 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.29.47.67.111.109.109.111.110.47.86.73.80.45.112.114.100.45.97.99.116.105.109.97.103.101.95.112.111.111.108.29.47.67.111.109.109.111.110.47.118.105.112.45.112.114.100.45.97.99.116.105.109.97.103.101.95.110.111.100.101.443 = STRING: Anonymized 203 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.29.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.95.112.111.111.108.24.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.112.114.100.443 = STRING: Anonymized 054 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.31.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.95.112.111.111.108.26.47.67.111.109.109.111.110.47.105.114.111.110.108.111.103.45.112.114.100.45.97.112.112.45.118.115.443 = STRING: Anonymized 000 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.33.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.112.111.111.108.31.47.67.111.109.109.111.110.47.112.114.111.112.111.115.105.116.105.111.110.115.45.114.101.99.101.116.116.101.95.118.115.443 = STRING: Anonymized 039 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.49.45.50.48.49.54.443 = STRING: Anonymized 216 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.37.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.111.119.97.95.112.111.111.108.55.22.47.67.111.109.109.111.110.47.111.119.97.45.115.115.111.45.50.45.50.48.49.54.443 = STRING: Anonymized 072 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.46.53.52.443 = STRING: Anonymized 224 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.56.57.443 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.38.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.112.111.111.108.20.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.53.46.49.56.57.443 = STRING: Anonymized 198 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.49.0 = STRING: Anonymized 199 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.52.0 = STRING: Anonymized 007 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.41.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.45.65.99.116.105.118.101.68.105.114.101.99.116.111.114.121.95.112.111.111.108.19.47.67.111.109.109.111.110.47.49.55.50.46.50.48.46.50.53.46.53.0 = STRING: Anonymized 066 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 057 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 020 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 095 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 096 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.42.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 001 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.95.110.111.100.101.443 = STRING: Anonymized 014 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.45.47.67.111.109.109.111.110.47.87.83.49.95.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.41.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.49.46.97.115.115.101.109.98.108.101.101.45.110.97.116.105.111.110.97.108.101.46.102.114.443 = STRING: Anonymized 167 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 034 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 033 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 006 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.97.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 084 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 232 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 223 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 225 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 088 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 241 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 160 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 161 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 226 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 094 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 207 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 041 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.52.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 044 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 189 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 218 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 010 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 218 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 207 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.53.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 056 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 119 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 018 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 099 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 003 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 137 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.54.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 172 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 129 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 105 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 206 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 030 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 177 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 028 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 115 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.97.100.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 057 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 234 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 233 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 115 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 150 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 083 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.66.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.111.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 018 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 161 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.111.119.97.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 219 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 207 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 055 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 205 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 222 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 018 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.67.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.101.119.115.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 134 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 174 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.49.443 = STRING: Anonymized 088 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.50.443 = STRING: Anonymized 162 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.51.443 = STRING: Anonymized 129 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.52.443 = STRING: Anonymized 163 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.53.443 = STRING: Anonymized 064 +.1.3.6.1.4.1.3375.2.2.5.6.2.1.8.68.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.109.97.112.105.95.112.111.111.108.55.23.47.67.111.109.109.111.110.47.101.120.99.104.49.54.45.112.114.100.45.97.112.112.54.443 = STRING: Anonymized 032 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = STRING: "/Common/OWA_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = STRING: "/Common/Ibcm_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = STRING: "/Common/SAML_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = STRING: "/Common/Wtop_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = STRING: "/Common/SAML2_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = STRING: "/Common/saml5_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = STRING: "/Common/Carlv5_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = STRING: "/Common/ZendTo_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = STRING: "/Common/pki-an_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = STRING: "/Common/accueil_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = STRING: "/Common/gespage_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = STRING: "/Common/saml-fc_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = STRING: "/Common/SAML-otp_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = STRING: "/Common/saml-dev_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = STRING: "/Common/saml5-dev_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = STRING: "/Common/ws-prd-ds_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = STRING: "/Common/Mezzo_test_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = STRING: "/Common/ws-prd-ens_ds" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = STRING: "/Common/ws-prd-seg_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = STRING: "/Common/Carl-wss-v5_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = STRING: "/Common/SAML_DEV_BO_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = STRING: "/Common/SSO_portail_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = STRING: "/Common/Walliix_wam_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = STRING: "/Common/MapiHttp_TFA_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = STRING: "/Common/SSO_portail2_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = STRING: "/Common/seg-prd-test_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = STRING: "/Common/ws-prd-tuext_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 144 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = STRING: "/Common/SSO_SAML_kerb_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = STRING: "/Common/ws-prd-accees_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = STRING: "/Common/Ressources-ext_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = STRING: "/Common/portail-secure_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = STRING: "/Common/ws-prd-ds-2001_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = STRING: "/Common/eliasse_interne_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = STRING: "/Common/SSO_portail_4446_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 233 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = STRING: "/Common/SSO_portail_test_jym_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = STRING: "/Common/eliasse_interne_http_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = STRING: "/Common/Forwarding_IP-To-v807_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = STRING: "/Common/Forwarding_IP-To-v808_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = STRING: "/Common/Forwarding_IP-To-v810_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: "/Common/SSO_portail_vs_http2https" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = STRING: "/Common/Forwarding_IP-from-v808_vs" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = STRING: "/Common/ActiveSync_cert_AES256_https" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: "/Common/Ressources-ext_vs_http2https" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = STRING: Anonymized 126 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 053 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 124 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = STRING: Anonymized 163 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: "/Common/TEST_OutlookAnywhere_combined_https" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = STRING: Anonymized 117 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 172 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 015 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 127 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 202 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 003 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 120 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 140 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 085 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.1.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 188 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.2.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Hex-STRING: C0 A8 28 6F +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Hex-STRING: C0 A8 28 48 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Hex-STRING: C0 A8 28 60 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Hex-STRING: C0 A8 28 65 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Hex-STRING: C0 A8 28 EB +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Hex-STRING: C0 A8 28 88 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Hex-STRING: C0 A8 28 45 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Hex-STRING: C0 A8 28 46 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Hex-STRING: C0 A8 28 7D +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Hex-STRING: C0 A8 28 6C +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Hex-STRING: C0 A8 28 49 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Hex-STRING: C0 A8 28 86 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Hex-STRING: C0 A8 28 62 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Hex-STRING: C0 A8 28 85 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Hex-STRING: C0 A8 28 87 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Hex-STRING: C0 A8 1A 0A +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Hex-STRING: C0 A8 28 3B +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Hex-STRING: C0 A8 1A 0E +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Hex-STRING: C0 A8 1A 0C +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Hex-STRING: C0 A8 28 45 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Hex-STRING: C0 A8 28 61 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Hex-STRING: C0 A8 28 64 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Hex-STRING: C0 A8 2D 0A +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Hex-STRING: C0 A8 28 44 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Hex-STRING: C0 A8 28 56 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Hex-STRING: C0 A8 1A 16 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Hex-STRING: C0 A8 1A 0D +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Hex-STRING: C0 A8 28 8C +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Hex-STRING: C0 A8 28 84 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Hex-STRING: C0 A8 1A 0B +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Hex-STRING: C0 A8 28 78 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Hex-STRING: C0 A8 28 6B +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Hex-STRING: C0 A8 1A 0A +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Hex-STRING: C0 A8 28 8E +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Hex-STRING: C0 A8 28 64 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Hex-STRING: C0 A8 28 8D +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Hex-STRING: C0 A8 28 70 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Hex-STRING: C0 A8 28 8E +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Hex-STRING: C0 A8 2A 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Hex-STRING: C0 A8 2B 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Hex-STRING: C0 A8 2E 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Hex-STRING: C0 A8 28 64 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Hex-STRING: 00 00 00 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Hex-STRING: C0 A8 28 5E +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Hex-STRING: C0 A8 28 78 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Hex-STRING: C0 A8 28 69 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: C0 A8 28 6E +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: C0 A8 28 6E +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Hex-STRING: C0 A8 28 69 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: C0 A8 28 C8 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Hex-STRING: C0 A8 28 55 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: C0 A8 28 57 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: C0 A8 28 57 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: C0 A8 28 5F +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: C0 A8 28 59 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: C0 A8 28 5F +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: C0 A8 28 59 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: C0 A8 2D 67 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: C0 A8 28 58 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: C0 A8 2D 67 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.3.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: C0 A8 28 58 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.4.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Hex-STRING: FF FF FF 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Hex-STRING: FF FF FF 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Hex-STRING: FF FF FF 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Hex-STRING: 00 00 00 00 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.5.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Hex-STRING: FF FF FF FF +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Gauge32: 8787 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Gauge32: 2001 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Gauge32: 4446 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 80 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.6.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 443 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.7.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 6 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.8.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.9.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Gauge32: 10 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.10.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.11.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.12.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.13.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.14.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.15.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.16.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.17.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.18.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = STRING: "/Common/OWA_sso_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = STRING: "/Common/IBCM-scc_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = STRING: "/Common/Carlv5_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = STRING: "/Common/ZendTo_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = STRING: "/Common/Gespage_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = STRING: "/Common/ws-prd-ds_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = STRING: "/Common/Mezzo_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = STRING: "/Common/ws-prd-ens_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = STRING: "/Common/ws-prd-seg_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = STRING: "/Common/carl-wss-v5_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = STRING: "/Common/Wallix_wam_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = STRING: "/Common/MapiHttp_TFA_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = STRING: "/Common/seg-prd-test_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = STRING: "/Common/ws-prd-tuext_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = STRING: "/Common/ws-prd-access_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = STRING: "/Common/ws-prd-ds-2001_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = STRING: "/Common/eliasse_vs_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = STRING: "/Common/eliasse_vs_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = STRING: Anonymized 175 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 137 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = STRING: "/Common/Portan_pool" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 205 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.19.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 111 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.20.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.21.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.22.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.23.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.24.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.25.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.26.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.27.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.28.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = STRING: Anonymized 202 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = STRING: Anonymized 182 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = STRING: Anonymized 175 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = STRING: Anonymized 037 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = STRING: Anonymized 216 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = STRING: Anonymized 219 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = STRING: Anonymized 107 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = STRING: Anonymized 163 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = STRING: Anonymized 176 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = STRING: Anonymized 024 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = STRING: Anonymized 202 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = STRING: Anonymized 070 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = STRING: Anonymized 114 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = STRING: Anonymized 120 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = STRING: Anonymized 007 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = STRING: Anonymized 213 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = STRING: Anonymized 111 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = STRING: Anonymized 090 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = STRING: Anonymized 153 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = STRING: Anonymized 081 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = STRING: Anonymized 127 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = STRING: Anonymized 039 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = STRING: Anonymized 066 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = STRING: Anonymized 226 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = STRING: Anonymized 207 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = STRING: Anonymized 050 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 055 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = STRING: Anonymized 101 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = STRING: Anonymized 072 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = STRING: Anonymized 017 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = STRING: Anonymized 219 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = STRING: Anonymized 020 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = STRING: Anonymized 056 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = STRING: Anonymized 202 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 076 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = STRING: Anonymized 170 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = STRING: Anonymized 121 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = STRING: Anonymized 159 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = STRING: Anonymized 252 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = STRING: Anonymized 005 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: Anonymized 205 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = STRING: Anonymized 141 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: Anonymized 008 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = STRING: Anonymized 103 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 248 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = STRING: Anonymized 225 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 185 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = STRING: Anonymized 101 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 136 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 101 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 069 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 030 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 015 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 239 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 042 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 239 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 150 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.29.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 149 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.30.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.31.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = "" +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.32.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.1.2.1.33.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Gauge32: 22 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Gauge32: 22 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Gauge32: 1 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Gauge32: 3 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Gauge32: 111 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Gauge32: 11 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Gauge32: 236 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Gauge32: 3 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Gauge32: 140 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Gauge32: 46 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Gauge32: 5 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Gauge32: 297 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Gauge32: 7 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Gauge32: 2 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 3 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 1466 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 2221 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 498 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 7 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = STRING: "/Common/OWA_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = STRING: "/Common/Ibcm_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = STRING: "/Common/SAML_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = STRING: "/Common/Wtop_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = STRING: "/Common/SAML2_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = STRING: "/Common/saml5_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = STRING: "/Common/Carlv5_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = STRING: "/Common/ZendTo_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = STRING: "/Common/pki-an_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = STRING: "/Common/accueil_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = STRING: "/Common/gespage_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = STRING: "/Common/saml-fc_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = STRING: "/Common/SAML-otp_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = STRING: "/Common/saml-dev_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = STRING: "/Common/saml5-dev_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = STRING: "/Common/ws-prd-ds_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = STRING: "/Common/Mezzo_test_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = STRING: "/Common/ws-prd-ens_ds" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = STRING: "/Common/ws-prd-seg_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = STRING: "/Common/Carl-wss-v5_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = STRING: "/Common/SAML_DEV_BO_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = STRING: "/Common/SSO_portail_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = STRING: "/Common/Walliix_wam_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = STRING: "/Common/MapiHttp_TFA_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = STRING: "/Common/SSO_portail2_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = STRING: "/Common/seg-prd-test_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = STRING: "/Common/ws-prd-tuext_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 002 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = STRING: "/Common/SSO_SAML_kerb_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = STRING: "/Common/ws-prd-accees_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = STRING: "/Common/Ressources-ext_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = STRING: "/Common/portail-secure_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = STRING: "/Common/ws-prd-ds-2001_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = STRING: "/Common/eliasse_interne_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = STRING: "/Common/SSO_portail_4446_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 077 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = STRING: "/Common/SSO_portail_test_jym_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = STRING: "/Common/eliasse_interne_http_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = STRING: "/Common/Forwarding_IP-To-v807_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = STRING: "/Common/Forwarding_IP-To-v808_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = STRING: "/Common/Forwarding_IP-To-v810_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: "/Common/SSO_portail_vs_http2https" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = STRING: "/Common/Forwarding_IP-from-v808_vs" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = STRING: "/Common/ActiveSync_cert_AES256_https" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: "/Common/Ressources-ext_vs_http2https" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = STRING: Anonymized 226 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 071 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 023 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = STRING: Anonymized 073 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: "/Common/TEST_OutlookAnywhere_combined_https" +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = STRING: Anonymized 148 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 148 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 093 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 179 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 090 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 201 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 018 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 106 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 155 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 126 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.1.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 205 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 4 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.2.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 2 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 3 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.3.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = INTEGER: 1 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.4.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Gauge32: 0 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = STRING: Anonymized 172 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.15.47.67.111.109.109.111.110.47.73.98.99.109.95.118.115 = STRING: Anonymized 251 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = STRING: Anonymized 107 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = STRING: Anonymized 030 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.16.47.67.111.109.109.111.110.47.83.65.77.76.50.95.118.115 = STRING: Anonymized 200 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = STRING: Anonymized 125 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.17.47.67.111.109.109.111.110.47.67.97.114.108.118.53.95.118.115 = STRING: Anonymized 163 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.17.47.67.111.109.109.111.110.47.90.101.110.100.84.111.95.118.115 = STRING: Anonymized 085 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.17.47.67.111.109.109.111.110.47.112.107.105.45.97.110.95.118.115 = STRING: Anonymized 032 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.18.47.67.111.109.109.111.110.47.97.99.99.117.101.105.108.95.118.115 = STRING: Anonymized 196 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.18.47.67.111.109.109.111.110.47.103.101.115.112.97.103.101.95.118.115 = STRING: Anonymized 082 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = STRING: Anonymized 218 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = STRING: Anonymized 156 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = STRING: Anonymized 050 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = STRING: Anonymized 037 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.20.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.95.118.115 = STRING: Anonymized 078 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = STRING: Anonymized 048 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.101.110.115.95.100.115 = STRING: Anonymized 086 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.21.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.115.101.103.95.118.115 = STRING: Anonymized 065 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.22.47.67.111.109.109.111.110.47.67.97.114.108.45.119.115.115.45.118.53.95.118.115 = STRING: Anonymized 235 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.22.47.67.111.109.109.111.110.47.83.65.77.76.95.68.69.86.95.66.79.95.118.115 = STRING: Anonymized 124 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = STRING: Anonymized 113 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.22.47.67.111.109.109.111.110.47.87.97.108.108.105.105.120.95.119.97.109.95.118.115 = STRING: Anonymized 103 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = STRING: Anonymized 054 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = STRING: Anonymized 042 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.23.47.67.111.109.109.111.110.47.115.101.103.45.112.114.100.45.116.101.115.116.95.118.115 = STRING: Anonymized 042 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.23.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.116.117.101.120.116.95.118.115 = STRING: Anonymized 119 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.24.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 243 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = STRING: Anonymized 254 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.24.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.97.99.99.101.101.115.95.118.115 = STRING: Anonymized 128 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.25.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115 = STRING: Anonymized 126 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.25.47.67.111.109.109.111.110.47.112.111.114.116.97.105.108.45.115.101.99.117.114.101.95.118.115 = STRING: Anonymized 239 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.25.47.67.111.109.109.111.110.47.119.115.45.112.114.100.45.100.115.45.50.48.48.49.95.118.115 = STRING: Anonymized 103 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.26.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.118.115 = STRING: Anonymized 069 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = STRING: Anonymized 060 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.28.47.67.111.109.109.111.110.47.83.65.77.76.95.115.97.45.100.101.118.46.97.110.46.102.114.95.118.115 = STRING: Anonymized 159 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = STRING: Anonymized 081 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.31.47.67.111.109.109.111.110.47.101.108.105.97.115.115.101.95.105.110.116.101.114.110.101.95.104.116.116.112.95.118.115 = STRING: Anonymized 227 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.55.95.118.115 = STRING: Anonymized 032 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.48.56.95.118.115 = STRING: Anonymized 253 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.32.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.84.111.45.118.56.49.48.95.118.115 = STRING: Anonymized 244 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.33.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: Anonymized 252 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.34.47.67.111.109.109.111.110.47.70.111.114.119.97.114.100.105.110.103.95.73.80.45.102.114.111.109.45.118.56.48.56.95.118.115 = STRING: Anonymized 050 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = STRING: Anonymized 169 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.36.47.67.111.109.109.111.110.47.82.101.115.115.111.117.114.99.101.115.45.101.120.116.95.118.115.95.104.116.116.112.50.104.116.116.112.115 = STRING: Anonymized 016 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = STRING: Anonymized 086 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.41.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 224 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 015 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.42.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.114.101.100.105.114.95.118.115 = STRING: Anonymized 194 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 004 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = STRING: Anonymized 218 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.47.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 205 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 038 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.57.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 079 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.57.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 089 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 147 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 004 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 011 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.71.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112 = STRING: Anonymized 108 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.46.97.112.112.47.79.117.116.108.111.111.107.45.65.110.121.119.104.101.114.101.45.68.69.66.85.71.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 040 +.1.3.6.1.4.1.3375.2.2.10.13.2.1.5.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 080 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 021 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = STRING: Anonymized 021 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = STRING: Anonymized 101 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/access" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_Access" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = STRING: "/Common/SSO_Access" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SAML_OTP_v3" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = STRING: "/Common/SAML_OTP_v3" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/MapiHttp_TFA" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = STRING: "/Common/MapiHttp_TFA" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/Webtop_access" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = STRING: "/Common/Webtop_access" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/exch_20220128" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Access" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/exch_clientcert" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 183 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 050 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/OAnywhere_20220620" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: "/Common/OAnywhere_20220620" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = STRING: "/Common/OAnywhere_20220620" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/OAnywhere_20230725" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: "/Common/OAnywhere_20230725" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Access_v6" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Access_v8" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = STRING: "/Common/SSO_SAML_Access_v8" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = STRING: "/Common/SSO_SAML_Access_v8" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/exch_eas_cert_test" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: "/Common/exch_eas_cert_test" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 178 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 227 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Access_v11" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = STRING: "/Common/SSO_SAML_Access_v11" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/exch_eas_cert_AES256" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = STRING: "/Common/exch_eas_cert_AES256" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_DEV_Access_v1" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = STRING: "/Common/SSO_SAML_DEV_Access_v1" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_DEV_Access_v2" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = STRING: "/Common/SSO_SAML_DEV_Access_v2" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Access_v11_2FA" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = STRING: "/Common/SSO_SAML_Access_v11_2FA" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = STRING: "/Common/SSO_SAML_Access_v11_2FA" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = STRING: "/Common/SSO_SAML_Access_v11_2FA" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/TEST_OAnywhere_20220131" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 069 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 250 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 208 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = STRING: Anonymized 136 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Kerberos_access_v2" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = STRING: "/Common/SSO_SAML_Kerberos_access_v2" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_FRANCE_CONNECT_Access_v1" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = STRING: "/Common/SSO_FRANCE_CONNECT_Access_v1" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 033 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Access_v11_2FA_jdecormon" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = STRING: "/Common/SSO_SAML_Access_v11_2FA_jdecormon" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = STRING: "/Common/SSO_SAML_Access_v11_2FA_TFERRY_20240109" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = STRING: "/Common/SSO_SAML_Access_v11_2FA_TFERRY_20240109" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 253 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 153 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 095 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 108 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 112 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 108 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.1.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 044 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.2.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 35743 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 19831 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 148022 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 109088 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 17315 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 1554 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 435393 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 446544 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 1 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 508 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 46 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 42816 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 439657 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 410 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 25578 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 17349 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 17795 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 6 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.3.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 124 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 80956 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 74775 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 432215 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 351489 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 508 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 21 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 1521 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 58029 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 101 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 1100 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.4.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 12 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 10 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 191 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 24 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 12 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 2219 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 1098 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 2 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 10 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 230 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 11 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 7 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 3 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.5.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 12 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 10 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 19 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 20 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 12 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 58 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 8 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 9 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 11 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 7 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 3 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.6.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 172 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 4 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 2161 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 1090 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 2 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 10 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 221 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.7.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 3 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 29 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 1429 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 1 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 1 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.8.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 2 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 4 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 3395 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 8 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.9.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 340 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 18895 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 20982 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 512 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 225 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 101 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 347 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 67008 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 8 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 605 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 89597 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 74 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 156 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 16414 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 102 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.10.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 124 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 80956 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 74775 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 432215 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 351489 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 508 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 21 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 1521 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 58029 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 101 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 1100 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.11.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 30 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 18793 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 19056 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 382 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 343 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 66134 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 4 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 32 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 2177 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 1 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 16321 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.12.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.13.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.14.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.15.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.16.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.17.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.18.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.19.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.20.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.21.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.22.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.23.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.24.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.25.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.26.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.27.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.28.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.29.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.30.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.31.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.32.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.33.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.34.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.35.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.36.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.37.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.38.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.39.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.40.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.41.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.42.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.43.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.44.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.45.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.46.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.47.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.48.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.49.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.50.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.51.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.52.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.53.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.54.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.55.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.56.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.57.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.58.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.59.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.60.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.61.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.62.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.63.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.64.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.65.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.66.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.67.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.68.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.69.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.70.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.71.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.72.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.73.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.74.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.75.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.76.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.77.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.78.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.79.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.80.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.81.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.82.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.83.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.84.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.85.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.86.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.87.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.88.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.89.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.90.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.91.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.92.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.93.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.94.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.95.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.96.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.97.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.98.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.99.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.100.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.101.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.102.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.103.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.104.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.105.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.106.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.107.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.108.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.109.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.110.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.111.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.112.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.113.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.114.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.115.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.116.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.117.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.118.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.119.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.120.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.121.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.122.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.123.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.124.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.125.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.126.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.127.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.128.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.129.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.130.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.131.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.132.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.133.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.134.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.135.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.136.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.137.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.138.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.139.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.140.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.141.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.142.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.143.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.144.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.145.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.146.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.147.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.148.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.149.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.150.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.151.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.152.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.153.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.154.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.155.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.156.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.157.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.158.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.159.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.160.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.161.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.162.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.163.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.164.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.165.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.166.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.167.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.168.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.169.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.170.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.171.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.172.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.173.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.174.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.175.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.176.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.177.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.178.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.179.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.180.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.181.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.182.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.183.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.184.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.185.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.186.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.187.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.188.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.189.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.190.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.191.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.192.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.193.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.194.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.195.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.196.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.197.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.198.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.199.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.200.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.201.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.202.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.203.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.204.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.205.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.206.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.207.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.208.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.209.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.210.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.211.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.212.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.213.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.214.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.215.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.216.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.217.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.218.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.219.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.220.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.221.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.222.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.223.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.224.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 366 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 29786694 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 202537 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 16582660 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 9404182 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 9356 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 25 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 5374 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 18176375 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 12142 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 1208 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.225.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.226.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 022 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = STRING: Anonymized 180 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = STRING: Anonymized 016 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 197 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 248 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = STRING: "/Common/OWA_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 033 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = STRING: "/Common/SAML-otp_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 013 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = STRING: "/Common/MapiHttp_TFA_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 076 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = STRING: "/Common/Wtop_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 116 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 126 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 119 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 101 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 077 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 201 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 108 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = STRING: Anonymized 220 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 006 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: "/Common/TEST_OutlookAnywhere_combined_https" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 217 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 081 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = STRING: "/Common/SSO_portail2_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = STRING: Anonymized 239 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 197 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 229 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 211 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = STRING: Anonymized 251 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 025 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = STRING: "/Common/Mezzo_test_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 217 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = STRING: "/Common/ActiveSync_cert_AES256_https" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 212 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = STRING: "/Common/saml-dev_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 139 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = STRING: "/Common/saml5-dev_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 046 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = STRING: "/Common/SAML_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = STRING: "/Common/SSO_portail_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = STRING: "/Common/SSO_portail_4446_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 171 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 158 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 117 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 034 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = STRING: Anonymized 162 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 161 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = STRING: "/Common/SSO_SAML_kerb_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 142 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = STRING: "/Common/saml-fc_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 130 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 195 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = STRING: "/Common/saml5_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 195 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = STRING: "/Common/SSO_portail_test_jym_vs" +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 200 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 121 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 116 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 228 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 097 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 202 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.227.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = STRING: Anonymized 099 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 35235 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 933 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 46004 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 33792 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 17086 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 1453 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 92 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 28064 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 1 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 17 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 40672 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 290918 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 233 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 24209 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 933 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 17691 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 6 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.228.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.6.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.12.95.116.109.109.95.97.112.109.95.97.99.108.21.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.12.95.116.109.109.95.97.112.109.95.97.99.108.26.95.116.109.109.95.97.112.109.95.102.119.100.95.118.105.112.95.104.116.116.112.95.105.112.118.54 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.14.47.67.111.109.109.111.110.47.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.18.47.67.111.109.109.111.110.47.83.83.79.95.65.99.99.101.115.115.14.47.67.111.109.109.111.110.47.79.87.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.19.47.67.111.109.109.111.110.47.83.65.77.76.95.79.84.80.95.118.51.19.47.67.111.109.109.111.110.47.83.65.77.76.45.111.116.112.95.118.115 = Counter64: 94 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.20.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.23.47.67.111.109.109.111.110.47.77.97.112.105.72.116.116.112.95.84.70.65.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.21.47.67.111.109.109.111.110.47.87.101.98.116.111.112.95.97.99.99.101.115.115.15.47.67.111.109.109.111.110.47.87.116.111.112.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.21.47.67.111.109.109.111.110.47.101.120.99.104.95.50.48.50.50.48.49.50.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.23.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.23.47.67.111.109.109.111.110.47.101.120.99.104.95.99.108.105.101.110.116.99.101.114.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.24.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.101.120.99.104.42.47.67.111.109.109.111.110.47.79.87.65.45.83.83.79.46.97.112.112.47.79.87.65.45.83.83.79.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.58.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 81099 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.54.50.48.72.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.46.97.112.112.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.67.76.66.45.65.78.95.99.111.109.98.105.110.102.102.98.53.99.101.49.102 = Counter64: 74865 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.79.65.110.121.119.104.101.114.101.95.50.48.50.51.48.55.50.53.43.47.67.111.109.109.111.110.47.84.69.83.84.95.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.23.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.50.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.56.44.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.26.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.116.101.115.116.58.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 432112 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.27.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.101.120.99.104.48.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.46.97.112.112.47.65.99.116.105.118.101.83.121.110.99.95.99.111.109.98.105.110.101.100.95.104.116.116.112.115 = Counter64: 351424 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.27.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.21.47.67.111.109.109.111.110.47.77.101.122.122.111.95.116.101.115.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.28.47.67.111.109.109.111.110.47.101.120.99.104.95.101.97.115.95.99.101.114.116.95.65.69.83.50.53.54.36.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.95.65.69.83.50.53.54.95.104.116.116.112.115 = Counter64: 508 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.49.19.47.67.111.109.109.111.110.47.115.97.109.108.45.100.101.118.95.118.115 = Counter64: 20 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.30.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.68.69.86.95.65.99.99.101.115.115.95.118.50.20.47.67.111.109.109.111.110.47.115.97.109.108.53.45.100.101.118.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.15.47.67.111.109.109.111.110.47.83.65.77.76.95.118.115 = Counter64: 1512 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.22.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.118.115 = Counter64: 54613 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.31.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.27.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.52.52.52.54.95.118.115 = Counter64: 94 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.31.47.67.111.109.109.111.110.47.84.69.83.84.95.79.65.110.121.119.104.101.114.101.95.50.48.50.50.48.49.51.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.32.47.67.111.109.109.111.110.47.65.99.116.105.118.101.83.121.110.99.95.99.101.114.116.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.32.47.67.111.109.109.111.110.47.79.117.116.108.111.111.107.65.110.121.119.104.101.114.101.46.97.112.112.47.101.120.99.104.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.33.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.36.47.67.111.109.109.111.110.47.83.104.97.114.101.112.111.105.110.116.46.97.112.112.47.83.104.97.114.101.112.111.105.110.116.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.35.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.75.101.114.98.101.114.111.115.95.97.99.99.101.115.115.95.118.50.24.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.107.101.114.98.95.118.115 = Counter64: 1101 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.36.47.67.111.109.109.111.110.47.83.83.79.95.70.82.65.78.67.69.95.67.79.78.78.69.67.84.95.65.99.99.101.115.115.95.118.49.18.47.67.111.109.109.111.110.47.115.97.109.108.45.102.99.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.41.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.41.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.106.100.101.99.111.114.109.111.110.16.47.67.111.109.109.111.110.47.115.97.109.108.53.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.47.47.67.111.109.109.111.110.47.83.83.79.95.83.65.77.76.95.65.99.99.101.115.115.95.118.49.49.95.50.70.65.95.84.70.69.82.82.89.95.50.48.50.52.48.49.48.57.31.47.67.111.109.109.111.110.47.83.83.79.95.112.111.114.116.97.105.108.95.116.101.115.116.95.106.121.109.95.118.115 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.49.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.51.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.49.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.50.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.51.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.52.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.1.3.1.229.53.47.67.111.109.109.111.110.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.46.97.112.112.47.82.68.80.45.103.97.116.101.119.97.121.95.118.115.95.114.97.112.95.97.112.109.95.50.95.53.9.95.108.105.115.116.101.110.101.114 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.4.1.0 = INTEGER: 0 +.1.3.6.1.4.1.3375.2.6.1.4.2.0 = Gauge32: 1757669 +.1.3.6.1.4.1.3375.2.6.1.4.3.0 = Gauge32: 3724 +.1.3.6.1.4.1.3375.2.6.1.4.4.0 = Counter64: 146 +.1.3.6.1.4.1.3375.2.6.1.4.5.0 = Counter64: 3578 +.1.3.6.1.4.1.3375.2.6.1.4.6.0 = Counter64: 1463 +.1.3.6.1.4.1.3375.2.6.1.4.7.0 = Counter64: 3409 +.1.3.6.1.4.1.3375.2.6.1.4.8.0 = Counter64: 215368 +.1.3.6.1.4.1.3375.2.6.1.4.9.0 = Counter64: 1000850 +.1.3.6.1.4.1.3375.2.6.1.4.10.0 = Counter64: 123273 +.1.3.6.1.4.1.3375.2.6.1.4.11.0 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.4.12.0 = Counter64: 0 +.1.3.6.1.4.1.3375.2.6.1.4.13.0 = Counter64: 537355 +.1.3.6.1.4.1.3375.2.6.1.4.14.0 = Counter64: 997455 \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/tmm-usage.robot b/tests/network/f5/bigip/snmp/tmm-usage.robot new file mode 100644 index 000000000..5e9cbeaf4 --- /dev/null +++ b/tests/network/f5/bigip/snmp/tmm-usage.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +tmm-usage ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=tmm-usage + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All TMM are ok | '0.0#tmm.memory.usage.bytes'=2175382320B;;;0;22695378944 '0.0#tmm.cpu.utilization.1m.percentage'=15%;;;0;100 '0.0#tmm.cpu.utilization.5m.percentage'=15%;;;0;100 '0.0#tmm.connections.client.curent.count'=1324;;;0; '0.0#tmm.connections.server.current.count'=1303;;;0; '0.2#tmm.cpu.utilization.1m.percentage'=12%;;;0;100 '0.2#tmm.cpu.utilization.5m.percentage'=11%;;;0;100 '0.2#tmm.connections.client.curent.count'=1368;;;0; '0.2#tmm.connections.server.current.count'=1291;;;0; '0.4#tmm.cpu.utilization.1m.percentage'=11%;;;0;100 '0.4#tmm.cpu.utilization.5m.percentage'=10%;;;0;100 '0.4#tmm.connections.client.curent.count'=1369;;;0; '0.4#tmm.connections.server.current.count'=1331;;;0; '0.6#tmm.cpu.utilization.1m.percentage'=18%;;;0;100 '0.6#tmm.cpu.utilization.5m.percentage'=12%;;;0;100 '0.6#tmm.connections.client.curent.count'=1331;;;0; '0.6#tmm.connections.server.current.count'=1324;;;0; + ... 2 --filter-counters='' OK: All TMM are ok + ... 3 --filter-name='TMM' UNKNOWN: No TMM found. + ... 4 --critical-cpu-1m=12 CRITICAL: TMM '0.0' CPU Usage 1min : 15 % - TMM '0.6' CPU Usage 1min : 18 % | '0.0#tmm.memory.usage.bytes'=2175382320B;;;0;22695378944 + ... 5 --warning-cpu-5m=10 WARNING: TMM '0.0' CPU Usage 5min : 15 % - TMM '0.2' CPU Usage 5min : 11 % - TMM '0.6' CPU Usage 5min : 12 % | '0.0#tmm.memory.usage.bytes'=2175382320B;;;0;22695378944 \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/trunks.robot b/tests/network/f5/bigip/snmp/trunks.robot new file mode 100644 index 000000000..fd681b1cc --- /dev/null +++ b/tests/network/f5/bigip/snmp/trunks.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +trunks ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=trunks + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: Trunk 'Anonymized 234' status is 'up', traffic in: Buffer creation, traffic out: Buffer creation, packets in error: Buffer creation, packets out error: Buffer creation, packets in drop: Buffer creation, packets out drop: Buffer creation + ... 2 --filter-name='Anonymized 234' OK: Trunk 'Anonymized 234' status is 'up', traffic in: Buffer creation, traffic out: Buffer creation, packets in error: Buffer creation, packets out error: Buffer creation, packets in drop: Buffer creation, packets out drop: Buffer creation + ... 3 --warning-status='\\\%{status} eq "up"' WARNING: Trunk 'Anonymized 234' status is 'up' | 'Anonymized 234#trunk.traffic.in.bitspersecond'=0.00b/s;;;0;20000000000 'Anonymized 234#trunk.traffic.out.bitspersecond'=0.00b/s;;;0;20000000000 'Anonymized 234#trunk.packets.in.error.percentage'=0.00%;;;0;100 + ... 4 --critical-status='\\\%{status} eq "up"' CRITICAL: Trunk 'Anonymized 234' status is 'up' | 'Anonymized 234#trunk.traffic.in.bitspersecond'=0.00b/s;;;0;20000000000 'Anonymized 234#trunk.traffic.out.bitspersecond'=0.00b/s;;;0;20000000000 'Anonymized 234#trunk.packets.in.error.percentage'=0.00%;;;0;100 + ... 5 --unknown-status='\\\%{status} eq "up"' UNKNOWN: Trunk 'Anonymized 234' status is 'up' | 'Anonymized 234#trunk.traffic.in.bitspersecond'=0.00b/s;;;0;20000000000 'Anonymized 234#trunk.traffic.out.bitspersecond'=0.00b/s;;;0;20000000000 'Anonymized 234#trunk.packets.in.error.percentage'=0.00%;;;0;100 + ... 6 --warning-packets-error-in=50 --critical-packets-error-in=100 OK: Trunk 'Anonymized 234' status is 'up', traffic in: 0.00b/s (0.00%), traffic out: 0.00b/s (0.00%), packets in error: 0.00%, packets out error: 0.00%, \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/virtualserver-status.robot b/tests/network/f5/bigip/snmp/virtualserver-status.robot new file mode 100644 index 000000000..0adb95f67 --- /dev/null +++ b/tests/network/f5/bigip/snmp/virtualserver-status.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +virtualserver-status ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=virtualserver-status + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/slim-f5-bigip + ... ${extra_options} + + Ctn Verify Command Output ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All virtual servers are ok | '/Common/OWA_vs#virtualserver.connections.client.current.count'=0;;;0; '/Common/Ibcm_vs#virtualserver.connections.client.current.count'=22;;;0; '/Common/SAML_vs#virtualserver.connections.client.current.count'=22;;;0; '/Common/Wtop_vs#virtualserver.connections.client.current.count'=0;;;0; + ... 2 --filter-name='toto' UNKNOWN: No entry found. + ... 3 --warning-status='\\\%{state} eq "enabled"' WARNING: Virtual server '/Common/Ibcm_vs' status: green [state: enabled] [reason: Anonymized 251] - Virtual server '/Common/SAML_vs' status: blue [state: enabled] [reason: Anonymized 107] + ... 4 --critical-status='\\\%{state} eq "enabled"' CRITICAL: Virtual server '/Common/Ibcm_vs' status: green [state: enabled] [reason: Anonymized 251] - Virtual server '/Common/SAML_vs' status: blue [state: enabled] [reason: Anonymized 107] + ... 5 --unknown-status='\\\%{state} eq "enabled"' UNKNOWN: Virtual server '/Common/Ibcm_vs' status: green [state: enabled] [reason: Anonymized 251] - Virtual server '/Common/SAML_vs' status: blue [state: enabled] [reason: Anonymized 107] + ... 6 --warning-current-client-connections=42 --critical-current-client-connections=50 CRITICAL: Virtual server '/Common/ws-prd-ds_vs' current client connections: 111 - Virtual server '/Common/SSO_portail_vs' current client connections: 236 \ No newline at end of file diff --git a/tests/network/fortinet/fortigate/restapi/certificates.json b/tests/network/fortinet/fortigate/restapi/certificates.json new file mode 100644 index 000000000..ed1e8b48d --- /dev/null +++ b/tests/network/fortinet/fortigate/restapi/certificates.json @@ -0,0 +1,92 @@ +{ + "uuid": "61d0b4e2-a95f-445e-aa64-1dd52294dbcb", + "lastMigration": 32, + "name": "Certificates", + "endpointPrefix": "", + "latency": 0, + "port": 3003, + "hostname": "", + "folders": [], + "routes": [ + { + "uuid": "471baca7-c9b0-491e-899c-5a2f3f2d9e30", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "api/v2/monitor/system/available-certificates", + "responses": [ + { + "uuid": "ba67a507-8afd-4a7f-8e3e-19503ae5e0d4", + "body": "{\r\n \"action\": \"\",\r\n \"build\": 1577,\r\n \"http_method\": \"GET\",\r\n \"name\": \"available-certificates\",\r\n \"path\": \"system\",\r\n \"results\": [\r\n {\r\n \"cert_protocol\": \"none\",\r\n \"comments\": \"This is the default CA certificate the SSL Inspection will use when generating new server certificates.\",\r\n \"exists\": true,\r\n \"ext\": [\r\n {\r\n \"critical\": false,\r\n \"data\": \"CA:TRUE\",\r\n \"name\": \"X509v3 Basic Constraints\"\r\n }\r\n ],\r\n \"fingerprint\": \"F2:79:B7:F6:F2:79:B7:F6\",\r\n \"has_valid_cert_key\": true,\r\n \"is_built_in\": true,\r\n \"is_ca\": true,\r\n \"is_deep_inspection_cert\": true,\r\n \"is_default_local\": false,\r\n \"is_general_allowable_cert\": true,\r\n \"is_local_ca_cert\": true,\r\n \"is_proxy_ssl_cert\": true,\r\n \"is_ssl_client_cert\": true,\r\n \"is_ssl_server_cert\": true,\r\n \"is_wifi_cert\": false,\r\n \"issuer\": {\r\n \"C\": \"US\",\r\n \"CN\": \"FGSNXXXXXXXXXXXX\",\r\n \"emailAddress\": \"support@fortinet.com\",\r\n \"L\": \"Sunnyvale\",\r\n \"O\": \"Fortinet\",\r\n \"OU\": \"Certificate Authority\",\r\n \"ST\": \"California\"\r\n },\r\n \"issuer_raw\": \"C = US, ST = California, L = Sunnyvale, O = Fortinet, OU = Certificate Authority, CN = FGSNXXXXXXXXXXXX, emailAddress = support@fortinet.com\",\r\n \"key_size\": 2048,\r\n \"key_type\": \"RSA\",\r\n \"name\": \"Fortinet_CA_SSL1\",\r\n \"q_name\": \"local\",\r\n \"q_path\": \"vpn.certificate\",\r\n \"q_ref\": 6,\r\n \"q_static\": true,\r\n \"q_type\": 168,\r\n \"range\": \"global\",\r\n \"serial_number\": \"04:66:A8:A8:04:66:A8:A8\",\r\n \"signature_algorithm\": \"SHA256\",\r\n \"source\": \"factory\",\r\n \"status\": \"valid\",\r\n \"subject\": {\r\n \"C\": \"US\",\r\n \"CN\": \"FGSNXXXXXXXXXXXX\",\r\n \"emailAddress\": \"support@fortinet.com\",\r\n \"L\": \"Sunnyvale\",\r\n \"O\": \"Fortinet\",\r\n \"OU\": \"Certificate Authority\",\r\n \"ST\": \"California\"\r\n },\r\n \"subject_raw\": \"C = US, ST = California, L = Sunnyvale, O = Fortinet, OU = Certificate Authority, CN = FGSNXXXXXXXXXXXX, emailAddress = support@fortinet.com\",\r\n \"type\": \"local-ca\",\r\n \"valid_from\": 1636382833,\r\n \"valid_from_raw\": \"2021-11-08 14:47:13 GMT\",\r\n \"valid_to\": 1952002033,\r\n \"valid_to_raw\": \"2031-11-09 14:47:13 GMT\",\r\n \"version\": 3\r\n },\r\n {\r\n \"cert_protocol\": \"none\",\r\n \"comments\": \"This is the default CA certificate the SSL Inspection will use when generating new server certificates.\",\r\n \"exists\": true,\r\n \"ext\": [\r\n {\r\n \"critical\": false,\r\n \"data\": \"CA:TRUE\",\r\n \"name\": \"X509v3 Basic Constraints\"\r\n }\r\n ],\r\n \"fingerprint\": \"F2:79:B7:F6:F2:79:B7:F6\",\r\n \"has_valid_cert_key\": true,\r\n \"is_built_in\": true,\r\n \"is_ca\": true,\r\n \"is_deep_inspection_cert\": true,\r\n \"is_default_local\": false,\r\n \"is_general_allowable_cert\": true,\r\n \"is_local_ca_cert\": true,\r\n \"is_proxy_ssl_cert\": true,\r\n \"is_ssl_client_cert\": true,\r\n \"is_ssl_server_cert\": true,\r\n \"is_wifi_cert\": false,\r\n \"issuer\": {\r\n \"C\": \"US\",\r\n \"CN\": \"FGSNXXXXXXXXXXXX\",\r\n \"emailAddress\": \"support@fortinet.com\",\r\n \"L\": \"Sunnyvale\",\r\n \"O\": \"Fortinet\",\r\n \"OU\": \"Certificate Authority\",\r\n \"ST\": \"California\"\r\n },\r\n \"issuer_raw\": \"C = US, ST = California, L = Sunnyvale, O = Fortinet, OU = Certificate Authority, CN = FGSNXXXXXXXXXXXX, emailAddress = support@fortinet.com\",\r\n \"key_size\": 2048,\r\n \"key_type\": \"RSA\",\r\n \"name\": \"Fortinet_CA_SSL\",\r\n \"q_name\": \"local\",\r\n \"q_path\": \"vpn.certificate\",\r\n \"q_ref\": 6,\r\n \"q_static\": true,\r\n \"q_type\": 168,\r\n \"range\": \"global\",\r\n \"serial_number\": \"04:66:A8:A8:04:66:A8:A8\",\r\n \"signature_algorithm\": \"SHA256\",\r\n \"source\": \"factory\",\r\n \"status\": \"valid\",\r\n \"subject\": {\r\n \"C\": \"US\",\r\n \"CN\": \"FGSNXXXXXXXXXXXX\",\r\n \"emailAddress\": \"support@fortinet.com\",\r\n \"L\": \"Sunnyvale\",\r\n \"O\": \"Fortinet\",\r\n \"OU\": \"Certificate Authority\",\r\n \"ST\": \"California\"\r\n },\r\n \"subject_raw\": \"C = US, ST = California, L = Sunnyvale, O = Fortinet, OU = Certificate Authority, CN = FGSNXXXXXXXXXXXX, emailAddress = support@fortinet.com\",\r\n \"type\": \"local-ca\",\r\n \"valid_from\": 1732824780,\r\n \"valid_from_raw\": \"2024-11-28 20:13:00 GMT\",\r\n \"valid_to\": 1804104780,\r\n \"valid_to_raw\": \"2027-03-03 20:13:00 GMT\",\r\n \"version\": 3\r\n },\r\n {\r\n \"cert_protocol\": \"none\",\r\n \"comments\": \"This is the default CA certificate the SSL Inspection will use when generating new server certificates.\",\r\n \"exists\": true,\r\n \"ext\": [\r\n {\r\n \"critical\": false,\r\n \"data\": \"CA:TRUE\",\r\n \"name\": \"X509v3 Basic Constraints\"\r\n }\r\n ],\r\n \"fingerprint\": \"F2:79:B7:F6:F2:79:B7:F6\",\r\n \"has_valid_cert_key\": true,\r\n \"is_built_in\": true,\r\n \"is_ca\": true,\r\n \"is_deep_inspection_cert\": true,\r\n \"is_default_local\": false,\r\n \"is_general_allowable_cert\": true,\r\n \"is_local_ca_cert\": true,\r\n \"is_proxy_ssl_cert\": true,\r\n \"is_ssl_client_cert\": true,\r\n \"is_ssl_server_cert\": true,\r\n \"is_wifi_cert\": false,\r\n \"issuer\": {\r\n \"C\": \"US\",\r\n \"CN\": \"FGSNXXXXXXXXXXXX\",\r\n \"emailAddress\": \"support@fortinet.com\",\r\n \"L\": \"Sunnyvale\",\r\n \"O\": \"Fortinet\",\r\n \"OU\": \"Certificate Authority\",\r\n \"ST\": \"California\"\r\n },\r\n \"issuer_raw\": \"C = US, ST = California, L = Sunnyvale, O = Fortinet, OU = Certificate Authority, CN = FGSNXXXXXXXXXXXX, emailAddress = support@fortinet.com\",\r\n \"key_size\": 2048,\r\n \"key_type\": \"RSA\",\r\n \"name\": \"Fortinet_CA_SSL2\",\r\n \"q_name\": \"local\",\r\n \"q_path\": \"vpn.certificate\",\r\n \"q_ref\": 6,\r\n \"q_static\": true,\r\n \"q_type\": 168,\r\n \"range\": \"global\",\r\n \"serial_number\": \"04:66:A8:A8:04:66:A8:A8\",\r\n \"signature_algorithm\": \"SHA256\",\r\n \"source\": \"factory\",\r\n \"status\": \"valid\",\r\n \"subject\": {\r\n \"C\": \"US\",\r\n \"CN\": \"FGSNXXXXXXXXXXXX\",\r\n \"emailAddress\": \"support@fortinet.com\",\r\n \"L\": \"Sunnyvale\",\r\n \"O\": \"Fortinet\",\r\n \"OU\": \"Certificate Authority\",\r\n \"ST\": \"California\"\r\n },\r\n \"subject_raw\": \"C = US, ST = California, L = Sunnyvale, O = Fortinet, OU = Certificate Authority, CN = FGSNXXXXXXXXXXXX, emailAddress = support@fortinet.com\",\r\n \"type\": \"local-ca\",\r\n \"valid_from\": 1732824775,\r\n \"valid_from_raw\": \"2024-11-28 20:12:55 GMT\",\r\n \"valid_to\": 1804104775,\r\n \"valid_to_raw\": \"2027-03-03 20:12:55 GMT\",\r\n \"version\": 3\r\n }\r\n ],\r\n \"serial\": \"FGSNXXXXXXXXXXXX\",\r\n \"status\": \"success\",\r\n \"vdom\": \"root\",\r\n \"version\": \"v7.2.0\"\r\n}", + "latency": 0, + "statusCode": 200, + "label": "", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null + } + ], + "rootChildren": [ + { + "type": "route", + "uuid": "471baca7-c9b0-491e-899c-5a2f3f2d9e30" + } + ], + "proxyMode": false, + "proxyHost": "", + "proxyRemovePrefix": false, + "tlsOptions": { + "enabled": false, + "type": "CERT", + "pfxPath": "", + "certPath": "", + "keyPath": "", + "caPath": "", + "passphrase": "" + }, + "cors": true, + "headers": [ + { + "key": "Content-Type", + "value": "application/json" + }, + { + "key": "Access-Control-Allow-Origin", + "value": "*" + }, + { + "key": "Access-Control-Allow-Methods", + "value": "GET,POST,PUT,PATCH,DELETE,HEAD,OPTIONS" + }, + { + "key": "Access-Control-Allow-Headers", + "value": "Content-Type, Origin, Accept, Authorization, Content-Length, X-Requested-With" + } + ], + "proxyReqHeaders": [ + { + "key": "", + "value": "" + } + ], + "proxyResHeaders": [ + { + "key": "", + "value": "" + } + ], + "data": [], + "callbacks": [] +} \ No newline at end of file diff --git a/tests/network/fortinet/fortigate/restapi/certificates.robot b/tests/network/fortinet/fortigate/restapi/certificates.robot new file mode 100644 index 000000000..12f9a390b --- /dev/null +++ b/tests/network/fortinet/fortigate/restapi/certificates.robot @@ -0,0 +1,35 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + +** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}certificates.json + +${CMD} ${CENTREON_PLUGINS} +... --plugin=network::fortinet::fortigate::restapi::plugin +... --mode=certificates +... --hostname=${HOSTNAME} +... --proto='http' +... --access-token=mokoon-token +... --port=${APIPORT} + +*** Test Cases *** +certificates ${tc} + [Tags] network fortinet fortigate restapi + ${command} Catenate + ... ${CMD} + ... ${extra_options} + + + Ctn Run Command And Check Result As Regexp ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 --filter-name='Fortinet_CA_SSL' OK: All certificates are ok \\\| 'Fortinet_CA_SSL#certificate.expires.seconds=\\\d+;;;0; 'Fortinet_CA_SSL1#certificate.expires.seconds=\\\d+;;;0; 'Fortinet_CA_SSL2#certificate.expires.seconds=\\\d+;;;0; + ... 2 --warning-status='\\\%{status} =~ /valid/i' WARNING: Certificate 'Fortinet_CA_SSL' status: valid - Certificate 'Fortinet_CA_SSL1' status: valid - Certificate 'Fortinet_CA_SSL2' status: valid \\\| 'Fortinet_CA_SSL#certificate.expires.seconds'=\d+;;;0; 'Fortinet_CA_SSL1#certificate.expires.seconds'=\d+;;;0; 'Fortinet_CA_SSL2#certificate.expires.seconds'=\d+;;;0; + ... 3 --critical-status='\\\%{status} =~ /valid/i' CRITICAL: Certificate 'Fortinet_CA_SSL' status: valid - Certificate 'Fortinet_CA_SSL1' status: valid - Certificate 'Fortinet_CA_SSL2' status: valid \\\| 'Fortinet_CA_SSL#certificate.expires.seconds'=\d+;;;0; 'Fortinet_CA_SSL1#certificate.expires.seconds'=\d+;;;0; 'Fortinet_CA_SSL2#certificate.expires.seconds'=\d+;;;0; + ... 4 --unit='m' OK: All certificates are ok \\\| 'Fortinet_CA_SSL#certificate.expires.minutes'=\d+;;;0; 'Fortinet_CA_SSL1#certificate.expires.minutes'=\d+;;;0; 'Fortinet_CA_SSL2#certificate.expires.minutes'=\d+;;;0; + ... 5 --warning-expires='60' --critical-expires='30' --unit='d' CRITICAL: Certificate 'Fortinet_CA_SSL' expires in (\\\\d+y)?\\\\s?(\\\\d+M)?\\\\s?(\\\\d+w)?\\\\s?(\\\\d+d)?\\\\s?(\\\\d+h)?\\\\s?(\\\\d+m)?\\\\s?(\\\\d+s)? - Certificate 'Fortinet_CA_SSL1' expires in (\\\\d+y)?\\\\s?(\\\\d+M)?\\\\s?(\\\\d+w)?\\\\s?(\\\\d+d)?\\\\s?(\\\\d+h)?\\\\s?(\\\\d+m)?\\\\s?(\\\\d+s)? - Certificate 'Fortinet_CA_SSL2' expires in (\\\\d+y)?\\\\s?(\\\\d+M)?\\\\s?(\\\\d+w)?\\\\s?(\\\\d+d)?\\\\s?(\\\\d+h)?\\\\s?(\\\\d+m)?\\\\s?(\\\\d+s)? \\\| 'Fortinet_CA_SSL#certificate.expires.days'=\d+;0:60;0:30;0; 'Fortinet_CA_SSL1#certificate.expires.days'=\d+;0:60;0:30;0; 'Fortinet_CA_SSL2#certificate.expires.days'=\d+;0:60;0:30;0; \ No newline at end of file diff --git a/tests/network/fortinet/fortigate/snmp/list-switches.robot b/tests/network/fortinet/fortigate/snmp/list-switches.robot new file mode 100644 index 000000000..b35933e63 --- /dev/null +++ b/tests/network/fortinet/fortigate/snmp/list-switches.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::fortinet::fortigate::snmp::plugin + +*** Test Cases *** +list-switches ${tc} + [Tags] network list-switches + ${command} Catenate + ... ${CMD} + ... --mode=list-switches + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/fortinet/fortigate/snmp/slim_fortigate-switches + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} List switches: [Name = Anonymized 188] [Serial = Anonymized 209] [IP = 10.255.1.2] [Version = Anonymized 103] [State = up] [Admin = authorized] [Name = Anonymized 152] [Serial = Anonymized 146] [IP = 10.255.1.3] [Version = Anonymized 056] [State = up] [Admin = authorized] + ... 2 --filter-name='Anonymized 188' List switches: [Name = Anonymized 188] [Serial = Anonymized 209] [IP = 10.255.1.2] [Version = Anonymized 103] [State = up] [Admin = authorized] + ... 3 --filter-status='up' List switches: [Name = Anonymized 188] [Serial = Anonymized 209] [IP = 10.255.1.2] [Version = Anonymized 103] [State = up] [Admin = authorized] [Name = Anonymized 152] [Serial = Anonymized 146] [IP = 10.255.1.3] [Version = Anonymized 056] [State = up] [Admin = authorized] + ... 4 --filter-admin='toto' UNKNOWN: No switch found matching. + ... 5 --filter-ip='10.255.1.3' List switches: [Name = Anonymized 152] [Serial = Anonymized 146] [IP = 10.255.1.3] [Version = Anonymized 056] [State = up] [Admin = authorized] \ No newline at end of file diff --git a/tests/network/fortinet/fortigate/snmp/slim_fortigate-switches.snmpwalk b/tests/network/fortinet/fortigate/snmp/slim_fortigate-switches.snmpwalk new file mode 100644 index 000000000..4711641c4 --- /dev/null +++ b/tests/network/fortinet/fortigate/snmp/slim_fortigate-switches.snmpwalk @@ -0,0 +1,1980 @@ +.1.3.6.1.2.1.1.1.0 = STRING: "" +.1.3.6.1.2.1.1.3.0 = TIMETICKS: 26386239 +.1.3.6.1.2.1.2.2.1.2.1 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.2 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.3 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.4 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.5 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.6 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.7 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.8 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.9 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.10 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.11 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.12 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.13 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.14 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.15 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.16 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.17 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.18 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.19 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.20 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.21 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.22 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.23 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.24 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.25 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.26 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.27 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.28 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.29 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.30 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.31 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.32 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.33 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.34 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.35 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.36 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.37 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.38 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.39 = STRING: Anonymized 021 +.1.3.6.1.2.1.2.2.1.2.40 = STRING: Anonymized 149 +.1.3.6.1.2.1.2.2.1.2.41 = STRING: Anonymized 031 +.1.3.6.1.2.1.2.2.1.2.42 = STRING: Anonymized 044 +.1.3.6.1.2.1.2.2.1.2.43 = STRING: Anonymized 145 +.1.3.6.1.2.1.2.2.1.2.44 = STRING: Anonymized 167 +.1.3.6.1.2.1.2.2.1.2.45 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.46 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.47 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.48 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.49 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.50 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.51 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.52 = STRING: "" +.1.3.6.1.2.1.2.2.1.2.53 = STRING: "" +.1.3.6.1.2.1.2.2.1.3.1 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.2 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.3 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.4 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.5 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.6 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.7 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.8 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.9 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.10 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.11 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.12 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.13 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.14 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.15 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.16 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.17 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.18 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.19 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.20 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.21 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.22 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.23 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.24 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.25 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.26 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.27 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.28 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.29 = INTEGER: 6 +.1.3.6.1.2.1.2.2.1.3.30 = INTEGER: 131 +.1.3.6.1.2.1.2.2.1.3.31 = INTEGER: 131 +.1.3.6.1.2.1.2.2.1.3.32 = INTEGER: 131 +.1.3.6.1.2.1.2.2.1.3.33 = INTEGER: 209 +.1.3.6.1.2.1.2.2.1.3.34 = INTEGER: 161 +.1.3.6.1.2.1.2.2.1.3.35 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.36 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.37 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.38 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.39 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.40 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.41 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.42 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.43 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.44 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.45 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.46 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.47 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.48 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.49 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.50 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.51 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.52 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.3.53 = INTEGER: 135 +.1.3.6.1.2.1.2.2.1.5.1 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.2 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.3 = GAUGE32: 100000000 +.1.3.6.1.2.1.2.2.1.5.4 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.5 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.6 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.7 = GAUGE32: 100000000 +.1.3.6.1.2.1.2.2.1.5.8 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.9 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.10 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.11 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.12 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.13 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.14 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.15 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.16 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.17 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.18 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.19 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.20 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.21 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.22 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.23 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.24 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.25 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.26 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.27 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.28 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.29 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.30 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.31 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.32 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.33 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.5.34 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.35 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.36 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.37 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.38 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.39 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.40 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.41 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.42 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.43 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.44 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.45 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.46 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.47 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.48 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.49 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.50 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.51 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.52 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.53 = GAUGE32: 1000000000 +.1.3.6.1.2.1.2.2.1.6.1 = HEX-STRING: 38C0EA864B40 +.1.3.6.1.2.1.2.2.1.6.2 = HEX-STRING: 38C0EA864B41 +.1.3.6.1.2.1.2.2.1.6.3 = HEX-STRING: 38C0EA864B42 +.1.3.6.1.2.1.2.2.1.6.4 = HEX-STRING: 38C0EA864B43 +.1.3.6.1.2.1.2.2.1.6.5 = HEX-STRING: 38C0EA864B44 +.1.3.6.1.2.1.2.2.1.6.6 = HEX-STRING: 38C0EA864B45 +.1.3.6.1.2.1.2.2.1.6.7 = HEX-STRING: 38C0EA864B46 +.1.3.6.1.2.1.2.2.1.6.8 = HEX-STRING: 38C0EA864B47 +.1.3.6.1.2.1.2.2.1.6.9 = HEX-STRING: 38C0EA864B48 +.1.3.6.1.2.1.2.2.1.6.10 = HEX-STRING: 38C0EA864B49 +.1.3.6.1.2.1.2.2.1.6.11 = HEX-STRING: 38C0EA864B4A +.1.3.6.1.2.1.2.2.1.6.12 = HEX-STRING: 38C0EA864B4B +.1.3.6.1.2.1.2.2.1.6.13 = HEX-STRING: 38C0EA864B4C +.1.3.6.1.2.1.2.2.1.6.14 = HEX-STRING: 38C0EA864B4D +.1.3.6.1.2.1.2.2.1.6.15 = HEX-STRING: 38C0EA864B4E +.1.3.6.1.2.1.2.2.1.6.16 = HEX-STRING: 38C0EA864B4F +.1.3.6.1.2.1.2.2.1.6.17 = HEX-STRING: 38C0EA864B50 +.1.3.6.1.2.1.2.2.1.6.18 = HEX-STRING: 38C0EA864B51 +.1.3.6.1.2.1.2.2.1.6.19 = HEX-STRING: 38C0EA864B52 +.1.3.6.1.2.1.2.2.1.6.20 = HEX-STRING: 38C0EA864B53 +.1.3.6.1.2.1.2.2.1.6.21 = HEX-STRING: 38C0EA864B54 +.1.3.6.1.2.1.2.2.1.6.22 = HEX-STRING: 38C0EA864B55 +.1.3.6.1.2.1.2.2.1.6.23 = HEX-STRING: 38C0EA864B56 +.1.3.6.1.2.1.2.2.1.6.24 = HEX-STRING: 38C0EA864B57 +.1.3.6.1.2.1.2.2.1.6.25 = HEX-STRING: 38C0EA864B58 +.1.3.6.1.2.1.2.2.1.6.26 = HEX-STRING: 38C0EA864B59 +.1.3.6.1.2.1.2.2.1.6.27 = HEX-STRING: 38C0EA864B5A +.1.3.6.1.2.1.2.2.1.6.28 = HEX-STRING: 38C0EA864B5B +.1.3.6.1.2.1.2.2.1.6.29 = HEX-STRING: 000000000000 +.1.3.6.1.2.1.2.2.1.6.30 = STRING: "" +.1.3.6.1.2.1.2.2.1.6.31 = STRING: "" +.1.3.6.1.2.1.2.2.1.6.32 = STRING: "" +.1.3.6.1.2.1.2.2.1.6.33 = STRING: "" +.1.3.6.1.2.1.2.2.1.6.34 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.35 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.36 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.37 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.38 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.39 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.40 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.41 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.42 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.43 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.44 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.45 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.46 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.47 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.48 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.49 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.50 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.51 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.52 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.6.53 = HEX-STRING: 00090F090A12 +.1.3.6.1.2.1.2.2.1.7.1 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.2 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.3 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.4 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.5 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.6 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.7 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.8 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.9 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.10 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.11 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.12 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.13 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.14 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.15 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.16 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.17 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.18 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.19 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.7.20 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.7.21 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.22 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.23 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.24 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.25 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.26 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.27 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.28 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.7.29 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.7.30 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.31 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.32 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.33 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.34 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.35 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.36 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.37 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.38 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.39 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.40 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.41 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.42 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.43 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.44 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.45 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.46 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.47 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.48 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.49 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.50 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.51 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.52 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.7.53 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.1 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.2 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.3 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.4 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.5 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.6 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.7 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.8 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.9 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.10 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.11 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.12 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.13 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.14 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.15 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.16 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.17 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.18 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.19 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.20 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.21 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.22 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.23 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.24 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.25 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.26 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.27 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.28 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.29 = INTEGER: 2 +.1.3.6.1.2.1.2.2.1.8.30 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.31 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.32 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.33 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.34 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.35 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.36 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.37 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.38 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.39 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.40 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.41 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.42 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.43 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.44 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.45 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.46 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.47 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.48 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.49 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.50 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.51 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.52 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.8.53 = INTEGER: 1 +.1.3.6.1.2.1.2.2.1.10.1 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.2 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.3 = COUNTER32: 41444107 +.1.3.6.1.2.1.2.2.1.10.4 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.5 = COUNTER32: 779250595 +.1.3.6.1.2.1.2.2.1.10.6 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.7 = COUNTER32: 12747523 +.1.3.6.1.2.1.2.2.1.10.8 = COUNTER32: 1628360 +.1.3.6.1.2.1.2.2.1.10.9 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.10 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.11 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.12 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.13 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.14 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.15 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.16 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.17 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.18 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.19 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.20 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.21 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.22 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.23 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.24 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.25 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.26 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.27 = COUNTER32: 335892855 +.1.3.6.1.2.1.2.2.1.10.28 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.29 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.30 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.31 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.32 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.33 = COUNTER32: 13763265 +.1.3.6.1.2.1.2.2.1.10.34 = COUNTER32: 335892855 +.1.3.6.1.2.1.2.2.1.10.35 = COUNTER32: 47018 +.1.3.6.1.2.1.2.2.1.10.36 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.37 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.38 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.39 = COUNTER32: 1344 +.1.3.6.1.2.1.2.2.1.10.40 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.41 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.42 = COUNTER32: 4010 +.1.3.6.1.2.1.2.2.1.10.43 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.44 = COUNTER32: 1792 +.1.3.6.1.2.1.2.2.1.10.45 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.46 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.47 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.48 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.49 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.50 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.51 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.52 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.10.53 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.1 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.2 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.3 = COUNTER32: 32647690 +.1.3.6.1.2.1.2.2.1.16.4 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.5 = COUNTER32: 854802711 +.1.3.6.1.2.1.2.2.1.16.6 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.7 = COUNTER32: 25505361 +.1.3.6.1.2.1.2.2.1.16.8 = COUNTER32: 5058908 +.1.3.6.1.2.1.2.2.1.16.9 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.10 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.11 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.12 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.13 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.14 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.15 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.16 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.17 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.18 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.19 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.20 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.21 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.22 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.23 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.24 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.25 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.26 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.27 = COUNTER32: 85167571 +.1.3.6.1.2.1.2.2.1.16.28 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.29 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.30 = COUNTER32: 76 +.1.3.6.1.2.1.2.2.1.16.31 = COUNTER32: 152 +.1.3.6.1.2.1.2.2.1.16.32 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.33 = COUNTER32: 30384985 +.1.3.6.1.2.1.2.2.1.16.34 = COUNTER32: 85167571 +.1.3.6.1.2.1.2.2.1.16.35 = COUNTER32: 4608 +.1.3.6.1.2.1.2.2.1.16.36 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.37 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.38 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.39 = COUNTER32: 4608 +.1.3.6.1.2.1.2.2.1.16.40 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.41 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.42 = COUNTER32: 5500 +.1.3.6.1.2.1.2.2.1.16.43 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.44 = COUNTER32: 4608 +.1.3.6.1.2.1.2.2.1.16.45 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.46 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.47 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.48 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.49 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.50 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.51 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.16.52 = COUNTER32: 3004 +.1.3.6.1.2.1.2.2.1.16.53 = COUNTER32: 1724 +.1.3.6.1.2.1.2.2.1.20.1 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.2 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.3 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.4 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.5 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.6 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.7 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.8 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.9 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.10 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.11 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.12 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.13 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.14 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.15 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.16 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.17 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.18 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.19 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.20 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.21 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.22 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.23 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.24 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.25 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.26 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.27 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.28 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.29 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.30 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.31 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.32 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.33 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.34 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.35 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.36 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.37 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.38 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.39 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.40 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.41 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.42 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.43 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.44 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.45 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.46 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.47 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.48 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.49 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.50 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.51 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.52 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.20.53 = COUNTER32: 0 +.1.3.6.1.2.1.2.2.1.21.1 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.2 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.3 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.4 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.5 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.6 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.7 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.8 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.9 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.10 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.11 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.12 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.13 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.14 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.15 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.16 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.17 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.18 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.19 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.20 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.21 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.22 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.23 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.24 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.25 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.26 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.27 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.28 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.29 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.30 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.31 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.32 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.33 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.34 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.35 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.36 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.37 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.38 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.39 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.40 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.41 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.42 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.43 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.44 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.45 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.46 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.47 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.48 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.49 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.50 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.51 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.52 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.21.53 = GAUGE32: 0 +.1.3.6.1.2.1.2.2.1.22.1 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.2 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.3 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.4 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.5 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.6 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.7 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.8 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.9 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.10 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.11 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.12 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.13 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.14 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.15 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.16 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.17 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.18 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.19 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.20 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.21 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.22 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.23 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.24 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.25 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.26 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.27 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.28 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.29 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.30 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.31 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.32 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.33 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.34 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.35 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.36 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.37 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.38 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.39 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.40 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.41 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.42 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.43 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.44 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.45 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.46 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.47 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.48 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.49 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.50 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.51 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.52 = OID: 0.0.0 +.1.3.6.1.2.1.2.2.1.22.53 = OID: 0.0.0 +.1.3.6.1.2.1.31.1.1.1.1.1 = STRING: Anonymized 250 +.1.3.6.1.2.1.31.1.1.1.1.2 = STRING: Anonymized 037 +.1.3.6.1.2.1.31.1.1.1.1.3 = STRING: Anonymized 184 +.1.3.6.1.2.1.31.1.1.1.1.4 = STRING: Anonymized 101 +.1.3.6.1.2.1.31.1.1.1.1.5 = STRING: Anonymized 252 +.1.3.6.1.2.1.31.1.1.1.1.6 = STRING: Anonymized 012 +.1.3.6.1.2.1.31.1.1.1.1.7 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.8 = STRING: Anonymized 072 +.1.3.6.1.2.1.31.1.1.1.1.9 = STRING: Anonymized 037 +.1.3.6.1.2.1.31.1.1.1.1.10 = STRING: Anonymized 012 +.1.3.6.1.2.1.31.1.1.1.1.11 = STRING: Anonymized 118 +.1.3.6.1.2.1.31.1.1.1.1.12 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.13 = STRING: Anonymized 071 +.1.3.6.1.2.1.31.1.1.1.1.14 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.15 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.16 = STRING: Anonymized 191 +.1.3.6.1.2.1.31.1.1.1.1.17 = STRING: Anonymized 242 +.1.3.6.1.2.1.31.1.1.1.1.18 = STRING: Anonymized 175 +.1.3.6.1.2.1.31.1.1.1.1.19 = STRING: Anonymized 128 +.1.3.6.1.2.1.31.1.1.1.1.20 = STRING: Anonymized 080 +.1.3.6.1.2.1.31.1.1.1.1.21 = STRING: Anonymized 229 +.1.3.6.1.2.1.31.1.1.1.1.22 = STRING: Anonymized 248 +.1.3.6.1.2.1.31.1.1.1.1.23 = STRING: Anonymized 092 +.1.3.6.1.2.1.31.1.1.1.1.24 = STRING: Anonymized 187 +.1.3.6.1.2.1.31.1.1.1.1.25 = STRING: Anonymized 163 +.1.3.6.1.2.1.31.1.1.1.1.26 = STRING: Anonymized 103 +.1.3.6.1.2.1.31.1.1.1.1.27 = STRING: Anonymized 151 +.1.3.6.1.2.1.31.1.1.1.1.28 = STRING: Anonymized 141 +.1.3.6.1.2.1.31.1.1.1.1.29 = STRING: Anonymized 171 +.1.3.6.1.2.1.31.1.1.1.1.30 = STRING: Anonymized 107 +.1.3.6.1.2.1.31.1.1.1.1.31 = STRING: Anonymized 239 +.1.3.6.1.2.1.31.1.1.1.1.32 = STRING: Anonymized 137 +.1.3.6.1.2.1.31.1.1.1.1.33 = STRING: Anonymized 176 +.1.3.6.1.2.1.31.1.1.1.1.34 = STRING: Anonymized 150 +.1.3.6.1.2.1.31.1.1.1.1.35 = STRING: Anonymized 129 +.1.3.6.1.2.1.31.1.1.1.1.36 = STRING: Anonymized 028 +.1.3.6.1.2.1.31.1.1.1.1.37 = STRING: Anonymized 105 +.1.3.6.1.2.1.31.1.1.1.1.38 = STRING: Anonymized 223 +.1.3.6.1.2.1.31.1.1.1.1.39 = STRING: Anonymized 045 +.1.3.6.1.2.1.31.1.1.1.1.40 = STRING: Anonymized 180 +.1.3.6.1.2.1.31.1.1.1.1.41 = STRING: Anonymized 107 +.1.3.6.1.2.1.31.1.1.1.1.42 = STRING: Anonymized 233 +.1.3.6.1.2.1.31.1.1.1.1.43 = STRING: Anonymized 128 +.1.3.6.1.2.1.31.1.1.1.1.44 = STRING: Anonymized 128 +.1.3.6.1.2.1.31.1.1.1.1.45 = STRING: Anonymized 136 +.1.3.6.1.2.1.31.1.1.1.1.46 = STRING: Anonymized 029 +.1.3.6.1.2.1.31.1.1.1.1.47 = STRING: Anonymized 196 +.1.3.6.1.2.1.31.1.1.1.1.48 = STRING: Anonymized 021 +.1.3.6.1.2.1.31.1.1.1.1.49 = STRING: Anonymized 090 +.1.3.6.1.2.1.31.1.1.1.1.50 = STRING: Anonymized 180 +.1.3.6.1.2.1.31.1.1.1.1.51 = STRING: Anonymized 003 +.1.3.6.1.2.1.31.1.1.1.1.52 = STRING: Anonymized 176 +.1.3.6.1.2.1.31.1.1.1.1.53 = STRING: Anonymized 128 +.1.3.6.1.2.1.31.1.1.1.6.1 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.2 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.3 = COUNTER64: 41444509 +.1.3.6.1.2.1.31.1.1.1.6.4 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.5 = COUNTER64: 779253400 +.1.3.6.1.2.1.31.1.1.1.6.6 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.7 = COUNTER64: 12783627 +.1.3.6.1.2.1.31.1.1.1.6.8 = COUNTER64: 1628360 +.1.3.6.1.2.1.31.1.1.1.6.9 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.10 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.11 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.12 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.13 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.14 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.15 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.16 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.17 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.18 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.19 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.20 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.21 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.22 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.23 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.24 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.25 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.26 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.27 = COUNTER64: 335893360 +.1.3.6.1.2.1.31.1.1.1.6.28 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.29 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.30 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.31 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.32 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.33 = COUNTER64: 13799309 +.1.3.6.1.2.1.31.1.1.1.6.34 = COUNTER64: 335893360 +.1.3.6.1.2.1.31.1.1.1.6.35 = COUNTER64: 47018 +.1.3.6.1.2.1.31.1.1.1.6.36 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.37 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.38 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.39 = COUNTER64: 1344 +.1.3.6.1.2.1.31.1.1.1.6.40 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.41 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.42 = COUNTER64: 4010 +.1.3.6.1.2.1.31.1.1.1.6.43 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.44 = COUNTER64: 1792 +.1.3.6.1.2.1.31.1.1.1.6.45 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.46 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.47 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.48 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.49 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.50 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.51 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.52 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.6.53 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.2 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.3 = COUNTER64: 32647690 +.1.3.6.1.2.1.31.1.1.1.10.4 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.5 = COUNTER64: 854805565 +.1.3.6.1.2.1.31.1.1.1.10.6 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.7 = COUNTER64: 25674703 +.1.3.6.1.2.1.31.1.1.1.10.8 = COUNTER64: 5058908 +.1.3.6.1.2.1.31.1.1.1.10.9 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.10 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.11 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.12 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.13 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.14 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.15 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.16 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.17 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.18 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.19 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.20 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.21 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.22 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.23 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.24 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.25 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.26 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.27 = COUNTER64: 85167669 +.1.3.6.1.2.1.31.1.1.1.10.28 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.29 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.30 = COUNTER64: 76 +.1.3.6.1.2.1.31.1.1.1.10.31 = COUNTER64: 152 +.1.3.6.1.2.1.31.1.1.1.10.32 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.33 = COUNTER64: 30554327 +.1.3.6.1.2.1.31.1.1.1.10.34 = COUNTER64: 85167669 +.1.3.6.1.2.1.31.1.1.1.10.35 = COUNTER64: 4608 +.1.3.6.1.2.1.31.1.1.1.10.36 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.37 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.38 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.39 = COUNTER64: 4608 +.1.3.6.1.2.1.31.1.1.1.10.40 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.41 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.42 = COUNTER64: 5500 +.1.3.6.1.2.1.31.1.1.1.10.43 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.44 = COUNTER64: 4608 +.1.3.6.1.2.1.31.1.1.1.10.45 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.46 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.47 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.48 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.49 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.50 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.51 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.10.52 = COUNTER64: 3004 +.1.3.6.1.2.1.31.1.1.1.10.53 = COUNTER64: 1724 +.1.3.6.1.2.1.31.1.1.1.11.1 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.2 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.3 = COUNTER64: 31106 +.1.3.6.1.2.1.31.1.1.1.11.4 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.5 = COUNTER64: 1727657 +.1.3.6.1.2.1.31.1.1.1.11.6 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.7 = COUNTER64: 58299 +.1.3.6.1.2.1.31.1.1.1.11.8 = COUNTER64: 6027 +.1.3.6.1.2.1.31.1.1.1.11.9 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.10 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.12 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.13 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.14 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.15 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.16 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.17 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.18 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.19 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.20 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.21 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.22 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.23 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.24 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.25 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.26 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.27 = COUNTER64: 693407 +.1.3.6.1.2.1.31.1.1.1.11.28 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.29 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.30 = COUNTER64: 1 +.1.3.6.1.2.1.31.1.1.1.11.31 = COUNTER64: 4 +.1.3.6.1.2.1.31.1.1.1.11.32 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.33 = COUNTER64: 61967 +.1.3.6.1.2.1.31.1.1.1.11.34 = COUNTER64: 693407 +.1.3.6.1.2.1.31.1.1.1.11.35 = COUNTER64: 72 +.1.3.6.1.2.1.31.1.1.1.11.36 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.37 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.38 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.39 = COUNTER64: 72 +.1.3.6.1.2.1.31.1.1.1.11.40 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.41 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.42 = COUNTER64: 77 +.1.3.6.1.2.1.31.1.1.1.11.43 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.44 = COUNTER64: 72 +.1.3.6.1.2.1.31.1.1.1.11.45 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.46 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.47 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.48 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.49 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.50 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.51 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.11.52 = COUNTER64: 46 +.1.3.6.1.2.1.31.1.1.1.11.53 = COUNTER64: 26 +.1.3.6.1.2.1.31.1.1.1.12.1 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.2 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.3 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.4 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.5 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.6 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.7 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.8 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.9 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.10 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.12 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.13 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.14 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.15 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.16 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.17 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.18 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.19 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.20 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.21 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.22 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.23 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.24 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.25 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.26 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.27 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.28 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.29 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.30 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.31 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.32 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.33 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.34 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.35 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.36 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.37 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.38 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.39 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.40 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.41 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.42 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.43 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.44 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.45 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.46 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.47 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.48 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.49 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.50 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.51 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.52 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.12.53 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.2 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.3 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.4 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.5 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.6 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.7 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.8 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.9 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.10 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.12 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.13 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.14 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.15 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.16 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.17 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.18 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.19 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.20 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.21 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.22 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.23 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.24 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.25 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.26 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.27 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.28 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.29 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.30 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.31 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.32 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.33 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.34 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.35 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.36 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.37 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.38 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.39 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.40 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.41 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.42 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.43 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.44 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.45 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.46 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.47 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.48 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.49 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.50 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.51 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.52 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.13.53 = COUNTER64: 0 +.1.3.6.1.2.1.31.1.1.1.14.1 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.2 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.3 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.4 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.5 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.6 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.7 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.8 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.9 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.10 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.11 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.12 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.13 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.14 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.15 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.16 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.17 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.18 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.19 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.20 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.21 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.22 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.23 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.24 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.25 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.26 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.27 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.28 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.29 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.30 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.31 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.32 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.33 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.34 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.35 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.36 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.37 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.38 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.39 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.40 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.41 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.42 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.43 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.44 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.45 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.46 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.47 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.48 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.49 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.50 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.51 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.52 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.14.53 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.15.1 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.2 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.3 = GAUGE32: 100 +.1.3.6.1.2.1.31.1.1.1.15.4 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.5 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.6 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.7 = GAUGE32: 100 +.1.3.6.1.2.1.31.1.1.1.15.8 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.9 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.10 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.11 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.12 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.13 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.14 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.15 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.16 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.17 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.18 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.19 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.20 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.21 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.22 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.23 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.24 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.25 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.26 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.27 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.28 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.29 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.30 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.31 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.32 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.33 = GAUGE32: 0 +.1.3.6.1.2.1.31.1.1.1.15.34 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.35 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.36 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.37 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.38 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.39 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.40 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.41 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.42 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.43 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.44 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.45 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.46 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.47 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.48 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.49 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.50 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.51 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.52 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.15.53 = GAUGE32: 1000 +.1.3.6.1.2.1.31.1.1.1.16.1 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.2 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.3 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.4 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.5 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.6 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.7 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.8 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.9 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.10 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.11 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.12 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.13 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.14 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.15 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.16 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.17 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.18 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.19 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.20 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.21 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.22 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.23 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.24 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.25 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.26 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.27 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.28 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.29 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.30 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.31 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.32 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.16.33 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.34 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.35 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.36 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.37 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.38 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.39 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.40 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.41 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.42 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.43 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.44 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.45 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.46 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.47 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.48 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.49 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.50 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.51 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.52 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.16.53 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.1 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.2 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.3 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.4 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.5 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.6 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.7 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.8 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.9 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.10 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.11 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.12 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.13 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.14 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.15 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.16 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.17 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.18 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.19 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.20 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.21 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.22 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.23 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.24 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.25 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.26 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.27 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.28 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.29 = INTEGER: 1 +.1.3.6.1.2.1.31.1.1.1.17.30 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.31 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.32 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.33 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.34 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.35 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.36 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.37 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.38 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.39 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.40 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.41 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.42 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.43 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.44 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.45 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.46 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.47 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.48 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.49 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.50 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.51 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.52 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.17.53 = INTEGER: 2 +.1.3.6.1.2.1.31.1.1.1.18.1 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.2 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.3 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.4 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.5 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.6 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.7 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.8 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.9 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.10 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.11 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.12 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.13 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.14 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.15 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.16 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.17 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.18 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.19 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.20 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.21 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.22 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.23 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.24 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.25 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.26 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.27 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.28 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.29 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.30 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.31 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.32 = STRING: Anonymized 017 +.1.3.6.1.2.1.31.1.1.1.18.33 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.34 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.35 = STRING: Anonymized 139 +.1.3.6.1.2.1.31.1.1.1.18.36 = STRING: Anonymized 000 +.1.3.6.1.2.1.31.1.1.1.18.37 = STRING: Anonymized 014 +.1.3.6.1.2.1.31.1.1.1.18.38 = STRING: Anonymized 060 +.1.3.6.1.2.1.31.1.1.1.18.39 = STRING: Anonymized 119 +.1.3.6.1.2.1.31.1.1.1.18.40 = STRING: Anonymized 250 +.1.3.6.1.2.1.31.1.1.1.18.41 = STRING: Anonymized 107 +.1.3.6.1.2.1.31.1.1.1.18.42 = STRING: Anonymized 081 +.1.3.6.1.2.1.31.1.1.1.18.43 = STRING: Anonymized 171 +.1.3.6.1.2.1.31.1.1.1.18.44 = STRING: Anonymized 019 +.1.3.6.1.2.1.31.1.1.1.18.45 = STRING: Anonymized 136 +.1.3.6.1.2.1.31.1.1.1.18.46 = STRING: Anonymized 171 +.1.3.6.1.2.1.31.1.1.1.18.47 = STRING: Anonymized 206 +.1.3.6.1.2.1.31.1.1.1.18.48 = STRING: Anonymized 074 +.1.3.6.1.2.1.31.1.1.1.18.49 = STRING: Anonymized 140 +.1.3.6.1.2.1.31.1.1.1.18.50 = STRING: Anonymized 206 +.1.3.6.1.2.1.31.1.1.1.18.51 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.52 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.18.53 = STRING: "" +.1.3.6.1.2.1.31.1.1.1.19.1 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.2 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.3 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.4 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.5 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.6 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.7 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.8 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.9 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.10 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.11 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.12 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.13 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.14 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.15 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.16 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.17 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.18 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.19 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.20 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.21 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.22 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.23 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.24 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.25 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.26 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.27 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.28 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.29 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.30 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.31 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.32 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.33 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.34 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.35 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.36 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.37 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.38 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.39 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.40 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.41 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.42 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.43 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.44 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.45 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.46 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.47 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.48 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.49 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.50 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.51 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.52 = TIMETICKS: 0 +.1.3.6.1.2.1.31.1.1.1.19.53 = TIMETICKS: 0 +.1.3.6.1.4.1.12356.101.3.1.1.0 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.3.1.2.0 = INTEGER: 10 +.1.3.6.1.4.1.12356.101.3.1.3.0 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.3.2.1.1.2.1 = STRING: Anonymized 220 +.1.3.6.1.4.1.12356.101.3.2.1.1.3.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.3.2.1.1.4.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.3.2.1.1.5.1 = GAUGE32: 12 +.1.3.6.1.4.1.12356.101.3.2.1.1.6.1 = GAUGE32: 16 +.1.3.6.1.4.1.12356.101.3.2.1.1.7.1 = GAUGE32: 32 +.1.3.6.1.4.1.12356.101.3.2.1.1.8.1 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.1.0 = STRING: Anonymized 099 +.1.3.6.1.4.1.12356.101.4.1.2.0 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.4.1.3.0 = GAUGE32: 12 +.1.3.6.1.4.1.12356.101.4.1.4.0 = GAUGE32: 16 +.1.3.6.1.4.1.12356.101.4.1.5.0 = GAUGE32: 7769824 +.1.3.6.1.4.1.12356.101.4.1.6.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.7.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.8.0 = GAUGE32: 42 +.1.3.6.1.4.1.12356.101.4.1.9.0 = GAUGE32: 20 +.1.3.6.1.4.1.12356.101.4.1.10.0 = GAUGE32: 7769824 +.1.3.6.1.4.1.12356.101.4.1.11.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.12.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.13.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.14.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.15.0 = GAUGE32: 17 +.1.3.6.1.4.1.12356.101.4.1.16.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.17.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.18.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.19.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.20.0 = COUNTER64: 26387067 +.1.3.6.1.4.1.12356.101.4.1.21.0 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.4.1.22.0 = STRING: Anonymized 135 +.1.3.6.1.4.1.12356.101.4.1.23.0 = STRING: Anonymized 050 +.1.3.6.1.4.1.12356.101.4.1.24.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.25.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.26.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.27.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.28.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.29.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.30.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.31.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.32.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.33.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.34.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.35.0 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.1.36.0 = GAUGE32: 79 +.1.3.6.1.4.1.12356.101.4.1.37.0 = GAUGE32: 4 +.1.3.6.1.4.1.12356.101.4.2.1.0 = STRING: "1.00000(2018-04-09 18:07)" +.1.3.6.1.4.1.12356.101.4.2.2.0 = STRING: "6.00741(2015-12-01 02:30)" +.1.3.6.1.4.1.12356.101.4.2.3.0 = STRING: "1.00000(2018-04-09 18:07)" +.1.3.6.1.4.1.12356.101.4.2.4.0 = STRING: "0.00000(2001-01-01 00:00)" +.1.3.6.1.4.1.12356.101.4.3.2.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.12356.101.4.3.2.1.1.11 = INTEGER: 11 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.1 = STRING: Anonymized 246 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.2 = STRING: Anonymized 187 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.3 = STRING: Anonymized 149 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.4 = STRING: Anonymized 036 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.5 = STRING: Anonymized 038 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.6 = STRING: Anonymized 206 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.7 = STRING: Anonymized 159 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.8 = STRING: Anonymized 166 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.9 = STRING: Anonymized 168 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.10 = STRING: Anonymized 069 +.1.3.6.1.4.1.12356.101.4.3.2.1.2.11 = STRING: Anonymized 252 +.1.3.6.1.4.1.12356.101.4.3.2.1.3.1 = STRING: "1" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.2 = STRING: "0" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.3 = STRING: "6308" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.4 = STRING: "6279" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.5 = STRING: "46" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.6 = STRING: "38" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.7 = STRING: "44.889999" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.8 = STRING: "55.099998" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.9 = STRING: "66.495796" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.10 = STRING: "44.0812" +.1.3.6.1.4.1.12356.101.4.3.2.1.3.11 = STRING: "44.636799" +.1.3.6.1.4.1.12356.101.4.3.2.1.4.1 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.2 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.3 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.4 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.5 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.6 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.7 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.8 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.9 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.10 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.3.2.1.4.11 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.1 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.2 = GAUGE32: 17 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.3 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.4 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.5 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.6 = GAUGE32: 2 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.7 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.8 = GAUGE32: 9 +.1.3.6.1.4.1.12356.101.4.4.2.1.2.9 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.1.0 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.6 = INTEGER: 6 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.7 = INTEGER: 7 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.8 = INTEGER: 8 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.11 = INTEGER: 11 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.12 = INTEGER: 12 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.13 = INTEGER: 13 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.14 = INTEGER: 14 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.15 = INTEGER: 15 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.16 = INTEGER: 16 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.17 = INTEGER: 17 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.18 = INTEGER: 18 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.19 = INTEGER: 19 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.20 = INTEGER: 20 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.21 = INTEGER: 21 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.22 = INTEGER: 22 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.23 = INTEGER: 23 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.24 = INTEGER: 24 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.25 = INTEGER: 25 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.26 = INTEGER: 26 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.27 = INTEGER: 27 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.28 = INTEGER: 28 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.29 = INTEGER: 29 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.30 = INTEGER: 30 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.31 = INTEGER: 31 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.32 = INTEGER: 32 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.33 = INTEGER: 33 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.34 = INTEGER: 34 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.35 = INTEGER: 35 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.36 = INTEGER: 36 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.37 = INTEGER: 37 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.38 = INTEGER: 38 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.39 = INTEGER: 39 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.40 = INTEGER: 40 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.41 = INTEGER: 41 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.42 = INTEGER: 42 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.43 = INTEGER: 43 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.44 = INTEGER: 44 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.45 = INTEGER: 45 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.46 = INTEGER: 46 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.47 = INTEGER: 47 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.48 = INTEGER: 48 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.49 = INTEGER: 49 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.50 = INTEGER: 50 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.51 = INTEGER: 51 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.52 = INTEGER: 52 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.53 = INTEGER: 53 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.54 = INTEGER: 54 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.55 = INTEGER: 55 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.56 = INTEGER: 56 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.57 = INTEGER: 57 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.58 = INTEGER: 58 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.59 = INTEGER: 59 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.60 = INTEGER: 60 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.61 = INTEGER: 61 +.1.3.6.1.4.1.12356.101.4.10.3.1.1.62 = INTEGER: 62 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.1 = STRING: Anonymized 033 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.2 = STRING: Anonymized 196 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.3 = STRING: Anonymized 027 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.4 = STRING: Anonymized 165 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.5 = STRING: Anonymized 192 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.6 = STRING: Anonymized 002 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.7 = STRING: Anonymized 011 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.8 = STRING: Anonymized 254 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.9 = STRING: Anonymized 194 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.10 = STRING: Anonymized 218 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.11 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.12 = STRING: "/dev/mmcblk0p3" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.13 = STRING: Anonymized 089 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.14 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.15 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.16 = STRING: Anonymized 099 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.17 = STRING: Anonymized 201 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.18 = STRING: Anonymized 241 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.19 = STRING: Anonymized 100 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.20 = STRING: Anonymized 034 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.21 = STRING: Anonymized 080 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.22 = STRING: Anonymized 186 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.23 = STRING: Anonymized 243 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.24 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.25 = STRING: Anonymized 247 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.26 = STRING: Anonymized 001 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.27 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.28 = STRING: Anonymized 079 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.29 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.30 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.31 = STRING: Anonymized 181 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.32 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.33 = STRING: Anonymized 091 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.34 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.35 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.36 = STRING: Anonymized 248 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.37 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.38 = STRING: Anonymized 152 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.39 = STRING: Anonymized 066 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.40 = STRING: Anonymized 203 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.41 = STRING: Anonymized 089 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.42 = STRING: "/dev/mmcblk0p3" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.43 = STRING: Anonymized 239 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.44 = STRING: "/dev/mmcblk0p3" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.45 = STRING: Anonymized 085 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.46 = STRING: Anonymized 125 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.47 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.48 = STRING: Anonymized 145 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.49 = STRING: Anonymized 046 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.50 = STRING: Anonymized 082 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.51 = STRING: Anonymized 032 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.52 = STRING: Anonymized 070 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.53 = STRING: Anonymized 229 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.54 = STRING: Anonymized 244 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.55 = STRING: Anonymized 088 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.56 = STRING: "/dev/mmcblk0p1" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.57 = STRING: "/dev/mmcblk0p3" +.1.3.6.1.4.1.12356.101.4.10.3.1.2.58 = STRING: Anonymized 068 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.59 = STRING: Anonymized 232 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.60 = STRING: Anonymized 184 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.61 = STRING: Anonymized 050 +.1.3.6.1.4.1.12356.101.4.10.3.1.2.62 = STRING: Anonymized 207 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.1 = STRING: "/" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.2 = STRING: "/proc" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.3 = STRING: "/sys" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.4 = STRING: "/tmp" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.5 = STRING: "/dev/pts" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.6 = STRING: "/dev/shm" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.7 = STRING: "/dev/cmdb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.8 = STRING: "/dev/shmfile" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.9 = STRING: "/proc/bus/usb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.10 = STRING: "/sys/kernel/security" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.11 = STRING: "/data" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.12 = STRING: "/data2" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.13 = STRING: "/new_root/zebos/dev/pts" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.14 = STRING: "/new_root/zebos/etc/localtime" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.15 = STRING: "/tmp/dnsproxy_root/data/etc/cert" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.16 = STRING: "/tmp/dnsproxy_root/dev/pts" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.17 = STRING: "/tmp/dnsproxy_root/dev/cmdb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.18 = STRING: "/tmp/dnsproxy_root/dev/shmfile" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.19 = STRING: "/tmp/dnsproxy_root/tmp/botnet_domain_shm" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.20 = STRING: "/tmp/dnsproxy_root/tmp/botnet_domain_shm_stat" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.21 = STRING: "/tmp/dnsproxy_root/tmp/botnet_ip_shm" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.22 = STRING: "/tmp/dnsproxy_root/tmp/botnet_ip_shm_stat" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.23 = STRING: "/tmp/dnsproxy_root/tmp/external_shm" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.24 = STRING: "/tmp/dnsproxy_root/data/etc/localtime" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.25 = STRING: "/new_root/eap_proxy/dev/cmdb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.26 = STRING: "/new_root/eap_proxy/dev/shmfile" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.27 = STRING: "/new_root/eap_proxy/etc/cert/ca" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.28 = STRING: "/new_root/eap_proxy/dev/pts" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.29 = STRING: "/new_root/eap_proxy/etc/localtime" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.30 = STRING: "/new_root/eap_proxy_worker/etc/cert/ca" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.31 = STRING: "/new_root/eap_proxy_worker/dev/pts" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.32 = STRING: "/new_root/eap_proxy_worker/etc/localtime" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.33 = STRING: "/tmp/wad/jail/tmp/mnt" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.34 = STRING: "/tmp/wad/jail/etc/cert" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.35 = STRING: "/tmp/wad/jail/etc/sshproxy" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.36 = STRING: "/tmp/wad/jail/var/run" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.37 = STRING: "/tmp/wad/jail/etc/waf-sig" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.38 = STRING: "/tmp/wad/jail/migadmin/webfilter/ublock/ftgd/lang" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.39 = STRING: "/tmp/wad/jail/migadmin/webfilter/ublock/ftgd/daemon/lang" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.40 = STRING: "/tmp/wad/jail/var/log/buf" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.41 = STRING: "/tmp/wad/jail/var/log/ems_ztna_certs" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.42 = STRING: "/tmp/wad/jail/data2/ffdb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.43 = STRING: "/tmp/wad/jail/tmp/ffdb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.44 = STRING: "/tmp/wad/jail/data2/antiphish" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.45 = STRING: "/tmp/wad/jail/migadmin/images/replacement_messages" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.46 = STRING: "/tmp/wad/jail/tmp/external_shm" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.47 = STRING: "/tmp/wad/jail/data/lib" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.48 = STRING: Anonymized 160 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.49 = STRING: Anonymized 198 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.50 = STRING: Anonymized 158 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.51 = STRING: Anonymized 078 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.52 = STRING: Anonymized 127 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.53 = STRING: Anonymized 188 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.54 = STRING: Anonymized 241 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.55 = STRING: Anonymized 094 +.1.3.6.1.4.1.12356.101.4.10.3.1.3.56 = STRING: "/tmp/wad/jail/etc/pac" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.57 = STRING: "/tmp/wad/jail/data2/geodb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.58 = STRING: "/tmp/wad/jail/dev/cmdb" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.59 = STRING: "/tmp/wad/jail/proc" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.60 = STRING: "/tmp/wad/jail/tmp/snmp" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.61 = STRING: "/tmp/wad/jail/tmp/dns" +.1.3.6.1.4.1.12356.101.4.10.3.1.3.62 = STRING: "/tmp/wad/jail/tmp/nst" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.1 = STRING: Anonymized 243 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.2 = STRING: Anonymized 176 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.3 = STRING: Anonymized 167 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.4 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.5 = STRING: Anonymized 182 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.6 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.7 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.8 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.9 = STRING: Anonymized 196 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.10 = STRING: Anonymized 156 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.11 = STRING: Anonymized 081 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.12 = STRING: Anonymized 040 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.13 = STRING: Anonymized 225 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.14 = STRING: Anonymized 138 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.15 = STRING: Anonymized 139 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.16 = STRING: Anonymized 155 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.17 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.18 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.19 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.20 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.21 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.22 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.23 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.24 = STRING: Anonymized 185 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.25 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.26 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.27 = STRING: Anonymized 063 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.28 = STRING: Anonymized 064 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.29 = STRING: Anonymized 078 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.30 = STRING: Anonymized 250 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.31 = STRING: Anonymized 139 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.32 = STRING: Anonymized 004 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.33 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.34 = STRING: Anonymized 114 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.35 = STRING: Anonymized 159 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.36 = STRING: Anonymized 147 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.37 = STRING: Anonymized 241 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.38 = STRING: Anonymized 038 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.39 = STRING: Anonymized 063 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.40 = STRING: Anonymized 001 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.41 = STRING: Anonymized 132 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.42 = STRING: Anonymized 166 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.43 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.44 = STRING: Anonymized 111 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.45 = STRING: Anonymized 209 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.46 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.47 = STRING: Anonymized 082 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.48 = STRING: Anonymized 069 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.49 = STRING: Anonymized 219 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.50 = STRING: Anonymized 150 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.51 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.52 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.53 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.54 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.55 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.56 = STRING: Anonymized 222 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.57 = STRING: Anonymized 141 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.58 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.59 = STRING: Anonymized 196 +.1.3.6.1.4.1.12356.101.4.10.3.1.4.60 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.61 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.4.62 = STRING: "tmpfs" +.1.3.6.1.4.1.12356.101.4.10.3.1.5.1 = STRING: Anonymized 234 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.2 = STRING: Anonymized 080 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.3 = STRING: Anonymized 100 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.4 = STRING: Anonymized 178 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.5 = STRING: Anonymized 245 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.6 = STRING: Anonymized 104 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.7 = STRING: Anonymized 082 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.8 = STRING: Anonymized 228 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.9 = STRING: Anonymized 039 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.10 = STRING: Anonymized 129 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.11 = STRING: Anonymized 014 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.12 = STRING: Anonymized 063 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.13 = STRING: Anonymized 030 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.14 = STRING: Anonymized 161 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.15 = STRING: Anonymized 245 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.16 = STRING: Anonymized 134 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.17 = STRING: Anonymized 110 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.18 = STRING: Anonymized 170 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.19 = STRING: Anonymized 141 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.20 = STRING: Anonymized 129 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.21 = STRING: Anonymized 026 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.22 = STRING: Anonymized 207 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.23 = STRING: Anonymized 092 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.24 = STRING: Anonymized 199 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.25 = STRING: Anonymized 111 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.26 = STRING: Anonymized 054 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.27 = STRING: Anonymized 236 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.28 = STRING: Anonymized 132 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.29 = STRING: Anonymized 175 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.30 = STRING: Anonymized 110 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.31 = STRING: Anonymized 088 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.32 = STRING: Anonymized 081 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.33 = STRING: Anonymized 137 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.34 = STRING: Anonymized 195 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.35 = STRING: Anonymized 251 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.36 = STRING: Anonymized 004 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.37 = STRING: Anonymized 091 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.38 = STRING: Anonymized 051 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.39 = STRING: Anonymized 180 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.40 = STRING: Anonymized 227 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.41 = STRING: Anonymized 157 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.42 = STRING: Anonymized 146 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.43 = STRING: Anonymized 012 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.44 = STRING: Anonymized 044 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.45 = STRING: Anonymized 118 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.46 = STRING: Anonymized 090 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.47 = STRING: Anonymized 015 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.48 = STRING: Anonymized 093 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.49 = STRING: Anonymized 062 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.50 = STRING: Anonymized 209 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.51 = STRING: Anonymized 165 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.52 = STRING: Anonymized 042 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.53 = STRING: Anonymized 237 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.54 = STRING: Anonymized 078 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.55 = STRING: Anonymized 149 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.56 = STRING: Anonymized 005 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.57 = STRING: Anonymized 133 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.58 = STRING: Anonymized 083 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.59 = STRING: Anonymized 116 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.60 = STRING: Anonymized 205 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.61 = STRING: Anonymized 176 +.1.3.6.1.4.1.12356.101.4.10.3.1.5.62 = STRING: Anonymized 143 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.1 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.2 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.3 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.4 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.5 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.6 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.7 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.8 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.9 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.10 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.11 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.12 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.13 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.14 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.15 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.16 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.17 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.18 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.19 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.20 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.21 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.22 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.23 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.24 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.25 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.26 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.27 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.28 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.29 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.30 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.31 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.32 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.33 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.34 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.35 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.36 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.37 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.38 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.39 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.40 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.41 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.42 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.43 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.44 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.45 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.46 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.47 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.48 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.49 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.50 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.51 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.52 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.53 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.54 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.55 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.56 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.57 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.58 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.59 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.60 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.61 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.6.62 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.1 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.2 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.3 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.4 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.5 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.6 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.7 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.8 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.9 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.10 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.11 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.12 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.13 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.14 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.15 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.16 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.17 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.18 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.19 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.20 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.21 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.22 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.23 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.24 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.25 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.26 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.27 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.28 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.29 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.30 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.31 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.32 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.33 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.34 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.35 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.36 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.37 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.38 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.39 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.40 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.41 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.42 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.43 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.44 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.45 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.46 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.47 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.48 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.49 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.50 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.51 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.52 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.53 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.54 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.55 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.56 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.57 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.58 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.59 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.60 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.61 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.7.62 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.1 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.2 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.3 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.4 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.5 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.6 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.7 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.8 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.9 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.10 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.11 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.12 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.13 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.14 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.15 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.16 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.17 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.18 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.19 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.20 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.21 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.22 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.23 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.24 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.25 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.26 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.27 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.28 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.29 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.30 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.31 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.32 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.33 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.34 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.35 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.36 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.37 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.38 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.39 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.40 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.41 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.42 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.43 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.44 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.45 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.46 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.47 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.48 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.49 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.50 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.51 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.52 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.53 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.54 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.55 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.56 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.57 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.58 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.59 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.60 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.61 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.3.1.8.62 = GAUGE32: 1 +.1.3.6.1.4.1.12356.101.4.10.4.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.4.10.4.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.12356.101.4.10.4.1.1.3 = INTEGER: 3 +.1.3.6.1.4.1.12356.101.4.10.4.1.1.4 = INTEGER: 4 +.1.3.6.1.4.1.12356.101.4.10.4.1.1.5 = INTEGER: 5 +.1.3.6.1.4.1.12356.101.4.10.4.1.2.1 = INTEGER: 31 +.1.3.6.1.4.1.12356.101.4.10.4.1.2.2 = INTEGER: 179 +.1.3.6.1.4.1.12356.101.4.10.4.1.2.3 = INTEGER: 179 +.1.3.6.1.4.1.12356.101.4.10.4.1.2.4 = INTEGER: 179 +.1.3.6.1.4.1.12356.101.4.10.4.1.2.5 = INTEGER: 179 +.1.3.6.1.4.1.12356.101.4.10.4.1.3.1 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.4.1.3.2 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.10.4.1.3.3 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.4.10.4.1.3.4 = INTEGER: 2 +.1.3.6.1.4.1.12356.101.4.10.4.1.3.5 = INTEGER: 3 +.1.3.6.1.4.1.12356.101.4.10.4.1.4.1 = INTEGER: 2048 +.1.3.6.1.4.1.12356.101.4.10.4.1.4.2 = INTEGER: 3735552 +.1.3.6.1.4.1.12356.101.4.10.4.1.4.3 = INTEGER: 262144 +.1.3.6.1.4.1.12356.101.4.10.4.1.4.4 = INTEGER: 262144 +.1.3.6.1.4.1.12356.101.4.10.4.1.4.5 = INTEGER: 3069948 +.1.3.6.1.4.1.12356.101.4.10.4.1.5.1 = STRING: Anonymized 197 +.1.3.6.1.4.1.12356.101.4.10.4.1.5.2 = STRING: Anonymized 209 +.1.3.6.1.4.1.12356.101.4.10.4.1.5.3 = STRING: Anonymized 140 +.1.3.6.1.4.1.12356.101.4.10.4.1.5.4 = STRING: Anonymized 249 +.1.3.6.1.4.1.12356.101.4.10.4.1.5.5 = STRING: Anonymized 047 +.1.3.6.1.4.1.12356.101.4.11.1.0 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.4.12.1.0 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.5.1.2.1.1.1.1.0 = INTEGER: 0 +.1.3.6.1.4.1.12356.101.5.1.2.1.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.5.1.2.1.1.1.1.2 = INTEGER: 2 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.2 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.3 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.4 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.5 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.6 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.7 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.8 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.9 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.10 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.11 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.12 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.13 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.14 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.15 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.16 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.17 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.18 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.19 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.20 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.21 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.22 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.23 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.24 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.25 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.26 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.27 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.28 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.29 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.30 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.31 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.32 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.33 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.34 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.35 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.36 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.37 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.38 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.39 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.40 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.41 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.42 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.43 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.44 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.45 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.46 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.47 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.48 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.49 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.50 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.51 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.52 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.7.2.1.1.1.53 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.8.2.1.1.1.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.2.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.3.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.4.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.5.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.6.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.7.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.8.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.9.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.10.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.11.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.12.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.13.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.14.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.15.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.16.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.17.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.18.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.19.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.20.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.21.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.8.2.1.1.22.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.1.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.2.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.3.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.4.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.5.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.6.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.7.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.8.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.9.2.1.1.9.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.12.2.3.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.12.2.3.1.2.1 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.12.2.3.1.3.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.12.2.3.1.4.1 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.12.2.3.1.5.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.12.2.3.1.6.1 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.12.2.3.1.7.1 = COUNTER32: 0 +.1.3.6.1.4.1.12356.101.13.1.1.0 = INTEGER: 3 +.1.3.6.1.4.1.12356.101.13.2.1.1.2.1 = STRING: Anonymized 026 +.1.3.6.1.4.1.12356.101.13.2.1.1.2.2 = STRING: Anonymized 015 +.1.3.6.1.4.1.12356.101.13.2.1.1.3.1 = GAUGE32: 12 +.1.3.6.1.4.1.12356.101.13.2.1.1.3.2 = GAUGE32: 0 +.1.3.6.1.4.1.12356.101.13.2.1.1.4.1 = GAUGE32: 16 +.1.3.6.1.4.1.12356.101.13.2.1.1.4.2 = GAUGE32: 16 +.1.3.6.1.4.1.12356.101.13.2.1.1.11.1 = STRING: Anonymized 213 +.1.3.6.1.4.1.12356.101.13.2.1.1.11.2 = STRING: Anonymized 215 +.1.3.6.1.4.1.12356.101.13.2.1.1.12.1 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.13.2.1.1.12.2 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.13.2.1.1.15.1 = STRING: Anonymized 012 +.1.3.6.1.4.1.12356.101.13.2.1.1.15.2 = STRING: Anonymized 190 +.1.3.6.1.4.1.12356.101.13.2.1.1.16.1 = STRING: Anonymized 232 +.1.3.6.1.4.1.12356.101.13.2.1.1.16.2 = STRING: Anonymized 150 +.1.3.6.1.4.1.12356.101.24.1.1.1.3.1.55.23012895 = STRING: Anonymized 209 +.1.3.6.1.4.1.12356.101.24.1.1.1.3.1.58.23022626 = STRING: Anonymized 146 +.1.3.6.1.4.1.12356.101.24.1.1.1.4.1.55.23012895 = STRING: Anonymized 188 +.1.3.6.1.4.1.12356.101.24.1.1.1.4.1.58.23022626 = STRING: Anonymized 152 +.1.3.6.1.4.1.12356.101.24.1.1.1.5.1.55.23012895 = STRING: Anonymized 103 +.1.3.6.1.4.1.12356.101.24.1.1.1.5.1.58.23022626 = STRING: Anonymized 056 +.1.3.6.1.4.1.12356.101.24.1.1.1.6.1.55.23012895 = INTEGER: 2 +.1.3.6.1.4.1.12356.101.24.1.1.1.6.1.58.23022626 = INTEGER: 2 +.1.3.6.1.4.1.12356.101.24.1.1.1.7.1.55.23012895 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.24.1.1.1.7.1.58.23022626 = INTEGER: 1 +.1.3.6.1.4.1.12356.101.24.1.1.1.8.1.55.23012895 = GAUGE32: 1737462771 +.1.3.6.1.4.1.12356.101.24.1.1.1.8.1.58.23022626 = GAUGE32: 1737462817 +.1.3.6.1.4.1.12356.101.24.1.1.1.9.1.55.23012895 = IPADDRESS: 10.255.1.2 +.1.3.6.1.4.1.12356.101.24.1.1.1.9.1.58.23022626 = IPADDRESS: 10.255.1.3 +.1.3.6.1.4.1.12356.101.24.1.1.1.10.1.55.23012895 = STRING: "2" +.1.3.6.1.4.1.12356.101.24.1.1.1.10.1.58.23022626 = STRING: "2" +.1.3.6.1.4.1.12356.101.24.1.1.1.11.1.55.23012895 = INTEGER: 21 +.1.3.6.1.4.1.12356.101.24.1.1.1.11.1.58.23022626 = INTEGER: 7 +.1.3.6.1.4.1.12356.101.24.1.1.1.12.1.55.23012895 = INTEGER: 38 +.1.3.6.1.4.1.12356.101.24.1.1.1.12.1.58.23022626 = INTEGER: 65 +.1.3.6.1.4.1.12356.101.24.1.1.1.13.1.55.23012895 = NULL: +.1.3.6.1.4.1.12356.101.24.1.1.1.13.1.58.23022626 = NULL: diff --git a/tests/network/fortinet/fortigate/snmp/switch-usage.robot b/tests/network/fortinet/fortigate/snmp/switch-usage.robot new file mode 100644 index 000000000..2af329ec4 --- /dev/null +++ b/tests/network/fortinet/fortigate/snmp/switch-usage.robot @@ -0,0 +1,36 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::fortinet::fortigate::snmp::plugin + +*** Test Cases *** +switch-usage ${tc} + [Tags] network switch-usage + ${command} Catenate + ... ${CMD} + ... --mode=switch-usage + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/fortinet/fortigate/snmp/slim_fortigate-switches + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All switches are ok | 'cpu_Anonymized 188'=21.00%;;;0;100 'memory_Anonymized 188'=38.00%;;;0;100 'cpu_Anonymized 152'=7.00%;;;0;100 'memory_Anonymized 152'=65.00%;;;0;100 + ... 2 --warning-cpu=10 WARNING: Switch 'Anonymized 188' cpu usage: 21.00 % | 'cpu_Anonymized 188'=21.00%;0:10;;0;100 'memory_Anonymized 188'=38.00%;;;0;100 'cpu_Anonymized 152'=7.00%;0:10;;0;100 'memory_Anonymized 152'=65.00%;;;0;100 + ... 3 --critical-cpu=10 CRITICAL: Switch 'Anonymized 188' cpu usage: 21.00 % | 'cpu_Anonymized 188'=21.00%;;0:10;0;100 'memory_Anonymized 188'=38.00%;;;0;100 'cpu_Anonymized 152'=7.00%;;0:10;0;100 'memory_Anonymized 152'=65.00%;;;0;100 + ... 4 --warning-memory=10 WARNING: Switch 'Anonymized 188' memory usage: 38.00 % - Switch 'Anonymized 152' memory usage: 65.00 % | 'cpu_Anonymized 188'=21.00%;;;0;100 'memory_Anonymized 188'=38.00%;0:10;;0;100 'cpu_Anonymized 152'=7.00%;;;0;100 'memory_Anonymized 152'=65.00%;0:10;;0;100 + ... 5 --critical-memory=10 CRITICAL: Switch 'Anonymized 188' memory usage: 38.00 % - Switch 'Anonymized 152' memory usage: 65.00 % | 'cpu_Anonymized 188'=21.00%;;;0;100 'memory_Anonymized 188'=38.00%;;0:10;0;100 'cpu_Anonymized 152'=7.00%;;;0;100 'memory_Anonymized 152'=65.00%;;0:10;0;100 + ... 6 --filter-name='Anonymized 188' OK: Switch 'Anonymized 188' status: up [admin: authorized], cpu usage: 21.00 %, memory usage: 38.00 % | 'cpu'=21.00%;;;0;100 'memory'=38.00%;;;0;100 + ... 7 --filter-ip='' OK: All switches are ok | 'cpu_Anonymized 188'=21.00%;;;0;100 'memory_Anonymized 188'=38.00%;;;0;100 'cpu_Anonymized 152'=7.00%;;;0;100 'memory_Anonymized 152'=65.00%;;;0;100 + ... 8 --unknown-status='\\\%{admin} eq "authorized"' UNKNOWN: Switch 'Anonymized 188' status: up [admin: authorized] - Switch 'Anonymized 152' status: up [admin: authorized] | 'cpu_Anonymized 188'=21.00%;;;0;100 'memory_Anonymized 188'=38.00%;;;0;100 'cpu_Anonymized 152'=7.00%;;;0;100 'memory_Anonymized 152'=65.00%;;;0;100 + ... 9 --warning-status='\\\%{status} eq "up"' WARNING: Switch 'Anonymized 188' status: up [admin: authorized] - Switch 'Anonymized 152' status: up [admin: authorized] | 'cpu_Anonymized 188'=21.00%;;;0;100 'memory_Anonymized 188'=38.00%;;;0;100 'cpu_Anonymized 152'=7.00%;;;0;100 'memory_Anonymized 152'=65.00%;;;0;100 + ... 10 --critical-status='\\\%{status} ne "down"' CRITICAL: Switch 'Anonymized 188' status: up [admin: authorized] - Switch 'Anonymized 152' status: up [admin: authorized] | 'cpu_Anonymized 188'=21.00%;;;0;100 'memory_Anonymized 188'=38.00%;;;0;100 'cpu_Anonymized 152'=7.00%;;;0;100 'memory_Anonymized 152'=65.00%;;;0;100 \ No newline at end of file diff --git a/tests/network/sonus/sbc/snmp/call-statistics.robot b/tests/network/sonus/sbc/snmp/call-statistics.robot new file mode 100644 index 000000000..4f714280b --- /dev/null +++ b/tests/network/sonus/sbc/snmp/call-statistics.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s +Suite Setup Ctn Generic Suite Setup + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::sonus::sbc::snmp::plugin + + +*** Test Cases *** +call-statistics ${tc} + [Tags] network sonus + ${command} Catenate + ... ${CMD} + ... --mode=call-statistics + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/sonus/sbc/snmp/slim_sonus-sbc + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All ports call statistics are ok | '1#port.calls.current.count'=5;;;0; '2#port.calls.current.count'=7;;;0; '3#port.calls.current.count'=9;;;0; + ... 2 --warning-current=5 --critical-current=7 CRITICAL: Port '3' number of calls current: 9 WARNING: Port '2' number of calls current: 7 | '1#port.calls.current.count'=5;0:5;0:7;0; '1#port.calls.total.count'=0;;;0; '1#port.calls.connected.count'=0;;;0; '1#port.calls.refused.count'=0;;;0; '1#port.calls.errored.count'=0;;;0; '1#port.calls.blocked.count'=0;;;0; '2#port.calls.current.count'=7;0:5;0:7;0; '2#port.calls.total.count'=0;;;0; '2#port.calls.connected.count'=0;;;0; '2#port.calls.refused.count'=0;;;0; '2#port.calls.errored.count'=0;;;0; '2#port.calls.blocked.count'=0;;;0; '3#port.calls.current.count'=9;0:5;0:7;0; '3#port.calls.total.count'=0;;;0; '3#port.calls.connected.count'=0;;;0; '3#port.calls.refused.count'=0;;;0; '3#port.calls.errored.count'=0;;;0; '3#port.calls.blocked.count'=0;;;0; + ... 3 --warning-total=0 --critical-total=10 OK: All ports call statistics are ok | '1#port.calls.current.count'=5;;;0; '1#port.calls.total.count'=0;0:0;0:10;0; '1#port.calls.connected.count'=0;;;0; '1#port.calls.refused.count'=0;;;0; '1#port.calls.errored.count'=0;;;0; '1#port.calls.blocked.count'=0;;;0; '2#port.calls.current.count'=7;;;0; '2#port.calls.total.count'=0;0:0;0:10;0; '2#port.calls.connected.count'=0;;;0; '2#port.calls.refused.count'=0;;;0; '2#port.calls.errored.count'=0;;;0; '2#port.calls.blocked.count'=0;;;0; '3#port.calls.current.count'=9;;;0; '3#port.calls.total.count'=0;0:0;0:10;0; '3#port.calls.connected.count'=0;;;0; '3#port.calls.refused.count'=0;;;0; '3#port.calls.errored.count'=0;;;0; '3#port.calls.blocked.count'=0;;;0; + ... 4 --warning-current=5 --critical-current='' WARNING: Port '2' number of calls current: 7 - Port '3' number of calls current: 9 | '1#port.calls.current.count'=5;0:5;;0; '1#port.calls.total.count'=0;;;0; '1#port.calls.connected.count'=0;;;0; '1#port.calls.refused.count'=0;;;0; '1#port.calls.errored.count'=0;;;0; '1#port.calls.blocked.count'=0;;;0; '2#port.calls.current.count'=7;0:5;;0; '2#port.calls.total.count'=0;;;0; '2#port.calls.connected.count'=0;;;0; '2#port.calls.refused.count'=0;;;0; '2#port.calls.errored.count'=0;;;0; '2#port.calls.blocked.count'=0;;;0; '3#port.calls.current.count'=9;0:5;;0; '3#port.calls.total.count'=0;;;0; '3#port.calls.connected.count'=0;;;0; '3#port.calls.refused.count'=0;;;0; '3#port.calls.errored.count'=0;;;0; '3#port.calls.blocked.count'=0;;;0; diff --git a/tests/network/sonus/sbc/snmp/channels.robot b/tests/network/sonus/sbc/snmp/channels.robot new file mode 100644 index 000000000..4c1151735 --- /dev/null +++ b/tests/network/sonus/sbc/snmp/channels.robot @@ -0,0 +1,32 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::sonus::sbc::snmp::plugin + + +*** Test Cases *** +channels ${tc} + [Tags] network sonus + ${command} Catenate + ... ${CMD} + ... --mode=channels + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/sonus/sbc/snmp/slim_sonus-sbc + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: All channels are ok | 'channels.total.count'=4;;;0; 'channels.outofservice.count'=0;;;0; 'channels.idle.count'=4;;;0; 'channels.pending.count'=0;;;0; 'channels.waiting_for_route.count'=0;;;0; 'channels.action_list.count'=0;;;0; 'channels.waiting_for_digits.count'=0;;;0; 'channels.remote_setup.count'=0;;;0; 'channels.peer_setup.count'=0;;;0; 'channels.alerting.count'=0;;;0; 'channels.inband_info.count'=0;;;0; 'channels.connected.count'=0;;;0; 'channels.tone_generation.count'=0;;;0; 'channels.releasing.count'=0;;;0; 'channels.aborting.count'=0;;;0; 'channels.resetting.count'=0;;;0; 'channels.up.count'=0;;;0; 'channels.down.count'=0;;;0; 'shelf1~slot0~port1~channel1#channel.lifetime.seconds'=43316s;;;0; 'shelf1~slot0~port1~channel2#channel.lifetime.seconds'=42338s;;;0; 'shelf1~slot1~port1~channel1#channel.lifetime.seconds'=515930s;;;0; 'shelf1~slot1~port2~channel1#channel.lifetime.seconds'=138887s;;;0; + ... 6 --filter-channel-id='1/1/1/1' OK: | 'channels.total.count'=0;;;0; 'channels.outofservice.count'=0;;;0; 'channels.idle.count'=0;;;0; 'channels.pending.count'=0;;;0; 'channels.waiting_for_route.count'=0;;;0; 'channels.action_list.count'=0;;;0; 'channels.waiting_for_digits.count'=0;;;0; 'channels.remote_setup.count'=0;;;0; 'channels.peer_setup.count'=0;;;0; 'channels.alerting.count'=0;;;0; 'channels.inband_info.count'=0;;;0; 'channels.connected.count'=0;;;0; 'channels.tone_generation.count'=0;;;0; 'channels.releasing.count'=0;;;0; 'channels.aborting.count'=0;;;0; 'channels.resetting.count'=0;;;0; 'channels.up.count'=0;;;0; 'channels.down.count'=0;;;0; + ... 7 --warning-status='\\\%{opstatus} eq "idle"' WARNING: channel '1/0/1/1' oper status: idle - channel '1/0/1/2' oper status: idle - channel '1/1/1/1' oper status: idle - channel '1/1/2/1' oper status: idle | 'channels.total.count'=4;;;0; 'channels.outofservice.count'=0;;;0; 'channels.idle.count'=4;;;0; 'channels.pending.count'=0;;;0; 'channels.waiting_for_route.count'=0;;;0; 'channels.action_list.count'=0;;;0; 'channels.waiting_for_digits.count'=0;;;0; 'channels.remote_setup.count'=0;;;0; 'channels.peer_setup.count'=0;;;0; 'channels.alerting.count'=0;;;0; 'channels.inband_info.count'=0;;;0; 'channels.connected.count'=0;;;0; 'channels.tone_generation.count'=0;;;0; 'channels.releasing.count'=0;;;0; 'channels.aborting.count'=0;;;0; 'channels.resetting.count'=0;;;0; 'channels.up.count'=0;;;0; 'channels.down.count'=0;;;0; 'shelf1~slot0~port1~channel1#channel.lifetime.seconds'=43316s;;;0; 'shelf1~slot0~port1~channel2#channel.lifetime.seconds'=42338s;;;0; 'shelf1~slot1~port1~channel1#channel.lifetime.seconds'=515930s;;;0; 'shelf1~slot1~port2~channel1#channel.lifetime.seconds'=138887s;;;0; + ... 8 --critical-status='\\\%{opstatus} eq "idle"' CRITICAL: channel '1/0/1/1' oper status: idle - channel '1/0/1/2' oper status: idle - channel '1/1/1/1' oper status: idle - channel '1/1/2/1' oper status: idle | 'channels.total.count'=4;;;0; 'channels.outofservice.count'=0;;;0; 'channels.idle.count'=4;;;0; 'channels.pending.count'=0;;;0; 'channels.waiting_for_route.count'=0;;;0; 'channels.action_list.count'=0;;;0; 'channels.waiting_for_digits.count'=0;;;0; 'channels.remote_setup.count'=0;;;0; 'channels.peer_setup.count'=0;;;0; 'channels.alerting.count'=0;;;0; 'channels.inband_info.count'=0;;;0; 'channels.connected.count'=0;;;0; 'channels.tone_generation.count'=0;;;0; 'channels.releasing.count'=0;;;0; 'channels.aborting.count'=0;;;0; 'channels.resetting.count'=0;;;0; 'channels.up.count'=0;;;0; 'channels.down.count'=0;;;0; 'shelf1~slot0~port1~channel1#channel.lifetime.seconds'=43316s;;;0; 'shelf1~slot0~port1~channel2#channel.lifetime.seconds'=42338s;;;0; 'shelf1~slot1~port1~channel1#channel.lifetime.seconds'=515930s;;;0; 'shelf1~slot1~port2~channel1#channel.lifetime.seconds'=138887s;;;0; + ... 9 --warning-channels-total=1 --critical-channels-total=1 --filter-counters='total' CRITICAL: number of channels total: 4 | 'channels.total.count'=4;0:1;0:1;0; \ No newline at end of file diff --git a/tests/network/sonus/sbc/snmp/dsp-stats.robot b/tests/network/sonus/sbc/snmp/dsp-stats.robot new file mode 100644 index 000000000..1db9511c8 --- /dev/null +++ b/tests/network/sonus/sbc/snmp/dsp-stats.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::sonus::sbc::snmp::plugin + + +*** Test Cases *** +dsp-stats ${tc} + [Tags] network sonus + ${command} Catenate + ... ${CMD} + ... --mode=dsp-stats + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/sonus/sbc/snmp/slim_sonus-sbc + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} OK: DSP '9' state is 'up', CPU usage: 1.00 %, active channels: 0 | '9#dsp.cpu.utilization.percentage'=1.00%;;;0;100 '9#dsp.channels.active.count'=0;;;0; + ... 2 --warning-cpu-utilization='' --critical-cpu-utilization='0' --critical-status CRITICAL: DSP '9' CPU usage: 1.00 % | '9#dsp.cpu.utilization.percentage'=1.00%;;0:0;0;100 '9#dsp.channels.active.count'=0;;;0; + ... 3 --warning-status='\\\%{state} eq "up"' WARNING: DSP '9' state is 'up' | '9#dsp.cpu.utilization.percentage'=1.00%;;;0;100 '9#dsp.channels.active.count'=0;;;0; + ... 4 --critical-status='\\\%{state} eq "up"' CRITICAL: DSP '9' state is 'up' | '9#dsp.cpu.utilization.percentage'=1.00%;;;0;100 '9#dsp.channels.active.count'=0;;;0; \ No newline at end of file diff --git a/tests/network/sonus/sbc/snmp/interfaces.robot b/tests/network/sonus/sbc/snmp/interfaces.robot new file mode 100644 index 000000000..e93ae6b93 --- /dev/null +++ b/tests/network/sonus/sbc/snmp/interfaces.robot @@ -0,0 +1,30 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::sonus::sbc::snmp::plugin + + +*** Test Cases *** +interfaces ${tc} + [Tags] network sonus + ${command} Catenate + ... ${CMD} + ... --mode=interfaces + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/sonus/sbc/snmp/slim_sonus-sbc + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} CRITICAL: Interface 'Anonymized 073' Status : down (admin: up) - Interface 'Anonymized 232' Status : down (admin: up) + ... 4 --oid-extra-display='ifName' CRITICAL: Interface 'Anonymized 073' [ Anonymized 073 ] Status : down (admin: up) - Interface 'Anonymized 232' [ Anonymized 232 ] Status : down (admin: up) + ... 5 --display-transform-src='Anonymized 073' --display-transform-dst='toto' CRITICAL: Interface 'toto' Status : down (admin: up) - Interface 'Anonymized 232' Status : down (admin: up) \ No newline at end of file diff --git a/tests/network/sonus/sbc/snmp/list-interfaces.robot b/tests/network/sonus/sbc/snmp/list-interfaces.robot new file mode 100644 index 000000000..acc6b1f1d --- /dev/null +++ b/tests/network/sonus/sbc/snmp/list-interfaces.robot @@ -0,0 +1,31 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::sonus::sbc::snmp::plugin + + +*** Test Cases *** +list-interfaces ${tc} + [Tags] network sonus + ${command} Catenate + ... ${CMD} + ... --mode=list-interfaces + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/sonus/sbc/snmp/slim_sonus-sbc + ... --snmp-timeout=1 + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} --name --interface='Anonymized 049' List interfaces: 'Anonymized 049' [speed = ][status = up][id = 1078199296][type = voiceFXS] 'Anonymized 049' [speed = ][status = up][id = 1079510016][type = voiceFXS] + ... 2 --name --interface='Anonymized 25' --skip-speed0 List interfaces: skipping interface 'Anonymized 252': interface speed is 0 and option --skip-speed0 is set + ... 6 --filter-status='down' --name --interface='Anonymized 049' List interfaces: skipping interface 'Anonymized 049': no matching filter status skipping interface 'Anonymized 049': no matching filter status + ... 7 --filter-status='down' --skip-speed0 --name --interface='Anonymized 049' List interfaces: skipping interface 'Anonymized 049': interface speed is 0 and option --skip-speed0 is set skipping interface 'Anonymized 049': interface speed is 0 and option --skip-speed0 is set \ No newline at end of file diff --git a/tests/network/sonus/sbc/snmp/slim_sonus-sbc.snmpwalk b/tests/network/sonus/sbc/snmp/slim_sonus-sbc.snmpwalk new file mode 100644 index 000000000..c5c722339 --- /dev/null +++ b/tests/network/sonus/sbc/snmp/slim_sonus-sbc.snmpwalk @@ -0,0 +1,686 @@ +.1.3.6.1.2.1.2.2.1.2.11 = STRING: +.1.3.6.1.2.1.2.2.1.2.12 = STRING: +.1.3.6.1.2.1.2.2.1.2.13 = STRING: +.1.3.6.1.2.1.2.2.1.2.15 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078199296 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078200320 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078201344 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078202368 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078461440 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078462464 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078463488 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078464512 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078723584 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078724608 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078725632 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078726656 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078985728 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078986752 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078987776 = STRING: +.1.3.6.1.2.1.2.2.1.2.1078988800 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079247872 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079248896 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079249920 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079250944 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079510016 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079511040 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079512064 = STRING: +.1.3.6.1.2.1.2.2.1.2.1079513088 = STRING: +.1.3.6.1.2.1.2.2.1.3.11 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.12 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.13 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.15 = INTEGER: ethernetCsmacd(6) +.1.3.6.1.2.1.2.2.1.3.1078199296 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078200320 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078201344 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078202368 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078461440 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078462464 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078463488 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078464512 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078723584 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078724608 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078725632 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078726656 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078985728 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078986752 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078987776 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1078988800 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079247872 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079248896 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079249920 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079250944 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079510016 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079511040 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079512064 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.3.1079513088 = INTEGER: voiceFXS(102) +.1.3.6.1.2.1.2.2.1.5.11 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.12 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.13 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.15 = Gauge32: 1000000000 +.1.3.6.1.2.1.2.2.1.5.1078199296 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078200320 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078201344 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078202368 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078461440 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078462464 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078463488 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078464512 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078723584 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078724608 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078725632 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078726656 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078985728 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078986752 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078987776 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1078988800 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079247872 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079248896 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079249920 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079250944 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079510016 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079511040 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079512064 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.5.1079513088 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.6.11 = STRING: Anonymized 184 +.1.3.6.1.2.1.2.2.1.6.12 = STRING: Anonymized 072 +.1.3.6.1.2.1.2.2.1.6.13 = STRING: Anonymized 119 +.1.3.6.1.2.1.2.2.1.6.15 = STRING: Anonymized 172 +.1.3.6.1.2.1.2.2.1.6.1078199296 = STRING: Anonymized 133 +.1.3.6.1.2.1.2.2.1.6.1078200320 = STRING: Anonymized 087 +.1.3.6.1.2.1.2.2.1.6.1078201344 = STRING: Anonymized 095 +.1.3.6.1.2.1.2.2.1.6.1078202368 = STRING: Anonymized 137 +.1.3.6.1.2.1.2.2.1.6.1078461440 = STRING: Anonymized 193 +.1.3.6.1.2.1.2.2.1.6.1078462464 = STRING: Anonymized 222 +.1.3.6.1.2.1.2.2.1.6.1078463488 = STRING: Anonymized 243 +.1.3.6.1.2.1.2.2.1.6.1078464512 = STRING: Anonymized 231 +.1.3.6.1.2.1.2.2.1.6.1078723584 = STRING: Anonymized 076 +.1.3.6.1.2.1.2.2.1.6.1078724608 = STRING: Anonymized 108 +.1.3.6.1.2.1.2.2.1.6.1078725632 = STRING: Anonymized 049 +.1.3.6.1.2.1.2.2.1.6.1078726656 = STRING: Anonymized 050 +.1.3.6.1.2.1.2.2.1.6.1078985728 = STRING: Anonymized 081 +.1.3.6.1.2.1.2.2.1.6.1078986752 = STRING: Anonymized 123 +.1.3.6.1.2.1.2.2.1.6.1078987776 = STRING: Anonymized 101 +.1.3.6.1.2.1.2.2.1.6.1078988800 = STRING: Anonymized 128 +.1.3.6.1.2.1.2.2.1.6.1079247872 = STRING: Anonymized 167 +.1.3.6.1.2.1.2.2.1.6.1079248896 = STRING: Anonymized 184 +.1.3.6.1.2.1.2.2.1.6.1079249920 = STRING: Anonymized 192 +.1.3.6.1.2.1.2.2.1.6.1079250944 = STRING: Anonymized 176 +.1.3.6.1.2.1.2.2.1.6.1079510016 = STRING: Anonymized 077 +.1.3.6.1.2.1.2.2.1.6.1079511040 = STRING: Anonymized 248 +.1.3.6.1.2.1.2.2.1.6.1079512064 = STRING: Anonymized 213 +.1.3.6.1.2.1.2.2.1.6.1079513088 = STRING: Anonymized 141 +.1.3.6.1.2.1.2.2.1.7.11 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.12 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.13 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.15 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078199296 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078200320 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078201344 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078202368 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078461440 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078462464 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078463488 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078464512 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078723584 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078724608 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078725632 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078726656 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078985728 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078986752 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078987776 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1078988800 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079247872 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079248896 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079249920 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079250944 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079510016 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079511040 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079512064 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.7.1079513088 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.11 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.12 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.13 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.15 = INTEGER: down(2) +.1.3.6.1.2.1.2.2.1.8.1078199296 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078200320 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078201344 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078202368 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078461440 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078462464 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078463488 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078464512 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078723584 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078724608 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078725632 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078726656 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078985728 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078986752 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078987776 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1078988800 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079247872 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079248896 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079249920 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079250944 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079510016 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079511040 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079512064 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.8.1079513088 = INTEGER: up(1) +.1.3.6.1.2.1.2.2.1.20.11 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.12 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.13 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.15 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078199296 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078200320 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078201344 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078202368 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078461440 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078462464 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078463488 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078464512 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078723584 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078724608 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078725632 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078726656 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078985728 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078986752 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078987776 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1078988800 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079247872 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079248896 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079249920 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079250944 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079510016 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079511040 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079512064 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.20.1079513088 = Counter32: 0 +.1.3.6.1.2.1.2.2.1.21.11 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.12 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.13 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.15 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078199296 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078200320 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078201344 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078202368 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078461440 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078462464 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078463488 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078464512 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078723584 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078724608 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078725632 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078726656 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078985728 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078986752 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078987776 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1078988800 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079247872 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079248896 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079249920 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079250944 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079510016 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079511040 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079512064 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.21.1079513088 = Gauge32: 0 +.1.3.6.1.2.1.2.2.1.22.11 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.12 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.13 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.15 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078199296 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078200320 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078201344 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078202368 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078461440 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078462464 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078463488 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078464512 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078723584 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078724608 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078725632 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078726656 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078985728 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078986752 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078987776 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1078988800 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079247872 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079248896 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079249920 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079250944 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079510016 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079511040 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079512064 = OID: .0.0 +.1.3.6.1.2.1.2.2.1.22.1079513088 = OID: .0.0 +.1.3.6.1.2.1.31.1.1.1.1.11 = STRING: Anonymized 118 +.1.3.6.1.2.1.31.1.1.1.1.12 = STRING: Anonymized 073 +.1.3.6.1.2.1.31.1.1.1.1.13 = STRING: Anonymized 071 +.1.3.6.1.2.1.31.1.1.1.1.15 = STRING: Anonymized 232 +.1.3.6.1.2.1.31.1.1.1.1.1078199296 = STRING: Anonymized 049 +.1.3.6.1.2.1.31.1.1.1.1.1078200320 = STRING: Anonymized 031 +.1.3.6.1.2.1.31.1.1.1.1.1078201344 = STRING: Anonymized 163 +.1.3.6.1.2.1.31.1.1.1.1.1078202368 = STRING: Anonymized 139 +.1.3.6.1.2.1.31.1.1.1.1.1078461440 = STRING: Anonymized 062 +.1.3.6.1.2.1.31.1.1.1.1.1078462464 = STRING: Anonymized 101 +.1.3.6.1.2.1.31.1.1.1.1.1078463488 = STRING: Anonymized 018 +.1.3.6.1.2.1.31.1.1.1.1.1078464512 = STRING: Anonymized 115 +.1.3.6.1.2.1.31.1.1.1.1.1078723584 = STRING: Anonymized 199 +.1.3.6.1.2.1.31.1.1.1.1.1078724608 = STRING: Anonymized 028 +.1.3.6.1.2.1.31.1.1.1.1.1078725632 = STRING: Anonymized 018 +.1.3.6.1.2.1.31.1.1.1.1.1078726656 = STRING: Anonymized 042 +.1.3.6.1.2.1.31.1.1.1.1.1078985728 = STRING: Anonymized 077 +.1.3.6.1.2.1.31.1.1.1.1.1078986752 = STRING: Anonymized 111 +.1.3.6.1.2.1.31.1.1.1.1.1078987776 = STRING: Anonymized 012 +.1.3.6.1.2.1.31.1.1.1.1.1078988800 = STRING: Anonymized 030 +.1.3.6.1.2.1.31.1.1.1.1.1079247872 = STRING: Anonymized 252 +.1.3.6.1.2.1.31.1.1.1.1.1079248896 = STRING: Anonymized 106 +.1.3.6.1.2.1.31.1.1.1.1.1079249920 = STRING: Anonymized 057 +.1.3.6.1.2.1.31.1.1.1.1.1079250944 = STRING: Anonymized 008 +.1.3.6.1.2.1.31.1.1.1.1.1079510016 = STRING: Anonymized 049 +.1.3.6.1.2.1.31.1.1.1.1.1079511040 = STRING: Anonymized 062 +.1.3.6.1.2.1.31.1.1.1.1.1079512064 = STRING: Anonymized 135 +.1.3.6.1.2.1.31.1.1.1.1.1079513088 = STRING: Anonymized 035 +.1.3.6.1.2.1.31.1.1.1.10.11 = Counter64: 70764928529 +.1.3.6.1.2.1.31.1.1.1.10.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.15 = Counter64: 9442 +.1.3.6.1.2.1.31.1.1.1.10.1078199296 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078200320 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078201344 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078202368 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078461440 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078462464 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078463488 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078464512 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078723584 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078724608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078725632 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078726656 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078985728 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078986752 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078987776 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1078988800 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079247872 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079248896 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079249920 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079250944 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079510016 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079511040 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079512064 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.10.1079513088 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.11 = Counter64: 230419289 +.1.3.6.1.2.1.31.1.1.1.11.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.15 = Counter64: 77 +.1.3.6.1.2.1.31.1.1.1.11.1078199296 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078200320 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078201344 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078202368 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078461440 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078462464 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078463488 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078464512 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078723584 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078724608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078725632 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078726656 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078985728 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078986752 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078987776 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1078988800 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079247872 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079248896 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079249920 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079250944 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079510016 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079511040 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079512064 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.11.1079513088 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.11 = Counter64: 53 +.1.3.6.1.2.1.31.1.1.1.12.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.15 = Counter64: 56 +.1.3.6.1.2.1.31.1.1.1.12.1078199296 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078200320 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078201344 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078202368 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078461440 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078462464 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078463488 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078464512 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078723584 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078724608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078725632 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078726656 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078985728 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078986752 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078987776 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1078988800 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079247872 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079248896 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079249920 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079250944 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079510016 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079511040 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079512064 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.12.1079513088 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.11 = Counter64: 1882484 +.1.3.6.1.2.1.31.1.1.1.13.12 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.13 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.15 = Counter64: 18 +.1.3.6.1.2.1.31.1.1.1.13.1078199296 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078200320 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078201344 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078202368 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078461440 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078462464 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078463488 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078464512 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078723584 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078724608 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078725632 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078726656 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078985728 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078986752 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078987776 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1078988800 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079247872 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079248896 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079249920 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079250944 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079510016 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079511040 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079512064 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.13.1079513088 = Counter64: 0 +.1.3.6.1.2.1.31.1.1.1.14.11 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.12 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.13 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.15 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078199296 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078200320 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078201344 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078202368 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078461440 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078462464 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078463488 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078464512 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078723584 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078724608 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078725632 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078726656 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078985728 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078986752 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078987776 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1078988800 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079247872 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079248896 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079249920 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079250944 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079510016 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079511040 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079512064 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.14.1079513088 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.15.11 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.12 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.13 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.15 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078199296 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078200320 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078201344 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078202368 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078461440 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078462464 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078463488 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078464512 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078723584 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078724608 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078725632 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078726656 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078985728 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078986752 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078987776 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1078988800 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079247872 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079248896 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079249920 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079250944 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079510016 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079511040 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079512064 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.15.1079513088 = Gauge32: 0 +.1.3.6.1.2.1.31.1.1.1.16.11 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.12 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.13 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.15 = INTEGER: false(2) +.1.3.6.1.2.1.31.1.1.1.16.1078199296 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078200320 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078201344 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078202368 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078461440 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078462464 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078463488 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078464512 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078723584 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078724608 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078725632 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078726656 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078985728 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078986752 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078987776 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1078988800 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079247872 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079248896 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079249920 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079250944 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079510016 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079511040 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079512064 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.16.1079513088 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.11 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.12 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.13 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.15 = INTEGER: true(1) +.1.3.6.1.2.1.31.1.1.1.17.1078199296 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078200320 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078201344 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078202368 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078461440 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078462464 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078463488 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078464512 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078723584 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078724608 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078725632 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078726656 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078985728 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078986752 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078987776 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1078988800 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079247872 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079248896 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079249920 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079250944 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079510016 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079511040 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079512064 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.17.1079513088 = INTEGER: 0 +.1.3.6.1.2.1.31.1.1.1.18.11 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.12 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.13 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.15 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078199296 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078200320 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078201344 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078202368 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078461440 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078462464 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078463488 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078464512 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078723584 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078724608 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078725632 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078726656 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078985728 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078986752 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078987776 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1078988800 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079247872 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079248896 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079249920 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079250944 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079510016 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079511040 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079512064 = STRING: +.1.3.6.1.2.1.31.1.1.1.18.1079513088 = STRING: +.1.3.6.1.2.1.31.1.1.1.19.11 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.12 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.13 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.15 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078199296 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078200320 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078201344 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078202368 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078461440 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078462464 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078463488 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078464512 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078723584 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078724608 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078725632 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078726656 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078985728 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078986752 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078987776 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1078988800 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079247872 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079248896 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079249920 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079250944 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079510016 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079511040 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079512064 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.2.1.31.1.1.1.19.1079513088 = Timeticks: (0) 0:00:00.00 +.1.3.6.1.4.1.177.15.1.5.1.2.1.2.1 = Gauge32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.2.2 = Gauge32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.2.3 = Gauge32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.3.1 = Gauge32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.3.2 = Gauge32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.3.3 = Gauge32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.4.1 = Gauge32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.4.2 = Gauge32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.4.3 = Gauge32: 2 +.1.3.6.1.4.1.177.15.1.5.1.2.1.5.1 = Gauge32: 5 +.1.3.6.1.4.1.177.15.1.5.1.2.1.5.2 = Gauge32: 7 +.1.3.6.1.4.1.177.15.1.5.1.2.1.5.3 = Gauge32: 9 +.1.3.6.1.4.1.177.15.1.5.1.2.1.6.1 = Counter32: 18155 +.1.3.6.1.4.1.177.15.1.5.1.2.1.6.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.6.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.7.1 = Counter32: 15611 +.1.3.6.1.4.1.177.15.1.5.1.2.1.7.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.7.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.8.1 = Counter32: 2065 +.1.3.6.1.4.1.177.15.1.5.1.2.1.8.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.8.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.9.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.9.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.9.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.10.1 = Counter32: 17157 +.1.3.6.1.4.1.177.15.1.5.1.2.1.10.2 = Counter32: 1080 +.1.3.6.1.4.1.177.15.1.5.1.2.1.10.3 = Counter32: 316 +.1.3.6.1.4.1.177.15.1.5.1.2.1.11.1 = Counter32: 14759 +.1.3.6.1.4.1.177.15.1.5.1.2.1.11.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.11.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.12.1 = Counter32: 17157 +.1.3.6.1.4.1.177.15.1.5.1.2.1.12.2 = Counter32: 539 +.1.3.6.1.4.1.177.15.1.5.1.2.1.12.3 = Counter32: 158 +.1.3.6.1.4.1.177.15.1.5.1.2.1.13.1 = Counter32: 1919 +.1.3.6.1.4.1.177.15.1.5.1.2.1.13.2 = Counter32: 555 +.1.3.6.1.4.1.177.15.1.5.1.2.1.13.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.14.1 = Counter32: 998 +.1.3.6.1.4.1.177.15.1.5.1.2.1.14.2 = Counter32: 6579 +.1.3.6.1.4.1.177.15.1.5.1.2.1.14.3 = Counter32: 1771 +.1.3.6.1.4.1.177.15.1.5.1.2.1.15.1 = Counter32: 852 +.1.3.6.1.4.1.177.15.1.5.1.2.1.15.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.15.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.16.1 = Counter32: 852 +.1.3.6.1.4.1.177.15.1.5.1.2.1.16.2 = Counter32: 6104 +.1.3.6.1.4.1.177.15.1.5.1.2.1.16.3 = Counter32: 1622 +.1.3.6.1.4.1.177.15.1.5.1.2.1.17.1 = Counter32: 146 +.1.3.6.1.4.1.177.15.1.5.1.2.1.17.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.17.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.18.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.18.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.18.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.19.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.19.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.19.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.20.1 = Counter32: 10 +.1.3.6.1.4.1.177.15.1.5.1.2.1.20.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.20.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.21.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.21.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.21.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.22.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.22.2 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.22.3 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.23.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.23.2 = Counter32: 2 +.1.3.6.1.4.1.177.15.1.5.1.2.1.23.3 = Counter32: 1 +.1.3.6.1.4.1.177.15.1.5.1.2.1.24.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.1.2.1.24.2 = Counter32: 2 +.1.3.6.1.4.1.177.15.1.5.1.2.1.24.3 = Counter32: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.0.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.0.1.2 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.1.3.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.1.4.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.2.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.3.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.3.2.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.3.3.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.3.4.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.4.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.4.2.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.4.3.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.4.4.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.5.1.6.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.6.1.0.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.6.1.0.1.2 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.6.1.1.1.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.6.1.1.2.1 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.0.1.1 = Counter32: 43316 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.0.1.2 = Counter32: 42338 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.1.1.1 = Counter32: 515930 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.1.2.1 = Counter32: 138887 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.1.3.1 = Counter32: 143746 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.1.4.1 = Counter32: 120478 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.2.1.1 = Counter32: 87344 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.3.1.1 = Counter32: 664 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.3.2.1 = Counter32: 383 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.3.3.1 = Counter32: 339 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.3.4.1 = Counter32: 854 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.4.1.1 = Counter32: 16996 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.4.2.1 = Counter32: 16968 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.4.3.1 = Counter32: 0 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.4.4.1 = Counter32: 16813 +.1.3.6.1.4.1.177.15.1.5.6.1.7.1.6.1.1 = Counter32: 49 +.1.3.6.1.4.1.177.15.1.6.1.1.9 = INTEGER: 9 +.1.3.6.1.4.1.177.15.1.6.1.1.10 = INTEGER: 10 +.1.3.6.1.4.1.177.15.1.6.1.1.11 = INTEGER: 11 +.1.3.6.1.4.1.177.15.1.6.1.2.9 = Hex-STRING: 4D 53 50 44 20 43 33 30 30 20 42 4F 41 52 44 00 +.1.3.6.1.4.1.177.15.1.6.1.2.10 = Hex-STRING: 4D 53 50 44 20 43 33 30 30 20 42 4F 41 52 44 00 +.1.3.6.1.4.1.177.15.1.6.1.2.11 = Hex-STRING: 4D 53 50 44 20 43 33 30 30 20 42 4F 41 52 44 00 +.1.3.6.1.4.1.177.15.1.6.1.3.9 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.6.1.3.10 = INTEGER: 0 +.1.3.6.1.4.1.177.15.1.6.1.3.11 = INTEGER: 0 +.1.3.6.1.4.1.177.15.1.6.1.4.9 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.6.1.4.10 = INTEGER: 100 +.1.3.6.1.4.1.177.15.1.6.1.4.11 = INTEGER: 100 +.1.3.6.1.4.1.177.15.1.6.1.5.9 = INTEGER: 0 +.1.3.6.1.4.1.177.15.1.6.1.5.10 = INTEGER: 0 +.1.3.6.1.4.1.177.15.1.6.1.5.11 = INTEGER: 0 +.1.3.6.1.4.1.177.15.1.6.1.6.9 = INTEGER: 1 +.1.3.6.1.4.1.177.15.1.6.1.6.10 = INTEGER: 0 +.1.3.6.1.4.1.177.15.1.6.1.6.11 = INTEGER: 0 +.1.3.6.1.4.1.177.15.1.6.1.7.9 = Hex-STRING: 47 2E 37 31 31 20 41 2D 4C 61 77 20 7C 20 47 2E 37 31 31 20 75 2D 6C 61 77 20 7C 20 47 2E 37 32 33 2E 31 20 7C 20 47 2E 37 32 36 20 7C 20 47 2E 37 32 39 00 +.1.3.6.1.4.1.177.15.1.6.1.7.10 = Hex-STRING: 47 2E 37 31 31 20 41 2D 4C 61 77 20 7C 20 47 2E 37 31 31 20 75 2D 6C 61 77 20 7C 20 47 2E 37 32 33 2E 31 20 7C 20 47 2E 37 32 36 20 7C 20 47 2E 37 32 39 00 +.1.3.6.1.4.1.177.15.1.6.1.7.11 = Hex-STRING: 47 2E 37 31 31 20 41 2D 4C 61 77 20 7C 20 47 2E 37 31 31 20 75 2D 6C 61 77 20 7C 20 47 2E 37 32 33 2E 31 20 7C 20 47 2E 37 32 36 20 7C 20 47 2E 37 32 39 00 diff --git a/tests/resources/resources.resource b/tests/resources/resources.resource index ca6820e7a..d3c585046 100644 --- a/tests/resources/resources.resource +++ b/tests/resources/resources.resource @@ -52,6 +52,7 @@ Ctn Cleanup Cache Ctn Generic Suite Setup Ctn Cleanup Cache + Set Environment Variable TZ UTC Ctn Run Command And Check Result As Regexp [Arguments] ${command} ${expected_result} diff --git a/tests/resources/spellcheck/stopwords.txt b/tests/resources/spellcheck/stopwords.txt index c188d0893..49e84114e 100644 --- a/tests/resources/spellcheck/stopwords.txt +++ b/tests/resources/spellcheck/stopwords.txt @@ -32,6 +32,7 @@ aws AWSCLI --aws-role-arn Backbox +BackupJobSession base64 blocked-by-uf BPL @@ -72,9 +73,13 @@ Ekara env ESX eth +Exense ext4 +F5 +failover fanspeed FCCapacity +fibre --filter-fs --filter-imei --filter-ppid @@ -114,11 +119,12 @@ io-cards iops IpAddr ip-label +ipsec ipv4 ipv6 -ipsec ISAM Iwsva +Jasmin jmeter JMeter --jobq @@ -147,6 +153,7 @@ memBuffer memTotalReal Meraki MIB +Microkernel module-cellradio-csq module-cellradio-rscp module-cellradio-rsrp @@ -216,6 +223,7 @@ QoS Qtree queue-messages-inflighted raidvolume +ReplicaJobSession RestAPI RFC1628 RRDCached @@ -227,6 +235,7 @@ SFOS sfp.temperature --skip-ssl-check SkyHigh +SMS SnapMirror SnapMirrors SNMP @@ -246,6 +255,7 @@ teampass Teldat timeframe TiMOS +TMM tmnxSasAlarmInputDescription topic-messages-inflighted total-offline-prct @@ -274,8 +284,8 @@ VeloCloud VM VMware VMWARE -VPN vpn +VPN vSAN Vserver vSphere