diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..37436b15 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,13 @@ +### Motivation + + + +### Modifications + + + + + +### Verification + + diff --git a/.github/workflows/actionlint.dockerfile b/.github/workflows/actionlint.dockerfile new file mode 100644 index 00000000..db3dc71b --- /dev/null +++ b/.github/workflows/actionlint.dockerfile @@ -0,0 +1,4 @@ +# Workaround for https://github.com/dependabot/dependabot-core/issues/8362. +# Once that is fixed, remove this file and replace the Docker build and run +# lines in `.github/workflows/*.yml` with a `uses: docker://rhysd/…` line. +FROM rhysd/actionlint:1.6.26@sha256:2362769b1d75056da70e7af1b12d9e52746f3a123b8f22a4322869e8f2cd45f2 \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7bbadb88..6714cbd4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,42 +1,146 @@ name: Publish - -on: [push] +on: + push: + workflow_dispatch: jobs: main: - name: Publish + name: Validate STAC + runs-on: ubuntu-latest + steps: + - uses: linz/action-typescript@9bf69b0f313b3525d3ba3116f26b1aff7eb7a6c0 # v3 + with: + node-version: 20.x + + - name: Create STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v4 + with: + args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + + - name: Validate STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v4 + with: + args: stac-validate /github/workspace/stac/catalog.json + + - name: Validate STAC Collections + run: | + # Enable double star operator + shopt -s globstar + docker run -v "$PWD:$PWD" ghcr.io/linz/argo-tasks:v4 stac-validate "$PWD"/stac/**/collection.json + + - name: Download actionlint + run: docker build --tag actionlint - < .github/workflows/actionlint.dockerfile + + - name: Run actionlint to check workflow files + run: docker run --volume="${PWD}:/repo" --workdir=/repo actionlint -color + + publish-odr: + name: Publish ODR runs-on: ubuntu-latest + needs: main + if: ${{ github.ref == 'refs/heads/master' }} + + environment: + name: prod + permissions: id-token: write contents: read steps: - - uses: linz/action-typescript@v3 + - uses: linz/action-typescript@9bf69b0f313b3525d3ba3116f26b1aff7eb7a6c0 # v3 + with: + node-version: 20.x - # FIXME: catalog.json is not pushed to the repository (temporary solution) - - name: Create Catalog - uses: docker://ghcr.io/linz/argo-tasks:v2 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: - args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ + fetch-depth: 0 + + - name: Use Node.js 18.x + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 + with: + node-version: '18.x' - # FIXME: no collections exist so nothing to validate - # - name: Validate STAC - # run: | - # # Enable double star operator - # shopt -s globstar - # docker run -v $PWD:$PWD ghcr.io/linz/argo-tasks:v2 stac-validate $PWD/stac/**/collection.json + - name: Setup kubectl + uses: azure/setup-kubectl@3e0aec4d80787158d308d7b364cb1b702e7feb7f # v4.0.0 + with: + version: 'latest' - name: AWS Configure - if: github.ref == 'refs/heads/master' - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 with: aws-region: ap-southeast-2 mask-aws-account-id: true - role-to-assume: ${{ secrets.AWS_CI_ROLE }} + role-to-assume: ${{ secrets.AWS_EKS_CI_ROLE }} + + - name: Login to EKS + run: | + aws eks update-kubeconfig --name Workflows --region ap-southeast-2 + + - name: Check EKS connection + run: | + kubectl get nodes + + - name: Install Argo + run: | + curl -sLO https://github.com/argoproj/argo-workflows/releases/download/v3.4.11/argo-linux-amd64.gz + gunzip argo-linux-amd64.gz + chmod +x argo-linux-amd64 + ./argo-linux-amd64 version + + - name: Submit Added/Changed Parameter Files + id: modified-files + if: ${{ !contains(github.event.head_commit.message, '[skip-argo]')}} + run: | + # AM = Include: Added, Modified + mapfile -d '' modified_parameter_files < <(git diff --name-only --diff-filter=AM -z ${{ github.event.before }} ${{ github.event.after }} -- "publish-odr-parameters/*.yaml") + + for file in "${modified_parameter_files[@]}"; do + ./argo-linux-amd64 submit --wait --from wftmpl/copy -n argo -f "$file" -p aws_role_config_path="s3://linz-bucket-config/config-write.open-data-registry.json" -p exclude="collection.json$" --generate-name "publish-odr-file-copy-" + done + + sync-stac: + name: Sync STAC files + runs-on: ubuntu-latest + concurrency: publish-${{ github.ref }} + needs: publish-odr + if: ${{ github.ref == 'refs/heads/master' }} + + environment: + name: prod + + permissions: + id-token: write + contents: read + + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + with: + ref: master # Ensure only the latest STAC documents are synced into S3 + + - name: AWS Configure + uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 + with: + aws-region: ap-southeast-2 + mask-aws-account-id: true + role-to-assume: ${{ secrets.AWS_ODR_CI_ROLE }} + + - name: AWS Configure ODR + uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4 + with: + aws-region: ap-southeast-2 + mask-aws-account-id: true + role-to-assume: ${{ secrets.AWS_ODR_DATA_MANAGER_ROLE }} + role-chaining: true + + - name: Create STAC Catalog + uses: docker://ghcr.io/linz/argo-tasks:v4 + with: + args: stac-catalog --output stac/catalog.json --template template/catalog.json /github/workspace/stac/ # Sync STAC files only on push to 'master' - name: Sync STAC - uses: docker://ghcr.io/linz/argo-tasks:v2 - if: github.ref == 'refs/heads/master' + if: ${{ !contains(github.event.head_commit.message, '[skip-sync]')}} + uses: docker://ghcr.io/linz/argo-tasks:v4 with: - args: stac-sync /github/workspace/stac/ s3://linz-elevation/ \ No newline at end of file + args: stac-sync /github/workspace/stac/ s3://nz-elevation/ diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..f3674da1 --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +publish-odr-parameters diff --git a/README.md b/README.md index 8717ec9c..e72ed180 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,26 @@ # New Zealand Elevation -Toitū Te Whenua makes New Zealand’s most up-to-date publicly owned elevation data freely available to use under an open licence. -You can access this through the [LINZ Data Service](https://data.linz.govt.nz/data/category/elevation/). +Toitū Te Whenua makes New Zealand's most up-to-date publicly owned elevation data freely available to use under an open licence. You can access this through the [LINZ Data Service](https://data.linz.govt.nz/data/category/elevation/), [LINZ Basemaps](https://basemaps.linz.govt.nz/@-41.8899962,174.0492437,z5?i=elevation) or the [Registry of Open Data on AWS](https://registry.opendata.aws/nz-elevation/). + +This repository contains STAC Collection metadata for each elevation dataset, as well as some guidance documentation: + +- [Naming](docs/naming.md) covers the s3://nz-elevation bucket naming structure +- [Usage](docs/usage.md) shows how TIFFs can be interacted with from S3 using GDAL, QGIS, etc +- [Elevation Compression](docs/tiff-compression) provides commentary and analysis on the compression options we explored. + +## AWS Access + +Toitū Te Whenua owns and maintains a public bucket which is sponsored and shared via the [Registry of Open Data on AWS](https://registry.opendata.aws/nz-elevation/) `s3://nz-elevation` in `ap-southeast-2`. + +Using the [AWS CLI](https://aws.amazon.com/cli/) anyone can access all of the imagery specified in this repository. + +``` +aws s3 ls --no-sign-request s3://nz-elevation/ +``` + +### Browsing the S3 Bucket + +[STAC Browser](https://radiantearth.github.io/stac-browser/#/external/nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json) can be used to browse through the contents of the S3 bucket. ## Related diff --git a/docs/GeoJSON-compression.md b/docs/GeoJSON-compression.md new file mode 100644 index 00000000..d1f085e8 --- /dev/null +++ b/docs/GeoJSON-compression.md @@ -0,0 +1,23 @@ +# GeoJSON compression + +## Summary + +Toitū Te Whenua has decided to store all metadata _uncompressed,_ including GeoJSON. + +## Arguments + +Pro compression: + +- Saves money on storage +- Saves time and money on transfer of data +- Metadata files are highly compressible, since they have a lot of text strings and repetition + +Contra compression: + +- Some tools do not seamlessly decompress files + - [AWS CLI issue](https://github.com/aws/aws-cli/issues/6765) + - [boto3 issue](https://github.com/boto/botocore/issues/1255) +- Any files on S3 "[smaller than 128 KB](https://aws.amazon.com/s3/pricing/)" (presumably actually 128 KiB) are treated as being 128 KB for pricing purposes, so there would be no price gain from compressing any files which are smaller than this +- The extra development time to deal with compressing and decompressing JSON files larger than 128 KB would not offset the savings: + - We can get the sizes of JSON files by running `aws s3api list-objects-v2 --bucket=nz-elevation --no-sign-request --query="Contents[?ends_with(Key, 'json')].Size"` and `aws s3api list-objects-v2 --bucket=nz-imagery --no-sign-request --query="Contents[?ends_with(Key, 'json')].Size"` + - Summing up the sizes of files larger than 128 KB we get a total of only _33 MB_ at time of writing diff --git a/docs/img/usage/arcgis_pro_catalog_view.png b/docs/img/usage/arcgis_pro_catalog_view.png new file mode 100644 index 00000000..9f4123ae Binary files /dev/null and b/docs/img/usage/arcgis_pro_catalog_view.png differ diff --git a/docs/img/usage/arcgis_pro_connection_details.png b/docs/img/usage/arcgis_pro_connection_details.png new file mode 100644 index 00000000..e443f8ba Binary files /dev/null and b/docs/img/usage/arcgis_pro_connection_details.png differ diff --git a/docs/img/usage/arcgis_pro_new_cloud_connection.png b/docs/img/usage/arcgis_pro_new_cloud_connection.png new file mode 100644 index 00000000..cc9fb3a4 Binary files /dev/null and b/docs/img/usage/arcgis_pro_new_cloud_connection.png differ diff --git a/docs/img/usage/cyberduck_bucket_view.png b/docs/img/usage/cyberduck_bucket_view.png new file mode 100644 index 00000000..2ad5d618 Binary files /dev/null and b/docs/img/usage/cyberduck_bucket_view.png differ diff --git a/docs/img/usage/cyberduck_open_connection.png b/docs/img/usage/cyberduck_open_connection.png new file mode 100644 index 00000000..f389dfb1 Binary files /dev/null and b/docs/img/usage/cyberduck_open_connection.png differ diff --git a/docs/img/usage/qgis_data-source-manager.png b/docs/img/usage/qgis_data-source-manager.png new file mode 100644 index 00000000..3191b8b8 Binary files /dev/null and b/docs/img/usage/qgis_data-source-manager.png differ diff --git a/docs/img/usage/qgis_visualisation.png b/docs/img/usage/qgis_visualisation.png new file mode 100644 index 00000000..934aafa3 Binary files /dev/null and b/docs/img/usage/qgis_visualisation.png differ diff --git a/docs/naming.md b/docs/naming.md new file mode 100644 index 00000000..d0717004 --- /dev/null +++ b/docs/naming.md @@ -0,0 +1,154 @@ +# Elevation Dataset Naming Conventions + +Elevation dataset titles and S3 paths are constructed from metadata about each elevation survey so that they will be consistent and human readable. Elevation is stored according to the majority region that each dataset covers. + +## Elevation Dataset Titles + +The elevation dataset title is constructed from metadata that is entered when an elevation dataset is processed. + +``` +[ - ?] LiDAR m ([-?])[ - ?] +``` + +which can be broken down as: + +- the main `` that the dataset covers +- then if it exists, the `` is used +- then "LiDAR" +- then `` (which is always in metres) +- then `` +- then `` (using all four digits to indicate the year) +- if the elevation dataset was captured over multiple years, include a hyphen and the `` (using all four digits to indicate the year) +- if the elevation dataset has been processed as a QC preview or if it only represents partial capture, include "- Preview" or "- Draft" at the end of the title, from the dataset `` + +## Elevation Dataset S3 Paths + +The elevation dataset S3 path is also constructed from similar metadata. + +``` +/ + [|]_[-?]/ + _m/ + / +``` + +which can be broken down as: + +- the main `` that the dataset covers +- then if it exists, the `` is used, if not, `` is repeated instead (this would be the case where the elevation dataset contains full coverage of the region) +- then `` (using all four digits to indicate the year) +- if the imagery dataset was captured over multiple years, include a hyphen and the `` (using all four digits to indicate the year) +- then `` as multiple products may be created from the same elevation survey +- then `` (which is always in metres) +- then `` as we may store the data in different coordinate reference systems for different purposes + +### S3 Path Restrictions + +The _path_ is restricted to a limited set of characters with no whitespace: lowercase "a through "z", numbers "0" through "9", hyphen ("-"), and underscore ("\_"). When generating a [dataset S3 path](#imagery-dataset-s3-paths), the system will pass through these characters unchanged to the path, and will transform many others to allowed characters - see the subsections for details. Any characters not mentioned in this section or subsections will result in an error. + +#### Uppercase characters + +Uppercase characters are changed to lowercase. For example, "Wellington" is changed to "wellington". + +#### Diacritics + +Characters with [diacritics](https://www.compart.com/en/unicode/block/U+0300), such as macrons ("ā", "ē", etc), are transliterated into Latin script. For example, a dataset with "Ōmāpere" in the title would have "omapere" in the path. + +#### Spaces, commas, and slashes + +These characters are replaced with a hyphen. For example, "Tikitapu/Blue Lake" is changed to "tikitapu-blue-lake". + +#### Apostrophes + +These are _removed,_ so "Hawke's Bay" is changed to "hawkes-bay". + +#### Ampersands + +These are replaced with "-and-", so "Gore A&P Showgrounds" is changed to "gore-a-and-p-showgrounds". + +#### Other characters + +"ø" is transliterated to "o", so "Mount Brøgger" is changed to "mount-brogger". + +## Title and S3 Path Components + +### `crs` + +EPSG Code for the coordinate reference system of the elevation data. Generally this is [`2193`](https://epsg.io/2193) as it is the primary projection for most of LINZ's elevation data. + +### `geographic_description` + +This is free text and at the imagery maintainer's discretion. A specific city or sub-region or event name may be used to help describe the elevation data capture area. The [Gazetteer](https://gazetteer.linz.govt.nz/) is referenced to ensure official names with correct spelling are used. If the region has full coverage, then the geographic description can be empty and the region will be used instead. + +### `geospatial_category` + +A general categorisation of elevation data held within our archive that includes the following possible values: + +- DEM `dem` +- DSM `dsm` + +### `gsd` + +The GSD or spatial resolution is the area covered on the ground by a single pixel. This is stored in metadata in metres with no trailing zeros after the decimal point. + +### `lifecycle` + +If `lifecycle = preview` then ` - Preview` is appended to the end of the imagery dataset title and if `lifecycle = ongoing` then ` - Draft` is appended to the end of the imagery dataset title. For any other lifecycle values, nothing is appended. + +### `product` + +Elevation data product type, currently either `dem` or `dsm`. + +### `region` + +Is taken from a list of regions: + +- Antarctica `antarctica` +- Auckland `auckland` +- Bay of Plenty `bay-of-plenty` +- Canterbury `canterbury` +- Northland `northland` +- Gisborne `gisborne` +- Global `global` +- Hawke's Bay `hawkes-bay` +- Manawatū-Whanganui `manawatu-whanganui` +- Marlborough `marlborough` +- Nelson `nelson` +- New Zealand `new-zealand` +- Otago `otago` +- Pacific Islands `pacific-islands` +- Southland `southland` +- Taranaki `taranaki` +- Tasman `tasman` +- Waikato `waikato` +- Wellington `wellington` +- West Coast `west-coast` + +### `start_year` and `end_year` + +In both cases, the full four digits should be used. If the elevation dataset was entirely captured within one year, then only a `start_year` is provided. + +As elevation data can be updated after it is "named" for initial processing the `end_year` or lack of an `end_year` may be incorrect in the S3 Path. It is best to use this as a rough guideline and then use the STAC Collection for a more precise capture timeframe. + +## Examples + +1m DSM covering Upper Hutt City in the Wellington region captured in 2021 + +``` +Title: Wellington - Upper Hutt City LiDAR 1m DSM (2021) +Path: s3://nz-elevation/wellington/upper_hutt_city_2021/dsm_1m/2193/collection.json +``` + +1m DEM covering the Hawke's Bay region captured in 2020-2021 (apostrophe removed in elevation dataset path) + +``` +Title: Hawke's Bay LiDAR 1m DEM (2020-2021) +Path: s3://nz-elevation/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json +``` + +1m DEM covering Kaikōura in the Canterbury region captured in 2016 (macron removed in elevation dataset path) + +``` +Title: Canterbury - Kaikōura LiDAR 1m DEM (2016) +Path: s3://nz-elevation/canterbury/kaikoura/dem_1m/2193/collection.json +``` diff --git a/docs/tiff-compression/README.md b/docs/tiff-compression/README.md index 0d28c7da..04914aff 100644 --- a/docs/tiff-compression/README.md +++ b/docs/tiff-compression/README.md @@ -2,7 +2,7 @@ ## TLDR -Toitū Te Whenua has decided to store all its DEM and DSM as `lerc` Cloud Optimized GeoTIFFs in `s3://linz-elevation` +Toitū Te Whenua has decided to store all its DEM and DSM as `lerc` Cloud Optimized GeoTIFFs in `s3://nz-elevation` ## Background @@ -17,7 +17,7 @@ LINZ is required to store the elevation data in a safe and secure manner while a ## Goals -As the data is stored in [AWS S3](https://aws.amazon.com/s3/) every GB of data stored costs LINZ [$0.0025 USD / month](https://aws.amazon.com/s3/pricing/?nc=sn&loc=4), to reduce costs for new zealand the imagery needs to be compressed to ensure cost efficient storage. +As the data is stored in [AWS S3](https://aws.amazon.com/s3/) every GB of data stored costs LINZ [$0.0025 USD / month](https://aws.amazon.com/s3/pricing/?nc=sn&loc=4), to reduce costs for new zealand the imagery needs to be compressed to ensure cost efficient storage. This data is large and will also be accessed remotely it should be stored in a cloud optimized format so users can extract only the parts of the data they need, [Cloud optimised geotiff (COG)](https://www.cogeo.org/) without downloading the entire TIFF. @@ -35,26 +35,25 @@ Stacked lerc compression was not tested due to increased testing complexity and GDAL provides a two options for most compression type -- Compression Level +- Compression Level - Predictor (none), Predictor 2 (Integer data type) or 3 (floating-point predictor) LERC has additional options for adjusting how much error is allowed, as the datasets generally have a ~20cm vertical accuracy, to keep the accuracy high only small amounts of allowed z error were tested (<5mm); - ZSTD (66 Tests) - - Predictor NO/1/2 - - Level 1-22 + - Predictor NO/1/2 + - Level 1-22 - Deflate (27 Tests) - - Predictor NO/1/2 - - level 1-9 + - Predictor NO/1/2 + - level 1-9 - LZW (3 Tests) - - Predictor NO/1/2 + - Predictor NO/1/2 - LERC (5 Tests) - - max z error: 0.1mm, 0.5mm, 1mm, 2mm, 5mm + - max z error: 0.1mm, 0.5mm, 1mm, 2mm, 5mm Testing data was selected from [CF15](https://data.linz.govt.nz/data/?mv.basemap=Streets&mv.content=layer.104687.color:003399.opacity:100,layer.109627.opacity:100&mv.zoom=9&mv.centre=169.8493143938876,-45.98894052690091) in [Otago - Coastal Catchments LiDAR 1m DEM (2021)](https://data.linz.govt.nz/layer/109627-otago-coastal-catchments-lidar-1m-dem-2021/) as it provided a mix of flat and hilly regions. which resulted in 2,999 source tiff files approximately 3.4GB -to provide a somewhat reproducible result A docker container [`gdal-ubuntu-small-3.7.0`](https://github.com/OSGeo/gdal/pkgs/container/gdal/91692621?tag=ubuntu-small-3.7.0) was used - +to provide a somewhat reproducible result A docker container [`gdal-ubuntu-small-3.7.0`](https://github.com/OSGeo/gdal/pkgs/container/gdal/91692621?tag=ubuntu-small-3.7.0) was used ### Process @@ -85,46 +84,45 @@ docker run \ /output/cf15-${compression}_predictor-${precdictor}_level-${level}_error-${error}.tiff ``` - ## Results - A full table of results can be found in the [output.tsv](./compression-results.tsv) Key results -|Id|File Size (mb)|Duration for 5 runs (ms)| -|-|-|-| -|base | 3456.00| 0| -|lzw_predictor-2 | 2686.27| 190926| -|deflate_predictor-2_level-9| 1982.15| 208897| -|zstd_predictor-2_level-17 | 1858.77| 469185| -|lerc_z-error-0.001 | 1319.11| 192573| - +| Id | File Size (mb) | Duration for 5 runs (ms) | +| --------------------------- | -------------- | ------------------------ | +| base | 3456.00 | 0 | +| lzw_predictor-2 | 2686.27 | 190926 | +| deflate_predictor-2_level-9 | 1982.15 | 208897 | +| zstd_predictor-2_level-17 | 1858.77 | 469185 | +| lerc_z-error-0.001 | 1319.11 | 192573 | LERC is by far the best compression and speed for converting the DEMS into COGs. if having a minor (1mm) error is allowed it is a huge savings. - As most of this work is for cost reduction for storage and egress of data, what level of cost reduction would this have for 1TB of input data. With the current [AWS S3 pricing](https://aws.amazon.com/s3/pricing/) the following metrics were used -Standard Access - used for frequently accessed data +Standard Access - used for frequently accessed data + - $0.025 / GB / month = $300 / TB /Year Infrequent Access - used for infrequently accessed data (most of our DEMs would fit into this category) + - $0.0138 / GB / month = $165 / TB / Year Egress - Cost to send the data out of AWS + - $0.114 / GB = $114.00 / TB -|Id|Cost/TB/Year (Standard)| Cost/TB/Year (Infrequent)|Egress (1 copy downloaded)| -|-|-|-|-| -|base | $300.00| $165.60| $114.00 | -|lzw_predictor-2 | $233.18| $128.71| $88.61 | -|deflate_predictor-2_level-9| $172.06| $94.78| $65.38 | -|zstd_predictor-2_level-17 | $161.35| $89.06| $61.31 | -|lerc_z-error-0.001 | $114.50| $63.20| $45.51 | +| Id | Cost/TB/Year (Standard) | Cost/TB/Year (Infrequent) | Egress (1 copy downloaded) | +| --------------------------- | ----------------------- | ------------------------- | -------------------------- | +| base | $300.00 | $165.60 | $114.00 | +| lzw_predictor-2 | $233.18 | $128.71 | $88.61 | +| deflate_predictor-2_level-9 | $172.06 | $94.78 | $65.38 | +| zstd_predictor-2_level-17 | $161.35 | $89.06 | $61.31 | +| lerc_z-error-0.001 | $114.50 | $63.20 | $45.51 | So using LERC (1mm) for 1TB of input data would result in approx $190 USD / year in storage costs savings, and $70 in savings for every copy of the data that was egressed out of AWS. @@ -147,7 +145,7 @@ sudo apt-get install libwebp-dev sudo apt-get install libzstd-dev # Download GDAL for specific QGIS version you already have installed -# e.g. QGIS 3.22.4 uses GDAL 3.4.1 +# e.g. QGIS 3.22.4 uses GDAL 3.4.1 wget -c http://download.osgeo.org/gdal/3.4.1/gdal-3.4.1.tar.gz tar -xvzf gdal-3.4.1.tar.gz cd gdal-3.4.1 @@ -165,4 +163,4 @@ echo 'export LD_LIBRARY_PATH=/usr/local/lib' >> ~/.bashrc GDAL_DATA="/usr/local/share/gdal" sudo ldconfig -``` \ No newline at end of file +``` diff --git a/docs/usage.md b/docs/usage.md new file mode 100644 index 00000000..465aa617 --- /dev/null +++ b/docs/usage.md @@ -0,0 +1,248 @@ +# Usage + +Our public New Zealand Elevation bucket can be used with a number of applications, including [s5cmd](#s5cmd), [GDAL](#gdal), [QGIS](#qgis), [ArcGIS Pro](#arcgis-pro) and [Cyberduck](#cyberduck). + +## Get the link to the TIFF + +The STAC Catalog, https://nz-elevation.s3-ap-southeast-2.amazonaws.com/catalog.json, is the entry point of the LINZ elevation data. It points to the different STAC Collections representing a dataset. + +> **_Note:_** The files in the _nz-elevation_ bucket can be accessed via `s3://nz-elevation` or `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/`. + +### Manually navigate through the STAC Catalog to a get a TIFF + +This is an example using the "Taranaki LiDAR 1m DEM (2021)" dataset. + +1. From `catalog.json` get the Collection link for "Taranaki LiDAR 1m DEM (2021)" in the `links` list: + + ```json + { + "rel": "child", + "href": "./taranaki/taranaki_2021/dem_1m/2193/collection.json", + "title": "Taranaki LiDAR 1m DEM (2021)", + "file:checksum": "122098144561ea4de8e880fb3b857b1ca07d32400189cf48cf9cad96921efdeb3f15", + "file:size": 25426 + }, + ``` + +2. The Collection can be accessed from this GitHub repository, `stac/taranaki/taranaki_2021/dem_1m/2193/collection.json` or from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/collection.json`. From the Collection get an Item link in the `links` list: + + ```json + { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" } + ``` + +3. The Item can be accessed from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.json`. A list of assets can be found: + + ```json + "assets": { + "visual": { + "href": "./BH31_10000_0403.tiff", + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "file:checksum": "122042af9034edaf0c2ff7522e26db4fb3a4a5835015f6dfc118acbd6c3f2b011ee5" + } + } + ``` + +4. In this case, the TIFF can be accessed from `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff` + +> **_Note:_** Our TIFF files and STAC Item files use the same base name. Having the link to the STAC Item, you can determine the TIFF link by changing its suffix from `.json` to `.tiff`. + +## s5cmd + +[s5cmd](https://github.com/peak/s5cmd) is a parallel file execution command-line interface tool. It is written in Go and the GitHub repository includes pre-built binaries for Windows, Mac and Linux. It supports public S3 buckets. + +List the contents of a public bucket using the `--no-sign-request` flag. + +```shell +s5cmd --no-sign-request ls s3://nz-elevation/ +``` + +```shell + PRE auckland/ + PRE bay-of-plenty/ + PRE canterbury/ + PRE gisborne/ + PRE hawkes-bay/ + PRE manawatu-whanganui/ + PRE marlborough/ + PRE nelson/ + PRE northland/ + PRE otago/ + PRE southland/ + PRE taranaki/ + PRE tasman/ + PRE waikato/ + PRE wellington/ + PRE west-coast/ +2024-03-08 10:34:25 18657 LICENSE +2024-03-08 10:57:05 44274 catalog.json +``` + +Check the total size of all elevation data held for one region. + +```shell +s5cmd --no-sign-request du --humanize s3://nz-elevation/canterbury/* +``` + +``` +103.5G bytes in 7784 objects: s3://nz-elevation/canterbury/* +``` + +Check the total size of a specific elevation dataset and limit to just the elevation files (not metadata). + +```shell +s5cmd --no-sign-request du --humanize s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff +``` + +``` +592.5M bytes in 27 objects: s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff +``` + +Copy all of the elevation data files to a new target location. + +```shell +s5cmd --no-sign-request cp s3://nz-elevation/canterbury/christchurch_2020-2021/dem_1m/2193/*.tiff +``` + +## GDAL + +[GDAL](https://gdal.org/) + +### Virtual file system + +GDAL allows you to run commands on a file that is not on your local machine using a virtual file system path: + +- `/vsicurl/https://nz-elevation.s3-ap-southeast-2.amazonaws.com/[PATH]` +- `/vsis3/s3://nz-elevation/[PATH]` + +### gdalinfo + +```bash +gdalinfo /vsicurl/https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff +``` + +
+ Output + +``` +Driver: GTiff/GeoTIFF +Files: /vsicurl/https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff +Size is 4800, 7200 +Coordinate System is: +PROJCRS["NZGD2000 / New Zealand Transverse Mercator 2000", + BASEGEOGCRS["NZGD2000", + DATUM["New Zealand Geodetic Datum 2000", + ELLIPSOID["GRS 1980",6378137,298.257222101, + LENGTHUNIT["metre",1]]], + PRIMEM["Greenwich",0, + ANGLEUNIT["degree",0.0174532925199433]], + ID["EPSG",4167]], + CONVERSION["New Zealand Transverse Mercator 2000", + METHOD["Transverse Mercator", + ID["EPSG",9807]], + PARAMETER["Latitude of natural origin",0, + ANGLEUNIT["degree",0.0174532925199433], + ID["EPSG",8801]], + PARAMETER["Longitude of natural origin",173, + ANGLEUNIT["degree",0.0174532925199433], + ID["EPSG",8802]], + PARAMETER["Scale factor at natural origin",0.9996, + SCALEUNIT["unity",1], + ID["EPSG",8805]], + PARAMETER["False easting",1600000, + LENGTHUNIT["metre",1], + ID["EPSG",8806]], + PARAMETER["False northing",10000000, + LENGTHUNIT["metre",1], + ID["EPSG",8807]]], + CS[Cartesian,2], + AXIS["northing (N)",north, + ORDER[1], + LENGTHUNIT["metre",1]], + AXIS["easting (E)",east, + ORDER[2], + LENGTHUNIT["metre",1]], + USAGE[ + SCOPE["Engineering survey, topographic mapping."], + AREA["New Zealand - North Island, South Island, Stewart Island - onshore."], + BBOX[-47.33,166.37,-34.1,178.63]], + ID["EPSG",2193]] +Data axis to CRS axis mapping: 2,1 +Origin = (1741600.000000000000000,5672400.000000000000000) +Pixel Size = (1.000000000000000,-1.000000000000000) +Metadata: + AREA_OR_POINT=Area +Image Structure Metadata: + COMPRESSION=LERC + INTERLEAVE=BAND + LAYOUT=COG + LERC_VERSION=2.4 +Corner Coordinates: +Upper Left ( 1741600.000, 5672400.000) (174d38'13.91"E, 39d 5' 9.73"S) +Lower Left ( 1741600.000, 5665200.000) (174d38'19.32"E, 39d 9' 3.21"S) +Upper Right ( 1746400.000, 5672400.000) (174d41'33.63"E, 39d 5' 6.88"S) +Lower Right ( 1746400.000, 5665200.000) (174d41'39.22"E, 39d 9' 0.35"S) +Center ( 1744000.000, 5668800.000) (174d39'56.52"E, 39d 7' 5.05"S) +Band 1 Block=512x512 Type=Float32, ColorInterp=Gray + Min=130.799 Max=454.541 + Minimum=130.799, Maximum=454.541, Mean=289.727, StdDev=59.772 + NoData Value=-9999 + Overviews: 2400x3600, 1200x1800, 600x900, 300x450 + Metadata: + STATISTICS_MAXIMUM=454.54098510742 + STATISTICS_MEAN=289.72720030798 + STATISTICS_MINIMUM=130.79899597168 + STATISTICS_STDDEV=59.771690336322 + STATISTICS_VALID_PERCENT=100 +``` + +
+ +## QGIS + +### Loading the TIFF + +1. In QGIS, open the "Data Source Manager" (press `ctrl+L`) +2. Select "Protocol: HTTP(S)" as the "Source Type" +3. Select "HTTP/HTTPS/FTP" as the "Protocol Type" +4. Paste the HTTPS URL to the TIFF, for example `https://nz-elevation.s3-ap-southeast-2.amazonaws.com/taranaki/taranaki_2021/dem_1m/2193/BH31_10000_0403.tiff` +5. Click on the "Add" button and wait for the file to load. + + ![Data Source Manager](img/usage/qgis_data-source-manager.png) + ![QGIS View TIFF](img/usage/qgis_visualisation.png) + +## ArcGIS Pro + +### Connecting to a Public Bucket + +1. On the "Insert" ribbon, select "Connections" then "Cloud Store" then "New Cloud Storage Connection". + + ![ArcGIS Pro New Cloud Storage Connection](img/usage/arcgis_pro_new_cloud_connection.png) + +2. In the "Create Cloud Storage Connection" dialog, add a "Connection File Name" e.g. `New Zealand Elevation`, "Service Provider" as `AMAZON`, "Bucket Name" as `nz-elevation`, "Region" as `Asia Pacific (Sydney)` and "Service Endpoint" as `s3.ap-southeast-2.amazon.com`. +3. Because this is a Public Bucket, add a "Provider Option" with "Name" of `AWS_NO_SIGN_REQUEST` and "Value" of `YES`. This means that you won't need an Access Key ID or Secret Access Key. + + ![ArcGIS Pro Cloud Storage Connection Details](img/usage/arcgis_pro_connection_details.png) + +4. Click "OK". The cloud storage connection will appear in the "Catalog" pane, where the bucket structure can be explored. + + ![ArcGIS Pro Catalog View](img/usage/arcgis_pro_catalog_view.png) + +5. From here you can add individual TIFFs to the map, export them to different data formats, etc. + +## Cyberduck + +[Cyberduck](https://cyberduck.io/) is a free and open source cloud storage browser for Windows and Mac, with support for public S3 buckets. The instructions below are relevant on Windows, [Mac setup is different](https://github.com/iterate-ch/cyberduck/issues/12891). + +### Connecting to a Public Bucket + +1. Select "Open Connection". +2. Expand the "Connection Profiles" dropdown (that defaults to FTP) and select "More Options" at the bottom of the list. Search using "HTTPS" to find the `S3 (HTTPS)` connection profile. Select it, then close the "Preferences" window. +3. Add a "Server" of `s3-ap-southeast-2.amazonaws.com`, check the "Anonymous Login" checkbox and add a "Path" of `nz-elevation`. + + ![Cyberduck Open Connection](img/usage/cyberduck_open_connection.png) + +4. Click "Connect". The top level of the bucket will be displayed and can be explored. + + ![Cyberduck Bucket View](img/usage/cyberduck_bucket_view.png) + +5. From here you can use "Get Info" to calculate the size of particular directories or datasets and right-click to "Download" or "Synchronize". diff --git a/package-lock.json b/package-lock.json index 97127bf2..637a84d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,9 @@ "license": "MIT", "devDependencies": { "@linzjs/style": "^4.0.0" + }, + "engines": { + "node": "^20.13.1" } }, "node_modules/@eslint-community/eslint-utils": { diff --git a/package.json b/package.json index 8e305271..e442307b 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,12 @@ "repository": "git@github.com:linz/elevation.git", "license": "MIT", "scripts": { - "format": "prettier -w template/ *.md", - "lint": "eslint . --quiet --fix --ignore-path .gitignore" + "lint": "eslint --quiet --fix --ignore-path=.gitignore . && prettier --check --write ." }, "devDependencies": { "@linzjs/style": "^4.0.0" + }, + "engines": { + "node": "^20.13.1" } } diff --git a/publish-odr-parameters/01HQMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml b/publish-odr-parameters/01HQMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml new file mode 100644 index 00000000..088a58d8 --- /dev/null +++ b/publish-odr-parameters/01HQMDFKQ68GXZAZNG4SQ0401C-1713484627103.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/18-es-gisborne-2023-dem-1m-gghtd/flat/", + "target": "s3://nz-elevation/gisborne/gisborne_2023/dem_1m/2193/", + "ticket": "EDS-90", + "copy_option": "--force", + "region": "gisborne" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HQRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml b/publish-odr-parameters/01HQRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml new file mode 100644 index 00000000..faedcb35 --- /dev/null +++ b/publish-odr-parameters/01HQRH2G1MPBBR8PBKPRASE0RE-1720062861770.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-07/04-es-waikato-dem-tm4xp/flat/", + "target": "s3://nz-elevation/waikato/waikato_2021/dem_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "waikato" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HQRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml b/publish-odr-parameters/01HQRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml new file mode 100644 index 00000000..e4432187 --- /dev/null +++ b/publish-odr-parameters/01HQRHJSHZQ4Y13GN626FHJ36Z-1720063609787.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-07/04-es-waikato-dsm-mm5jn/flat/", + "target": "s3://nz-elevation/waikato/waikato_2021/dsm_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "waikato" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HQRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml b/publish-odr-parameters/01HQRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml new file mode 100644 index 00000000..671e8932 --- /dev/null +++ b/publish-odr-parameters/01HQRJ3ZRPRD0NY2406V2C47MR-1728338915234.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/07-es-southland-dem-77q5c/es-southland-dem-77q5c-get-location-2708696259flat/", + "target": "s3://nz-elevation/southland/southland_2020-2023/dem_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "southland", + "flatten": "false" +} diff --git a/publish-odr-parameters/01HQRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml b/publish-odr-parameters/01HQRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml new file mode 100644 index 00000000..11c3b7a8 --- /dev/null +++ b/publish-odr-parameters/01HQRJ9SQ44QFBVN0KDS0XW2F0-1728338753259.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/07-es-southland-dsm-4nqgk/es-southland-dsm-4nqgk-get-location-1791378195flat/", + "target": "s3://nz-elevation/southland/southland_2020-2023/dsm_1m/2193/", + "ticket": "", + "copy_option": "--force", + "region": "southland", + "flatten": "false" +} diff --git a/publish-odr-parameters/01HQRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml b/publish-odr-parameters/01HQRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml new file mode 100644 index 00000000..8fd0d8d7 --- /dev/null +++ b/publish-odr-parameters/01HQRJG560KWTF0Q8YKRY1ER69-1726530399899.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-09/16-es-canterbury-2020-dem-msv86/flat/", + "target": "s3://nz-elevation/canterbury/canterbury_2020-2023/dem_1m/2193/", + "ticket": "LI-1553", + "copy_option": "--force", + "region": "canterbury", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HQRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml b/publish-odr-parameters/01HQRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml new file mode 100644 index 00000000..a364aaf4 --- /dev/null +++ b/publish-odr-parameters/01HQRJHF9AYZCGQEXM45GYH20X-1726530403894.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-09/16-es-canterbury-2020-dsm-s85bg/flat/", + "target": "s3://nz-elevation/canterbury/canterbury_2020-2023/dsm_1m/2193/", + "ticket": "LI-1553", + "copy_option": "--force", + "region": "canterbury", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HW190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml b/publish-odr-parameters/01HW190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml new file mode 100644 index 00000000..d72ad65d --- /dev/null +++ b/publish-odr-parameters/01HW190TPDAKZK8A0NM7NN9C4J-1713735249296.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/21-es-tauranga-2022-dem-1m-tqwlj/flat/", + "target": "s3://nz-elevation/bay-of-plenty/tauranga_2022/dem_1m/2193/", + "ticket": "EDS-29", + "copy_option": "--no-clobber", + "region": "bay-of-plenty" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HW19G256CF3VN562X0251PAG-1713735738978.yaml b/publish-odr-parameters/01HW19G256CF3VN562X0251PAG-1713735738978.yaml new file mode 100644 index 00000000..89c7d5f4 --- /dev/null +++ b/publish-odr-parameters/01HW19G256CF3VN562X0251PAG-1713735738978.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/21-es-hamilton-2023-dem-1m-gdldq/flat/", + "target": "s3://nz-elevation/waikato/hamilton_2023/dem_1m/2193/", + "ticket": "EDS-94", + "copy_option": "--no-clobber", + "region": "waikato" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HW19G257AZSE4YDB819RPMW9-1713735736735.yaml b/publish-odr-parameters/01HW19G257AZSE4YDB819RPMW9-1713735736735.yaml new file mode 100644 index 00000000..302546f8 --- /dev/null +++ b/publish-odr-parameters/01HW19G257AZSE4YDB819RPMW9-1713735736735.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-04/21-es-hamilton-2023-dsm-1m-qwv92/flat/", + "target": "s3://nz-elevation/waikato/hamilton_2023/dsm_1m/2193/", + "ticket": "EDS-94", + "copy_option": "--no-clobber", + "region": "waikato" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml new file mode 100644 index 00000000..c3ae8bf4 --- /dev/null +++ b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1716261456688.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-05/21-es-hawkes-bay-2023-dem-1m-64fc5/flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dem_1m/2193/", + "ticket": "EDS-72", + "copy_option": "--no-clobber", + "region": "hawkes-bay" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml new file mode 100644 index 00000000..b78d89b9 --- /dev/null +++ b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729469053680.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dem-gkkwm/es-hawkesbay-dem-gkkwm-get-location-2157959152flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dem_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml new file mode 100644 index 00000000..a8d494cd --- /dev/null +++ b/publish-odr-parameters/01HYCJ3EXF37J4A9130AH7Q2RF-1729479487765.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dem-gkkwm/es-hawkesbay-dem-gkkwm-get-location-2157959152flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dem_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml new file mode 100644 index 00000000..23fa2053 --- /dev/null +++ b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1716263039972.yaml @@ -0,0 +1,7 @@ +{ + "source": "s3://linz-workflows-scratch/2024-05/21-es-hawkes-bay-2023-dsm-1m-w9djl/flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/", + "ticket": "EDS-72", + "copy_option": "--no-clobber", + "region": "hawkes-bay" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml new file mode 100644 index 00000000..24d63142 --- /dev/null +++ b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729469054672.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dsm-cvrhq/es-hawkesbay-dsm-cvrhq-get-location-222380769flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023-2024/dsm_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml new file mode 100644 index 00000000..e9db8ff0 --- /dev/null +++ b/publish-odr-parameters/01HYCKM9WF7ZWQ4DPCFFCF8H40-1729478701445.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/20-es-hawkesbay-dsm-cvrhq/es-hawkesbay-dsm-cvrhq-get-location-222380769flat/", + "target": "s3://nz-elevation/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/", + "ticket": "LI-1538", + "copy_option": "--force", + "region": "hawkes-bay", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01JA6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml b/publish-odr-parameters/01JA6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml new file mode 100644 index 00000000..fadb82af --- /dev/null +++ b/publish-odr-parameters/01JA6M14V1Y8FA6DY57VFXDMEX-1728947041287.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/14-es-bop-dsm-8jmq6/es-bop-dsm-8jmq6-get-location-1326859691flat/", + "target": "s3://nz-elevation/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/", + "ticket": "LI-1545", + "copy_option": "--no-clobber", + "region": "bay-of-plenty", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01JA6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml b/publish-odr-parameters/01JA6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml new file mode 100644 index 00000000..354d1895 --- /dev/null +++ b/publish-odr-parameters/01JA6M14V5JCJRCE5W8KEVX8R3-1728947059959.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/14-es-bop-dem-rwctr/es-bop-dem-rwctr-get-location-1842088985flat/", + "target": "s3://nz-elevation/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/", + "ticket": "LI-1545", + "copy_option": "--no-clobber", + "region": "bay-of-plenty", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01JA6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml b/publish-odr-parameters/01JA6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml new file mode 100644 index 00000000..956cc9bb --- /dev/null +++ b/publish-odr-parameters/01JA6R9Z4XM3K81N2VFKJ4MT24-1728951671324.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/15-es-waikato-dsm-n4nxr/es-waikato-dsm-n4nxr-get-location-555473530flat/", + "target": "s3://nz-elevation/waikato/waikato_2024/dsm_1m/2193/", + "ticket": "LI-1551", + "copy_option": "--no-clobber", + "region": "waikato", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/01JA6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml b/publish-odr-parameters/01JA6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml new file mode 100644 index 00000000..1720fcfa --- /dev/null +++ b/publish-odr-parameters/01JA6R9ZFHKYH6K8XSAE2J5A0A-1728951654516.yaml @@ -0,0 +1,8 @@ +{ + "source": "s3://linz-workflows-scratch/2024-10/15-es-waikato-dem-jkqth/es-waikato-dem-jkqth-get-location-548618316flat/", + "target": "s3://nz-elevation/waikato/waikato_2024/dem_1m/2193/", + "ticket": "LI-1551", + "copy_option": "--no-clobber", + "region": "waikato", + "flatten": "false" +} \ No newline at end of file diff --git a/publish-odr-parameters/README.md b/publish-odr-parameters/README.md new file mode 100644 index 00000000..aae1a598 --- /dev/null +++ b/publish-odr-parameters/README.md @@ -0,0 +1,40 @@ +# ODR Copy Workflow Parameters + +This folder contains the parameter yaml files generated by the `publish-odr` argo workflow. + +> [!Tip] +> Add `[skip-argo]` to your PR title/body if you do not want to deploy changes to the ODR +> Add `[skip-sync]` to your PR title/body if you do not want to sync the catalog/collections to the ODR + +## How it Works: + +### Step 1: Submit the publish-odr workflow using Argo + +See [publish-odr](https://github.com/linz/topo-workflows/blob/master/workflows/raster/publish-odr.yaml) for more details. + +### Step 2: Review and Approve + +- Review and approve the STAC metadata and basemaps config preview link. +- Review the target path in the parameters yaml file. + +Example parameters file: + +```yaml +source: 's3://path/to/source/' +target: 's3://path/to/target/' +``` + +> [!Tip] +> If the parameters are incorrect or additional parameters are required they can be updated/added here. +> See the [copy workflow](https://github.com/linz/topo-workflows/tree/master/workflows/raster#copy) for additonal parameter options & default values. + +### Step 3: Merge Pull Request + +Once the pull request has been merged the [publish.yml](../.github/workflows/publish.yml) Github Action will run. + +This will: + +- Create a `catalog.json`. +- Validate the STAC. +- Submit a `copy` argo workflow for any added or modified parameter files in the `./publish-odr-parameters/` folder. +- Sync the `catalog.json` & `collection.json` created in this PR with the ODR bucket. diff --git a/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json b/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json new file mode 100644 index 00000000..9fdb8937 --- /dev/null +++ b/stac/auckland/auckland-north_2016-2018/dem_1m/2193/collection.json @@ -0,0 +1,228 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQS6C8F88JGM04345RY84N9D", + "title": "Auckland North LiDAR 1m DEM (2016-2018)", + "description": "Digital Elevation Model within the Auckland region captured in 2016-2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland North", + "extent": { + "spatial": { "bbox": [[174.1503643, -37.0772518, 175.5940431, -36.0228458]] }, + "temporal": { "interval": [["2016-08-15T12:00:00Z", "2018-08-08T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122039942a5b46234c077a134693078b0265e8a0e8cdf63d900c81177515eb470b13", + "file:size": 40235 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json b/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2d5af21f --- /dev/null +++ b/stac/auckland/auckland-north_2016-2018/dsm_1m/2193/collection.json @@ -0,0 +1,233 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQS6CAGWRKSSF27B93CNZ33E", + "title": "Auckland North LiDAR 1m DSM (2016-2018)", + "description": "Digital Surface Model within the Auckland region captured in 2016-2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland North", + "extent": { + "spatial": { "bbox": [[174.0977806, -37.0772518, 175.5940431, -36.0228458]] }, + "temporal": { "interval": [["2016-08-15T12:00:00Z", "2018-08-08T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12206e86a68dc9e70b9e8b5f152c5220cc4cef551f13ea0229492fa8ffe17b1daa28", + "file:size": 32410 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json b/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..83013630 --- /dev/null +++ b/stac/auckland/auckland-south_2016-2017/dem_1m/2193/collection.json @@ -0,0 +1,124 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPD3ZCFA9VXMTSQD85QRY4Q", + "title": "Auckland South LiDAR 1m DEM (2016-2017)", + "description": "Digital Elevation Model within the Auckland region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland South", + "extent": { + "spatial": { "bbox": [[174.4837264, -37.3346925, 175.3504479, -36.8082191]] }, + "temporal": { "interval": [["2016-09-21T12:00:00Z", "2017-06-21T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203c0191c1f0c51f8a0f6d92ba421ad83d74579ef2296e433be7e86ceb506ac3ff", + "file:size": 485157 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json b/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json new file mode 100644 index 00000000..034c59f5 --- /dev/null +++ b/stac/auckland/auckland-south_2016-2017/dsm_1m/2193/collection.json @@ -0,0 +1,126 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPD409GHP2542XJF4VDDT1K", + "title": "Auckland South LiDAR 1m DSM (2016-2017)", + "description": "Digital Surface Model within the Auckland region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BA32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BA33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Auckland Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "auckland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Auckland South", + "extent": { + "spatial": { "bbox": [[174.4837264, -37.3346925, 175.3504479, -36.8082191]] }, + "temporal": { "interval": [["2016-09-21T12:00:00Z", "2017-06-21T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f128546a40f789a2f2d76a7b8c7dd4948dd7cbee92997a43dbf94d5ecc4f07f2", + "file:size": 8829 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..c3eb1230 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,126 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQS6D00PR9DH3RPRDJBRC09V", + "title": "Bay of Plenty LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.8509111, -38.5211801, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2019-04-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122056cf43aae3de78dc5a5d8428096446fc70f87f84c6b1648ec94170064ae3b3c2", + "file:size": 25178 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..db453fc9 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,126 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQS78YTAXVAHPSH3XDNG25TC", + "title": "Bay of Plenty LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.8509111, -38.5211801, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2019-04-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122056cf43aae3de78dc5a5d8428096446fc70f87f84c6b1648ec94170064ae3b3c2", + "file:size": 25178 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..8732f775 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dem_1m/2193/collection.json @@ -0,0 +1,494 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPS5XWMYXT4PD4TY40AXV0Y", + "title": "Bay of Plenty LiDAR 1m DEM (2019-2022)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2019-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.7942516, -38.909689, 178.1384604, -37.2338091]] }, + "temporal": { "interval": [["2019-10-26T11:00:00Z", "2022-10-23T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220848732a4444cfbec24af748221618c3f4dee1aa63673bad102e2e45d4276d947", + "file:size": 33577 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..666da12f --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2019-2022/dsm_1m/2193/collection.json @@ -0,0 +1,494 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPSWHWD6JTHARS8YSJXWHYN", + "title": "Bay of Plenty LiDAR 1m DSM (2019-2022)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2019-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.7942516, -38.909689, 178.1384604, -37.2338091]] }, + "temporal": { "interval": [["2019-10-26T11:00:00Z", "2022-10-23T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122018da05dae5dc51b81a4b9d01288202f1fbcf6ea51a0968e792ed86f1d533d4bf", + "file:size": 36680 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/collection.json new file mode 100644 index 00000000..76d3e01d --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2024/dem_1m/2193/collection.json @@ -0,0 +1,498 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6M14V5JCJRCE5W8KEVX8R3", + "title": "Bay of Plenty LiDAR 1m DEM (2024)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208227b9323d2b84a0fb0aa1dd68963fd470fbf4ac94153d132915fb9fd49aa63d" + }, + { + "href": "./BC36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfb617470a5f33e470d418f960b5133adedc271fcff8a65e18154339558967c1" + }, + { + "href": "./BC36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c95e0f64422994315376092d85f47fc26afc1212963afed009da1cf87a36c22" + }, + { + "href": "./BC36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ee947d50909372277f11225bc93c3336ecc391891568a6377cfe82d7eb1af2e" + }, + { + "href": "./BC36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4377deadaf6c1ec61be8e9b2c5fd131bf1a3873aeac6fb0cfcb72953367eca2" + }, + { + "href": "./BC36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205523e61f46d68ce77bb60247b1d6f1070871a9b9a704da823278e69601d228d8" + }, + { + "href": "./BC36_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207db5457ff63b72c454db59e6984fa82d5f71a3e658d376c6802e8356adebfa57" + }, + { + "href": "./BC36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052b158e56e611596cf427ca4b3da1231624ccd0a2ca2d88e8873bec61e9f0df0" + }, + { + "href": "./BC36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098487399d9b5c8c05a3537aa186dd1b3afc73c47c815393ecc1570bee5907e7e" + }, + { + "href": "./BC36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040fe87ea6d1d6f68735a4b3dd360bae21eb416350214d9ccfede5f88313d841a" + }, + { + "href": "./BD36_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dcb0ace0c30a7ddb679a88dff7e71ad58271f940a3523de3c5e0b06a3d54accb" + }, + { + "href": "./BD36_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e624734d49371961bd30cec358307176fd2296bd992b5680aa23b033adef05ca" + }, + { + "href": "./BD36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3036f876d0fd7db518829b6a67b05ec0423f9f4753ad7065f8679b9e07bda48" + }, + { + "href": "./BD36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f82f909682a29687a33f201673e4e84f8b60e104f768718cd0c5c0ecaa0a3f4" + }, + { + "href": "./BD36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6fce3d75767ced792f54ab053411f89c5d89df1ce17d098e57ee0bfcf35cfd3" + }, + { + "href": "./BD36_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bbf4e48d938f2613695c1f1492335d11fa7b3ca347ddf07920abcaa475811f4" + }, + { + "href": "./BD36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4c665f5e02755553bb64a3acd0bcb20b32a2fd41cfbc0e0e3298bdaaf0ffec6" + }, + { + "href": "./BD36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004982faa1f74a2c3936e41d8bf8c31f6001929b863af72f66ec4e3f80967843d" + }, + { + "href": "./BD36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5b1508eb0aa322ae4e6c449ef702f312d4192c9f4acb9b1759c0a92836534f5" + }, + { + "href": "./BD36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ebb2c17abfc43593b894375b881dac2173365557e8d3de406faaf6eed33323a" + }, + { + "href": "./BD36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ad3922af948516925d54d2b7ceb947a9107bf171fa1f8104490e3c9096b2b40" + }, + { + "href": "./BD36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b3f76877b9762745ee519fb0da33faeea89317479c96e043c272c769785105c" + }, + { + "href": "./BD36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c87b290e9d54ae1d28be9c469a5dff72d61f010e807be2c14d4f7dc63658b746" + }, + { + "href": "./BD36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d78cc94fedb8b869bcfd0caa60386ae83d48bfed7881b85964a3ed0452f7fa2c" + }, + { + "href": "./BD37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6cb515f4bc125cbf691cafc3bfe91d3e0e74bdf3207c6486a14ec73f627e398" + }, + { + "href": "./BD37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc10a052ae0661c14a9c4b0c09309ff286ed399f96d5a1ef169fdeca741ac69b" + }, + { + "href": "./BD37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f6104a588d10c628e70e9d65f8a39b105e078d8c678c7794dc1e44420103a2f" + }, + { + "href": "./BD37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014e86ce7a38a04945f666c21c7daabd72e491f8fc4b4088d672e8878db711a4d" + }, + { + "href": "./BD37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220067247154802bda4ee001bd7df9e91913508fd8e15568839e19b7032c2963d5e" + }, + { + "href": "./BD37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d08dcb05125b0deeb7eb2ef7563dafe7226efa5e850a6d8d4c2eda05cb3d9b1" + }, + { + "href": "./BD37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbbdc4a61c70916f2667e5381d2af0bee1969309781c42767b7646dbc2088990" + }, + { + "href": "./BD37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122009ec2294768b52aca348938d0889277197892393acccc2b8dd139dae9ccecd9c" + }, + { + "href": "./BD37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220addaac8668d8da77fe4441fa8f0eb0b1b30ef6c89eae2d397da2a1c49b44b22b" + }, + { + "href": "./BD37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220acd850a156f4ba379ebb0b57a37c16754c99cf226c88df2b3186f0b1e51da5d7" + }, + { + "href": "./BD37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207bcc39f297d806c0200498236ad1eb6d43af9346bc8a3178294651daccdac137" + }, + { + "href": "./BD37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f38cafdaa3ed9d91f36204354dc3a0d45dfc8fc91684871bfc934f4aa9453b2" + }, + { + "href": "./BD37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207dbd48f13d0a8d343351a0e808011422babcbac491a2542fb0666bd144982f12" + }, + { + "href": "./BD37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd752a69d8da9e3fcee4e4ca07baefc63e857893e55a52e75b5ccf39e15ceea7" + }, + { + "href": "./BD38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204752e5e2a1f3f4b0581729eda24fc31fee841eb928bf3b86163795964ffa88fd" + }, + { + "href": "./BD38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220134f3cbd3c55012cba672d277ba49326feae43675d3a354ec02ab09f13d8e980" + }, + { + "href": "./BD38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc18d9bf6539375fe7269f8883a5d027507ea90f35f68b576ffdddc2324f5954" + }, + { + "href": "./BD38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086b27052c645208f912dc6b8593521e2aed3f418b9e30b4649786d7098f43351" + }, + { + "href": "./BD38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001a10412b9070ad913597e5f9cf6b5eada0f53c1fa3ebdd78fe87aad0621396b" + }, + { + "href": "./BD38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a56865d3a0c552ae841c6c1327d16dee9bdc0b9014e42abefb456e1341f52194" + }, + { + "href": "./BD38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204205da49bf1f17f81d6462bf9b45a844c65e9b344bc50c4d44bc59b3df0f5cd8" + }, + { + "href": "./BD38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004375dd3059f48d2f97fb40c196ffb18d203df202d16d8ca1d190f763d5c6c51" + }, + { + "href": "./BD39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220763c9c71e79b6c586e85864983c4fb61833e2bca69b541b5ba6294bc91a2c197" + }, + { + "href": "./BE37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4b2a6e5636b6655776ab372180c5ecbc33587635cab90cc4f6a88bea5f1952b" + }, + { + "href": "./BE37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220796692f7177455128eba611e0daa9fa2462dcae4840847eb459191f1452a002e" + }, + { + "href": "./BE37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa4937335e98d570a6f4df4e4e0b4b8dc1be07bb1f0c0633fa93d3e63b4216cf" + }, + { + "href": "./BE38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a543571d4018460af07550b8cb6b2b6f719c87c080f1e6fee9c396bc8bf2c3e" + }, + { + "href": "./BE38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220296d5bdeb96c0a4afec6102fe1b20e14f10fdbf25d5a78f97e491d227588606c" + }, + { + "href": "./BE38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220306401bc09c77c0f28b765ac3ad01591415c5a66b69d0bf430b65b9269e5835f" + }, + { + "href": "./BE38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b61024627b805397b7018ad6c6440321d7f2c0e67cef962a30ba4ed91375523" + }, + { + "href": "./BE38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003bb564f6cdd40138c7deddc4c0156bf8cdff7ede1c4acebf68c309c29a22cab" + }, + { + "href": "./BE38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220068ed845b114973566dc92a60e8d0611b1ee8ec25d1fa1b3f143c646b0da2967" + }, + { + "href": "./BE38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220edb18e7fb0c3d01c09d35eb90de91d6efab071c25b16d62a0cea75942a35a77b" + }, + { + "href": "./BE39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203de6d065d2a14ab7dddf241c6ed29ffdbf8d1d3f8a3c873708afac75a9ad5859" + }, + { + "href": "./BE39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070c72b5f6d4369a27042abf1e3973bd8f3b8535849a3b5ad1a327152d2432ac9" + }, + { + "href": "./BE39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024d5cff6f54d8b8f23ebd1a6dc7bc14a676caecf73f1fcfad90d8e713d38bab3" + }, + { + "href": "./BE39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b2fca4e56009e6e09e5a7fe2203a283eeaa8614a5f7efa593bd2c1973b710f2d" + }, + { + "href": "./BE39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b40b893e7f10b543f002f21c0332bea47a319ffeb8af06ac0cbf8db32e810056" + }, + { + "href": "./BE39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae1231af5ce1c3694dc69f124728ac8761ff7fca049f2daa208476fdd8445560" + }, + { + "href": "./BE39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095b0a1dd0759ff51131f32df8bf3a6d7fe67f6a92c4880634139cf222d61857f" + }, + { + "href": "./BE40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ca03cdf8a26ee0abbee9ae8210bde6f4524edb24b7d15b512fbfa04e8558199" + }, + { + "href": "./BE40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220702735ac35e6d57109914ddb33b84266ca4779800c7841d30345c74f6ea2aa21" + }, + { + "href": "./BE40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a6f1562d177dada9c982510dc3deef3b2bb6d2de3a41bcad73d5efdce38dcfb" + }, + { + "href": "./BE40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1924f32c870bd000f439742a7c50484940c6eeee872143f88da6aeecf71c23d" + }, + { + "href": "./BE40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205771d2630bf00ed22e0f409f04bc5844369f117ffdc163ada8c9129531bbd6c2" + }, + { + "href": "./BE40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d5aa4f8d55e814889a193ae17957e0c9c9fa3990f04e64c306eeeb20b9e690e" + }, + { + "href": "./BE40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c9feaee9e87ffc4ceadd5acd71a3cfaa907a6dada5e366fc1d07aaafb462359" + }, + { + "href": "./BE40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203737ace27f96f66a647e8da1d2d78ab2769a225db09c26544c84c571fd83ef60" + }, + { + "href": "./BE40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cd6f5fb3da1c1c114954cc33797af5db7c37aab991d7774b8a613fda15c5e45" + }, + { + "href": "./BE40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220565e70790713853485fb455f442d745dcf6d62e6aef70f4024e8fb30388ec851" + }, + { + "href": "./BE41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e69e6824745b191cfb99fc2f4adad6ccab4539599098ffe9e0c206064b97b157" + }, + { + "href": "./BE41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a02dcb0508271a13366a6250a4df73c9277b701b5fbc19ff49a5a9f4f3ff94d1" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "created": "2024-10-14T23:03:42Z", + "updated": "2024-10-14T23:03:42Z", + "extent": { + "spatial": { "bbox": [[175.8509111, -38.11634, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2024-01-31T11:00:00Z", "2024-04-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bd01afb9968b273ad270894ecbda7d2a336a8440644b1c64a5c01c8c17ba2712", + "file:size": 12455 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/collection.json b/stac/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/collection.json new file mode 100644 index 00000000..d51d57a4 --- /dev/null +++ b/stac/bay-of-plenty/bay-of-plenty_2024/dsm_1m/2193/collection.json @@ -0,0 +1,498 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6M14V1Y8FA6DY57VFXDMEX", + "title": "Bay of Plenty LiDAR 1m DSM (2024)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6d4d1aea910414d7fad1a5f1fa745479aaacc9b0d6b5dee8993bcc5ea5ec4e0" + }, + { + "href": "./BC36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073be4aea319790d52058de1da82c2a6384e957a9e6e3ff04535489afad1c574e" + }, + { + "href": "./BC36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122002c2b029be1f3748d6850f5af5b6de76a48decb247fca697a106367ee8e224ed" + }, + { + "href": "./BC36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220839dbb1001414be13d4543bb8091197f6b7ab92913e2a335ba8b8d1c37d2e727" + }, + { + "href": "./BC36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e071027b42615e653bfe6d0f760c10d2c8914347cc224e2014b9af44dcd668a" + }, + { + "href": "./BC36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018a3e8bbc15b9139869af6e1053ca88f44b1bd6869f2a8f4ff3fe71fbc837d31" + }, + { + "href": "./BC36_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010d6b6658fe34055aabc5977aab4c9aba7a0a673d830fa8f823aa21a275f9498" + }, + { + "href": "./BC36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c19d506c012c75c695f0f29027c68a07777bcada9d6472e637d3da32bb08b73b" + }, + { + "href": "./BC36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085d7f069da88f5b92eb368b8ff3fd4c4dbda4e39d00207d2bbc08feefb97a7d1" + }, + { + "href": "./BC36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c6f1deba9b754edc2e54f064f671c25521f9b8837fa73a40136edc81f598db9" + }, + { + "href": "./BD36_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3ece33dc7483b8b7db33adfab07fc65ca7784f4c56716018d546f0aa3a02625" + }, + { + "href": "./BD36_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220460ea4576986e4988212a29fd38e1927943631637307e9d5db886de58d991a31" + }, + { + "href": "./BD36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220386a304bb61e7221e33782ff04d36baca7d5e6c684cf750564d2e1e863c55637" + }, + { + "href": "./BD36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f639ba1c7df1c165124bf5f12104912a53c8c58054764685d9eb0f5b7c61035" + }, + { + "href": "./BD36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043e408454f1e67f2ec8fd5ea3b79ee84cd31b9bab3f8aad30e6cb2e28bd3cb7f" + }, + { + "href": "./BD36_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7ff8384c828962d660500ccf9b7bbb7974a48b89e679918cee4afba433238e1" + }, + { + "href": "./BD36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f27ca6259b9051989d00ac0b2644711a97f78614c4fc0521e6550700115c432" + }, + { + "href": "./BD36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001c1d6478a170ef21c821277d0c4260bf0a67f3efb066e20de46479f23be831b" + }, + { + "href": "./BD36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203dacfac3b36e5d61da269a227aec248163eb2c904c99366b2b0aa121907292f1" + }, + { + "href": "./BD36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f19dd62560dfd762a8b629b7175dff2a706839f54ad7554023ca4c165a24ec92" + }, + { + "href": "./BD36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e492c02878064f0cdc196482202d3bb3b144e39ce85268ed3b1fe59e919bcd0" + }, + { + "href": "./BD36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1f1157e41cfaaddcc2e303af1db64bbee3adefc46b079f0a78a4c920a64b956" + }, + { + "href": "./BD36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf1e1742bf5f2f4f6ad8f338519bbe32c0785bb9ef8179c1349d0eb7e6eb2a29" + }, + { + "href": "./BD36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083db95d2f528bc9a64355a2f758a2089cada56414bcf2863b25609f66c4b74b2" + }, + { + "href": "./BD37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5f71950963bc27889a5eac185f40f70de1cb9b4c91ac67f9d5c904affec01d0" + }, + { + "href": "./BD37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d235d19be388d94fa7d8a0163f5388b8fdd8976eacf09e97cc624f2afe7de772" + }, + { + "href": "./BD37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e315239fdd7896fa2c048e059feb3b4f17033ec1e39328fdb3bfa2a613f4645" + }, + { + "href": "./BD37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abf9de964f088d16be44ed0fe43f5e250615e10c4af932441444d4f5b8c0c465" + }, + { + "href": "./BD37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b52fbf441151db3d1a9fa2a970da44d0763be24273922c8d857f5fd9d6a4627d" + }, + { + "href": "./BD37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b522c70893821fb37022b9bc8c7e03ca6e5af1e598448faf6282b935eb4e5b86" + }, + { + "href": "./BD37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220620245cbe5696fcff1f69885460b73583894c3355b4ad4f31c7f81063a862088" + }, + { + "href": "./BD37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205870a6a50628f6e2d24d3c1b996bcef5885e576a7b138403c9a0a5a7840b96fc" + }, + { + "href": "./BD37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023e1ac5f0c7b0fd4e45f76841e580889781f6588b8c13947aa43cd7ac9b7eb91" + }, + { + "href": "./BD37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6c96cc5a982a407268398825ca825992ec0b36d878c4403150df3eb797186e7" + }, + { + "href": "./BD37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0d669c324374c191f00a7072fa9ad00d09a8346734973b3945a046004e2edf9" + }, + { + "href": "./BD37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1dc543522e9c5d2298d042b3d54581a2d97b3f0108b9a1fc3e091f7ca03776c" + }, + { + "href": "./BD37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203727139409fe572ab8c27cec87cb08907aa397e7129a15e54681a43353311e81" + }, + { + "href": "./BD37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa1d1e506dcbf035f2d730a918d6a31607362d4cfd4c5ed8be3fbe41f26f775a" + }, + { + "href": "./BD38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dccead9f3bf01d1d207b1850e796238f7672ee424a5f31b0b747c1d77b5d43e7" + }, + { + "href": "./BD38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c3884eef905923e927daff96a52fc1bd062f0de8d4a87c2701987eec1fd6b37" + }, + { + "href": "./BD38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc922c7d5703ae6ec355207c5dbef69bf98b1baa3d65c814f8246a079accb955" + }, + { + "href": "./BD38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e1fda3b115531595846a0c3dd71c5365a3bad0ce7c6fdc1ed99ced6b1f7571a" + }, + { + "href": "./BD38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220551a304dc424889f2b4d826757ee94347470b4c57be05684ac06d441eb0bf57f" + }, + { + "href": "./BD38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c526a79a73d4240e2cca2248693e2404399725381848364871230b9c0c938b2e" + }, + { + "href": "./BD38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202138ada1ee0aefa3061adea0ed06d367328c605e426ae59d0696f646703bc9a7" + }, + { + "href": "./BD38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d319d2ee22308522f795cc511eaa787a5b8062d8ba07f268d937657bfc26dc0" + }, + { + "href": "./BD39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204886014ec34f80d144fa418138e7f2a7e43708459f1401eaeb9f15c2600372c2" + }, + { + "href": "./BE37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204759ec8b330eb7079ccd38e0019567becba2090d56bcef1884424078c6c63d64" + }, + { + "href": "./BE37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a453bbbf8bb6ddc7566d14dfcda64be469185c9031127b49040f12602f78cbc" + }, + { + "href": "./BE37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208245e6434574689d2b8bfef274e946ec4f8c459bd8326132ea0de0939e347056" + }, + { + "href": "./BE38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084b11a58caa6df5fd864b6650bdc0462c08a32e4998ec4af5e14f4f9c0648c10" + }, + { + "href": "./BE38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122097e1b7b8734bdb9384f980c8c714f57711a8385d2caf5ee97c1b0b061d3014e7" + }, + { + "href": "./BE38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063dc6f3b531e345c68f8cce02e551d7b5ea78df0233f167c61c7735a0ba5ab56" + }, + { + "href": "./BE38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220beb98d71923cd1cb64e630fe2538429e56da66b08b034dc1a8e4bc36d5fc715e" + }, + { + "href": "./BE38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e99270e6ca278e872bb9f23c52bfe56218c5fe3956ccf740dc56a739dcdf4b91" + }, + { + "href": "./BE38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209eca4d7b3084db05bc5c33645c187a5caf627a68abaf02d5c3140b80447f1ab9" + }, + { + "href": "./BE38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003a9fb302842a647dc443eb7a160381d57915282ec3d30ed0aa02ff6c17bc9f7" + }, + { + "href": "./BE39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122042671f126f45482f346b3b39852e47f1e30115bf3cb87d5d577ba7ce85ef964e" + }, + { + "href": "./BE39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220afbb30d7dcd795d78c200249e5820a799e404e89c80234efd91ae69df8278b37" + }, + { + "href": "./BE39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b86ea0db5f4e86fedb4f07b054b8c6a6462566154747b36f0a2a1ed931bd4f30" + }, + { + "href": "./BE39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3169750f5fbc4be9ef518d4ae20f147a70d6fe8ec2599fc93f6af33c2a8336a" + }, + { + "href": "./BE39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220daa7ed147bdb4720f5673593c5ef3022cabca3fac9902b046cc0a8547b1a0a81" + }, + { + "href": "./BE39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ab6460178fa149b9478a566131a7c9993d53953c6c459f3a80bcda4ef4cabf5" + }, + { + "href": "./BE39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f2287e76971f4bba5442fb80c021b9b8d718321462c1452341ce08d52d3058f" + }, + { + "href": "./BE40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008377e9bf6224146dcf7873a58f156641079c81e7a8c31444ab8481bab350040" + }, + { + "href": "./BE40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220edf83b0360f1e40bb7b76929a9860d875a9f84940606627cecfdbc1be3a5eef7" + }, + { + "href": "./BE40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6d5619a7a51b98ba6ad088a3bc94c1d00fb5be13dbb1e50152416651e663a59" + }, + { + "href": "./BE40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bd06e134829f1f4c7e93617629c5829d2f6641a83e2db09b1ff5796615d4411" + }, + { + "href": "./BE40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f8af03a7ffb8a890465352e8ec7906ec66d7a2d0c3e86b787bfd14a8c1de5f8" + }, + { + "href": "./BE40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122097f1b10e81b40a8aca5d8569264a391ebad67ec8b089d06bc33ada60488ef453" + }, + { + "href": "./BE40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da3051cf8888d87dbb3d1f124aa257a26134f998bdc74d5ae46232821041918f" + }, + { + "href": "./BE40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dff15f558a3b3c314f1109a58bc6b19f7222ce68ac60126589823888d92d7920" + }, + { + "href": "./BE40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc196741e3efcf537fac1537e7b6d0a61fec85189647a6528c0e38cbe55f3580" + }, + { + "href": "./BE40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b9b2b32efcd80eec6bb03460cae667dbea7b9ad5411ef8e20015aa15ffa59976" + }, + { + "href": "./BE41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122020b6aba197cf6dc7aa4cf22b2df7ef24e91cf3cc2d1f263f1d35896b4a5be6d9" + }, + { + "href": "./BE41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098aeea24ce7e8b0f145e229da4d952209df0c5eaaa81462b1a2603eb1e7f5b11" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "created": "2024-10-14T23:03:11Z", + "updated": "2024-10-14T23:03:11Z", + "extent": { + "spatial": { "bbox": [[175.8509111, -38.11634, 177.3479462, -37.3721055]] }, + "temporal": { "interval": [["2024-01-31T11:00:00Z", "2024-04-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bd01afb9968b273ad270894ecbda7d2a336a8440644b1c64a5c01c8c17ba2712", + "file:size": 12455 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/tauranga-and-coast_2015/dem_1m/2193/collection.json b/stac/bay-of-plenty/tauranga-and-coast_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..0d9593d7 --- /dev/null +++ b/stac/bay-of-plenty/tauranga-and-coast_2015/dem_1m/2193/collection.json @@ -0,0 +1,105 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSEYZDWC9CPBH9AAXS2XZQF", + "title": "Bay of Plenty - Tauranga and Coast LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tauranga and Coast", + "extent": { + "spatial": { "bbox": [[175.8533819, -38.0554072, 177.4570272, -37.3721055]] }, + "temporal": { "interval": [["2015-01-04T11:00:00Z", "2015-11-07T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204eff897c50c4fcf45b787251760a6a08f95819b70fafffa497231ca50db877e8", + "file:size": 16098 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/tauranga-and-coast_2015/dsm_1m/2193/collection.json b/stac/bay-of-plenty/tauranga-and-coast_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2bcba5fa --- /dev/null +++ b/stac/bay-of-plenty/tauranga-and-coast_2015/dsm_1m/2193/collection.json @@ -0,0 +1,105 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSF246VWTN6FBQ7REA7ANBY", + "title": "Bay of Plenty - Tauranga and Coast LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Bay of Plenty region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE41_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tauranga and Coast", + "extent": { + "spatial": { "bbox": [[175.8533819, -38.0554072, 177.4570272, -37.3721055]] }, + "temporal": { "interval": [["2015-01-04T11:00:00Z", "2015-11-07T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a5d32937831ce8916bc559f388f5d5d8f68688adbb5ffd9bfdab4568dcacb5d5", + "file:size": 17492 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/bay-of-plenty/tauranga_2022/dem_1m/2193/collection.json b/stac/bay-of-plenty/tauranga_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..c4af22f0 --- /dev/null +++ b/stac/bay-of-plenty/tauranga_2022/dem_1m/2193/collection.json @@ -0,0 +1,63 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HW190TPDAKZK8A0NM7NN9C4J", + "title": "Bay of Plenty - Tauranga LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Bay of Plenty region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD38_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "BOPLASS", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "bay-of-plenty", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tauranga", + "extent": { + "spatial": { "bbox": [[175.9696946, -37.8919503, 176.4623641, -37.562256]] }, + "temporal": { "interval": [["2022-12-01T11:00:00Z", "2022-12-02T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122004b9ff9447f515775e415ca7b7b4f0739bf91a9abed049910c97dd274b211419", + "file:size": 4039 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/amberley_2012/dem_1m/2193/collection.json b/stac/canterbury/amberley_2012/dem_1m/2193/collection.json new file mode 100644 index 00000000..d400cbad --- /dev/null +++ b/stac/canterbury/amberley_2012/dem_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCNYEGTZY2AB66M49HJMJQ", + "title": "Canterbury - Amberley LiDAR 1m DEM (2012)", + "description": "Digital Elevation Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Amberley", + "extent": { + "spatial": { "bbox": [[172.6156695, -43.3130477, 172.8524917, -42.9886025]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203a876232fc54a4f3b900ddcd5b77ceea0742f1a43719c42823557c59d0f9ced1", + "file:size": 5354 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/amberley_2012/dsm_1m/2193/collection.json b/stac/canterbury/amberley_2012/dsm_1m/2193/collection.json new file mode 100644 index 00000000..53828e25 --- /dev/null +++ b/stac/canterbury/amberley_2012/dsm_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCT0PMTJ1JAPTB6YP3E0RR", + "title": "Canterbury - Amberley LiDAR 1m DSM (2012)", + "description": "Digital Surface Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Amberley", + "extent": { + "spatial": { "bbox": [[172.6156695, -43.3130477, 172.8524917, -42.9886025]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220cfa99f16ebaecdb5f68a1e7c48b80c34d5b799b1fe1c6fe51ec8944ece8115d2", + "file:size": 5146 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..0a383144 --- /dev/null +++ b/stac/canterbury/banks-peninsula_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,88 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9XA866M33YXQE74N20HRR", + "title": "Canterbury - Banks Peninsula LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", + "extent": { + "spatial": { "bbox": [[172.5527303, -43.9615254, 173.149415, -43.5716925]] }, + "temporal": { "interval": [["2018-07-17T12:00:00Z", "2019-02-09T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200841314535bd72f6f3021d9f1466b1ea51731bcdf7b2014ca8b65d05ea7944d6", + "file:size": 10752 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..fa8421cd --- /dev/null +++ b/stac/canterbury/banks-peninsula_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,88 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9Y4AJD8ZHB0MWMFB3VZMN", + "title": "Canterbury - Banks Peninsula LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", + "extent": { + "spatial": { "bbox": [[172.5527303, -43.9615254, 173.149415, -43.5716925]] }, + "temporal": { "interval": [["2018-07-17T12:00:00Z", "2019-02-09T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a3c6402388d80192e3746cef05038043dff8ffcb0cb2feda2ab14e56bbf72f8f", + "file:size": 10752 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/banks-peninsula_2023/dem_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..4e450ede --- /dev/null +++ b/stac/canterbury/banks-peninsula_2023/dem_1m/2193/collection.json @@ -0,0 +1,95 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJY25RYS4F3XDF9VKY4NYZ", + "title": "Canterbury - Banks Peninsula LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", + "extent": { + "spatial": { "bbox": [[172.3127142, -43.9615254, 173.149415, -43.5722488]] }, + "temporal": { "interval": [["2023-02-17T11:00:00Z", "2023-08-14T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220edd46eb0cebaf22c3d1ad75ce1c12bd529960cd24051a7ef48946450c7e1a285", + "file:size": 37695 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/banks-peninsula_2023/dsm_1m/2193/collection.json b/stac/canterbury/banks-peninsula_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..8c0d1051 --- /dev/null +++ b/stac/canterbury/banks-peninsula_2023/dsm_1m/2193/collection.json @@ -0,0 +1,95 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJZDVKPWCDE1MRNGVTZA8Z", + "title": "Canterbury - Banks Peninsula LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY25_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Banks Peninsula", + "extent": { + "spatial": { "bbox": [[172.3127142, -43.9615254, 173.149415, -43.5722488]] }, + "temporal": { "interval": [["2023-02-17T11:00:00Z", "2023-08-14T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122076971ec2cac4f6c4d68eee34efbef6160220f68756248e4d04dadb9ce3d480d3", + "file:size": 37695 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..cbb85d18 --- /dev/null +++ b/stac/canterbury/canterbury_2016-2017/dem_1m/2193/collection.json @@ -0,0 +1,215 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPA82N0Z166TZF11BF6XD0H", + "title": "Canterbury LiDAR 1m DEM (2016-2017)", + "description": "Digital Elevation Model within the Canterbury region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[169.7662116, -45.432701, 172.672706, -43.4392042]] }, + "temporal": { "interval": [["2016-10-31T11:00:00Z", "2017-01-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220cfac86b951e7987884dc626d589ddcbadb9c5589de33cae47549ab4b4aecf1ea", + "file:size": 247367 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json new file mode 100644 index 00000000..97ddd78a --- /dev/null +++ b/stac/canterbury/canterbury_2016-2017/dsm_1m/2193/collection.json @@ -0,0 +1,215 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPZBGYRD2T5ZVFP23G753T2", + "title": "Canterbury LiDAR 1m DSM (2016-2017)", + "description": "Digital Surface Model within the Canterbury region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[169.7662116, -45.432701, 172.672706, -43.4392042]] }, + "temporal": { "interval": [["2016-10-31T11:00:00Z", "2017-01-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122041a7a03b8d8d6a6ec57bf29bd3ea14661a6378ef82099993bb2cf55cebf3c0ff", + "file:size": 253099 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..169f41fb --- /dev/null +++ b/stac/canterbury/canterbury_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,330 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP7WEXZFTE4FQKG824CEGRS", + "title": "Canterbury LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[170.6822667, -44.98452, 173.1465831, -42.5999333]] }, + "temporal": { "interval": [["2018-03-13T11:00:00Z", "2019-04-30T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220baf6c982cefd9f4b39df1f5c250f316aa6b01836fdc08fee778d60b0abbc80df", + "file:size": 60519 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f274b4de --- /dev/null +++ b/stac/canterbury/canterbury_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,330 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP7J14PCMV3YDFNG4C1Z4AZ", + "title": "Canterbury LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CA18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[170.6822667, -44.98452, 173.1465831, -42.5999333]] }, + "temporal": { "interval": [["2018-03-13T11:00:00Z", "2019-04-30T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204386d7937f59610dc50fabd096c6ca6d84fcd8a45e69cc724aa23d8736fb78fa", + "file:size": 60723 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json b/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..6550906e --- /dev/null +++ b/stac/canterbury/canterbury_2020-2023/dem_1m/2193/collection.json @@ -0,0 +1,6750 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJG560KWTF0Q8YKRY1ER69", + "title": "Canterbury LiDAR 1m DEM (2020-2023) - Draft", + "description": "Digital Elevation Model within the Canterbury region captured in 2020-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BS24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a6787fd489ede66af4cf3280a10a59ae98306d0f7bf43c3d5b9782429125b2" + }, + { + "href": "./BS24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b605a13a3e5cab5a6bd73b7959b1f16a8a1eb53db7f4c9e90347dc01be1a7272" + }, + { + "href": "./BS27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054e1f1936cc57de7e816b0b77c22b3d9cbcf5793a9900185dde18e87e5e541bb" + }, + { + "href": "./BS27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087eb5dba33af64b283706bf827fab99db73a780b27a57a997aba56f1cb71627e" + }, + { + "href": "./BS27_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dc974bfbd12a514f0a100466ba2ff7952a5a31806e6cbe51f119efe33048ab4" + }, + { + "href": "./BS27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cdd8ccf01bf1eff51bd314a4dde93b4eb0664b49cddb7207d7c4038a07216dc6" + }, + { + "href": "./BS27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122001373d17ebcb5233bdbaadb54d42a718e4415723b0c711ae2cdcef74942f7b9b" + }, + { + "href": "./BS27_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a038620e4e3bc477398bb3a98c3cc573fd604a72e807d23345be7eb8a6a4f369" + }, + { + "href": "./BS27_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b320c067fd4e551f3a49bfee375756532f74615b14956ef42679bb8bafd2e7ab" + }, + { + "href": "./BS27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200eef660a2304c38c8f328b1a71a164f7d1c1c3b4cd86510bdb7b123ec43015b2" + }, + { + "href": "./BS27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a5c053947bfddb074085c9e7888ec51766f648f8eb3eb3bb09776fed63ed763" + }, + { + "href": "./BS27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091aab06f989564faac73d47772ba8e908d00dd98a4219fdac7481a8c029de5c7" + }, + { + "href": "./BS27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e02bebd65051a769e5d88c275550615fb24edbb1a69ad6bca6a81915b4c8cc7" + }, + { + "href": "./BS27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220733bce593377d77e8406114eeac23be261504cb0abf9602fe00d82c86d9dbb7d" + }, + { + "href": "./BS27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0cb30f62c5a662d5157ce6765fd3578e19a93df0a8a6a75e7419f3e6caa2568" + }, + { + "href": "./BS28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d660880d739d2eda3ecdb4ef012d61c0b0aa91deda04f9d2e8a123ff28fc1f87" + }, + { + "href": "./BS28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6addd383a94a4e002532b862093207a61879b9f88d2569a1f9e005386e25773" + }, + { + "href": "./BS28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abb47e8c3b7f3a557e1eadfe76c8e86f5696eb0be66c3c18870af1d1b9ea39e1" + }, + { + "href": "./BS28_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209659f86a8484618417db1c7a9d8d9ae37fff4bcf92be3c546b3b7f2d693c7cca" + }, + { + "href": "./BS28_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b682a3ee24651d60ead6a122dce1aab25cc5c3f7222a1a52cf0e28fc530b435" + }, + { + "href": "./BS28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206003d1acfe989b43e2c5db47f9170f28b147eb9925948fc84fb82b3f72ba3b28" + }, + { + "href": "./BS28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dadbe217515cdb51129529832553b9d2bf02f7f03f96fa78f9b8670ab4f67705" + }, + { + "href": "./BS28_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ef02c6b6e661486335cd86e27e3a56cbd2aded844395a9d36c4102971cc4b47b" + }, + { + "href": "./BS28_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071f896df22242d868120625632978d4deeebe5d68c41a4d603a53928b31175b9" + }, + { + "href": "./BS28_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efcea2d6063aa7fe4c300cfd6f55431b0ffefbffaca03e414295ca02573b2215" + }, + { + "href": "./BS28_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207796359dbb1454c280f9581371e2f893c7f6578c68a079a8bee10bae67f74854" + }, + { + "href": "./BS28_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cae5f8a78d20a4abcc6ff1509aa16af120c29b49a2fbaac5bd2445d783053c1" + }, + { + "href": "./BS28_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004345f8211a87267659214e7e9b2a985d2f58c9a5bd77ef7a039635b098e3236" + }, + { + "href": "./BS28_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a481687e4689f4c4c2a1479021688cb9a1690e737c01fd9af7bd2bc2665a1acc" + }, + { + "href": "./BS28_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220505b1f6d9249995cee7b1177017294089c4868a65eeb2013b91ea323729d2f49" + }, + { + "href": "./BS28_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d489553bb855667ad2cb0ff7ba54a6d2398e3d8b98285907cee30383e80c19c" + }, + { + "href": "./BS28_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b71d2b481e3f356d2095960ebddfe956ec980cd725f376c764850c6095fbdc00" + }, + { + "href": "./BS28_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022d62c73d2e168b6f3fc8ad250726181a3632fc6625e2c076fb9001f6ff33213" + }, + { + "href": "./BS29_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204181ce0df69654b7d607bbda77d7b9139b0d8d514accf67abb347e7f506ecf65" + }, + { + "href": "./BS29_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070e874023adc178dc7f67e9a9ba8700343ce8104302c00ca91f0167947ea903c" + }, + { + "href": "./BT22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c35b1d3e07f5b7bf6d75645a94b8a441a64857b82f5d7da69cbfe29cce3d679e" + }, + { + "href": "./BT23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b3a26af4d722e37bf6798122c89c519357490cab57fc051593fcdd9eea272cf9" + }, + { + "href": "./BT23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec4c5c60577102f3126eab78273946c8ba1b4f66bffa596681c047593905fa8c" + }, + { + "href": "./BT23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b53c0f20240a387ebbc1ec5c4f142e7ab1f6fa31051ccb792c34b08e12787008" + }, + { + "href": "./BT23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd48f2532e532f161d80457641c90a50a28fc512ef8f81e081c7d50f04a92510" + }, + { + "href": "./BT23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ccc11e2ddcbdd90b708aebb2ef9a382be0ab87e1f148bac81779f68b1b100bdb" + }, + { + "href": "./BT23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220598d9f3740290b3abb2352b4542dc68585feb570781cac308f140b5e7f7c1c6f" + }, + { + "href": "./BT23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095619eaffd774828b8230a6fb89315971c7e570b7ab057d186ef5c1ac211d44e" + }, + { + "href": "./BT23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0784cea2ce7cb581d9336e8b60b1459239a7d960ad4f28aa27c39bd8a5a9fb2" + }, + { + "href": "./BT23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087b906d55638d5eaedc2503d4756dcb48782e209bd15da5bd8fb192964606e1e" + }, + { + "href": "./BT23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079b8325333ac3cad6b8f5ff1dccb1d40d701aa096c1ee2557a9503b5166b1600" + }, + { + "href": "./BT23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bfcbc827fca03acd7902b2b0104050fa39635bb6cce48b1f8161f0f759ad5aa" + }, + { + "href": "./BT23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8b9f54ecd00331810192f5692b8bf1c001d3893e04160f30e79276e28f0376e" + }, + { + "href": "./BT23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0e5de63e556c5821f6b3ef4f078ebffabebc5f060709cd41f6dc2af99c91f23" + }, + { + "href": "./BT23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013658599033faf4b3bf02584f226882e2682765376e75f7470766d8335beaa1c" + }, + { + "href": "./BT24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122097bf5df7a36c192f1fd7e06049b5cb0ba5546859c34c37adcadb07cac66545c7" + }, + { + "href": "./BT24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059553b39cb281be9148460d3353ef2128c5fd2904d745a01496c6765167c5e3a" + }, + { + "href": "./BT24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0cb6205813fcb9df8bf6cd7e47b822a12e98a70bfa34530655b1fd2f1d3fad2" + }, + { + "href": "./BT24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122019d3207fd5c91955aaa7b693a3dce98bff7206abedbe30e5b04ef7ca5d8abe3e" + }, + { + "href": "./BT24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220531e0b2456c512a1f350f891e9c505130a16e4398255d1feeed4bdfb72641400" + }, + { + "href": "./BT24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a15ae6c30a8f946ccf33e79df1c4533b3066f440ba1f38886576db7cad745b04" + }, + { + "href": "./BT24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0cbe00654985cba9bf53ff128cf5c2b00f11a48ca97fa6505e5290e8521b150" + }, + { + "href": "./BT24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220028ef04b28e977c85343fe04d824627b8797b5b18251a7991322ed2d28921634" + }, + { + "href": "./BT24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad8a0e3147f9c66b2fda31fa97fa34f2130037cb7837f43459685c3ae21bb73a" + }, + { + "href": "./BT24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eae22438627c8997af45cd279e01ca0b9d1134ec33a1d03131e7755c96053362" + }, + { + "href": "./BT24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a05cc484ca0fb2e6d59f5f7f37ea5e0a5cb0121da0e603c96a4ef68d028a3a51" + }, + { + "href": "./BT24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d14b511b47b6b341919e323dd773ced4560b0422e6fe5c1366e99dda5df86f65" + }, + { + "href": "./BT24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff6063e0041561f94988e94b078099bb005ecc9f1843aa1d61c15ffaaa358291" + }, + { + "href": "./BT24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c8863ebdfe29106435f485763dabf2f5d32a59b0a3f4b88174fb22f070117be" + }, + { + "href": "./BT24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220123c1d102bcdd90f91414c965c3cce07f3b7ef1909853c8e86f13925809cf2bf" + }, + { + "href": "./BT24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb4bee38b0cea1b1e6dc64e355380968c5252bfd47881ab8dbd50583ec743cc2" + }, + { + "href": "./BT24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fefbc4bc1d8dafc8eed6884c877262c17497b08c9970beccd4e5735fc1d7a189" + }, + { + "href": "./BT24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012028174b9ff41b1f67a6cb702eb623036f3825db694164910924ac81df8248d" + }, + { + "href": "./BT24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010b21ab2fc34e0ea0b3a37efee9afa9d7132b4691ecdd7d285fce9330b804b92" + }, + { + "href": "./BT24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201eaf43cef2f3d58077d109876a683291cea24302ae893de4a7e31b4e70e38ad9" + }, + { + "href": "./BT24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cff1a678c5c087266d52a85a52229a9adc10db5d0c305bf2073d376615f9df8" + }, + { + "href": "./BT24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f964285e04e896949133b5514fd051c2fff98284fea774d40eeec7a3630a8019" + }, + { + "href": "./BT24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207617127606348da56ea21e0857a9554cc529a3b70eeeb34c8b6870ed1b4d96b7" + }, + { + "href": "./BT24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a9c9c495abe25e92d9c3f68b1a5cb83e3213dbb08393091896088f57c9a29a" + }, + { + "href": "./BT24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220951455ec4cd9c462d603528e3fa28122144d57b1f85d46840717ac3a3e675f89" + }, + { + "href": "./BT25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce66a56e3f6cb3e7d44d35e597f92c3f200c12a831bd00ec17e24f2049ee2882" + }, + { + "href": "./BT25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220033c0e409ea15d1ab9ed9df55989beee33ab2636cd5d6e80d56d104c88adc584" + }, + { + "href": "./BT25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1e6ad62c827fb26af838cf1dbadc228ba8e2f1b90466946843f1fff18164caf" + }, + { + "href": "./BT25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ee69aaa9322f680d4c9a9f7d2ba3e4af0cf6b5a37e72908462879ead9fcd6ac" + }, + { + "href": "./BT25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4413b4563ecc72e35e7327888c2f71e32d5f9df8978e5aff1892e483dfb05af" + }, + { + "href": "./BT25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091253a21e36c2245e1bd4984a5343f102fef2c002c04c886b71db03a78f667ea" + }, + { + "href": "./BT25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220669de0bef37b5236966e484690430c9d33819328a9197fedf63013abeb0c9ab6" + }, + { + "href": "./BT25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b26a5466d1d7a2b61f3b875f732efd78eb6d80ae21de97b98b634e13d955e3fd" + }, + { + "href": "./BT25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a30958b236eacf750df407584c67acc0949a61d97105dba9df68374394762d7" + }, + { + "href": "./BT25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a7117346ef488606ee8a50d45eb4c3006cd48403454e7892a12ebccc212475f" + }, + { + "href": "./BT25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a18162bdb3e7bedc8de59c07c4169917896dd9b6500a422c52ca2fd618dcff05" + }, + { + "href": "./BT26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091fff8c524221e57d289792e8f537a4c3862b2d645d8e2f16c66aaac383a5bfa" + }, + { + "href": "./BT26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220567b8bf13e7a608283ae1d09c3a79b83afd316fc6cd6a31b85df3e326e392363" + }, + { + "href": "./BT26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be04900bd4411cff2b6d7610cc4516193ccdd8120c799920e21786f7e25822dc" + }, + { + "href": "./BT26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039144be650ae19e44909efa67e96c51c7a55b72982f545d46ea90ed8bea7cc35" + }, + { + "href": "./BT26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c070cd24ff4e34a7a9656c8cec723f0ac2f86f19ab55d19661f6fe2222c1ce99" + }, + { + "href": "./BT26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c84e4fe0edd160dbc67cd48be992db819cc8429fd45f14e783cef1638eedf73c" + }, + { + "href": "./BT26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220da95ddda42d502618b7626004bab9a0c7d7ebd5d8485e2d8daa3bb93ee43ee2d" + }, + { + "href": "./BT26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5d7ff1668134a3b0e79c5dbeb77079a16956695c024aed5ab0756e52cfb2989" + }, + { + "href": "./BT26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202cac1c7288ca4189cb17970e74311750209878a9c78c887c061c3a1a8ab9d270" + }, + { + "href": "./BT26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208322e28613ae21d2ad8246269d62993b898b5defbba3117de61279b3b7d3fbf3" + }, + { + "href": "./BT26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e239dd098e298cbe7156a220be390abaee23fb2b771f1b73af058910788a56c" + }, + { + "href": "./BT26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1356c3bba4a8e599977215ea7843bbf4386796dbbc2556b7f5f2e6b1970f30b" + }, + { + "href": "./BT26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002d8eff59d9f7cee553a41166840a7f499b6a528577782e7df5db42e6e5fa3a6" + }, + { + "href": "./BT26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc5f94ab1bdd841eb5c24f7da8d2e96c6cce994c5d30a1b5fff1a46fc1055746" + }, + { + "href": "./BT26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207174a0b71fee689c1a00ecb59e0778cd1aa878a37bb6ff49875dbb88899b08ab" + }, + { + "href": "./BT26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122060c2b86605f2ce45380135d6d4b48004beae07d0d4bced5797eaf5114eb8dc66" + }, + { + "href": "./BT26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030f1749eccfa92eb10eee7be30876be3cb2b0dd81b152fbcf6ab556bd75ac003" + }, + { + "href": "./BT26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055d7303ee7eb759db1462e14b637a285cbbea1097cadc8150425c289c5f19a6f" + }, + { + "href": "./BT26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006eada2508a891da635c172c107144f9b92c6b4d3485ad507324d2d0649dadd9" + }, + { + "href": "./BT27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fcccdf88d41715dcb97bab31b91a87a736a21b58dcb2fe75edc4b12f561e590" + }, + { + "href": "./BT27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a9d2cb7abfdd23977bb636a0706bfd24e4ff8504d768ecaa0647ba68b32c843" + }, + { + "href": "./BT27_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220865bdc615f121fc8ce9cf8bc9507b7850663e3f91d096416a6a9c361a502bb56" + }, + { + "href": "./BT27_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ded4c84263c3653df8464c5d15aca04a3ed5d616cdc29f2626b9c2a69703aa45" + }, + { + "href": "./BT27_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0285cc6add95222e9156532f350681e080032884d47b516971a07a8387fb339" + }, + { + "href": "./BT27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014d0fe3829150598b7454082d6802b9d8d36eb42994f2d37396957141995e807" + }, + { + "href": "./BT27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fbd7dc44e965f50690bfcce8981fed00c5388d2cedf09790a60006a7615cd2cd" + }, + { + "href": "./BT27_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd962fc1237d5c4e8a41e9df2df248838705d7de9d7f6d3ee5e60954e8457fbe" + }, + { + "href": "./BT27_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122077a869270ef1dd2ec80dae3f7311173db562044e0dfd2325b58be311a6f1e27e" + }, + { + "href": "./BT27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac4580b005286643b4ac58319d455b7d804bcf786eab94d194b210ba207c4455" + }, + { + "href": "./BT27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdd20c4a124f402214613f623746b7f95d196906c075046777b3256b51af51d1" + }, + { + "href": "./BT27_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095449cd8ca43a18c87422bd00bad2de356f37b3a9ca816cb33bcce70916e39be" + }, + { + "href": "./BT27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de93e25d1699749ce4c5c507e439873c66f2f138f56f2d527abbd02f21411bed" + }, + { + "href": "./BT27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a8fda6636965566aa81d89722e4093c96d412c218b5469006873405ba5e5d98" + }, + { + "href": "./BT27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c685a50becb7e4bbedac557163e43038b00312d4866cab4fea87d7a12710c663" + }, + { + "href": "./BT27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207cc5984389f8c137bb4484a97f2fbc8d40086c3628c78e5ecb63c739d49d5bf2" + }, + { + "href": "./BT27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcacc84828299f5ce099f0df60a2956e03f6d5841da175eee52704ffda6cfd70" + }, + { + "href": "./BT27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203df53a4642b4f1d0e859231e12e9b9f7049194f4110c53acfd69b7b8fbc6616f" + }, + { + "href": "./BT27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006d35deb6d4786bf502248a8ace56095991206f6fa899265c50ee695518af3b3" + }, + { + "href": "./BT27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7cb1e4e396aab1ea127a3a962b836b29f92986a9083019192cd59a874ed6e59" + }, + { + "href": "./BT27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122074e0c1e5d78337b77c1a59c6b4a1c93f77e770af45ec09c050b988d59f2d0273" + }, + { + "href": "./BT27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d17d1f3ab6a3929ba3a46548b1522c160410ecef1eb304488212c53088ab4583" + }, + { + "href": "./BT28_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b859d405f30775276c0b7083d925d08b350bb20feb104ff567090fc757b8068" + }, + { + "href": "./BT28_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086c7ab4fff8f0194e93632c51806a0979939c236e7ce2de5d9a7ea970118a0cf" + }, + { + "href": "./BT28_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5fb02d6438700950133b1e974384d8d0611130d8f818719e84ea1434b99a2f1" + }, + { + "href": "./BT28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122041dec3158fcf5df40fe09880a670f4922a6b0da1a801753d67fd3df6de49888f" + }, + { + "href": "./BT28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cf4af410d1ba4b4f8b91f2f09102ac9d53a15e22658831074ae6107581bceb0" + }, + { + "href": "./BT28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8142f1b533b21af52b98412ce7f2fb7ddf965dc69ec7d4a4c0804c9e5ecae89" + }, + { + "href": "./BT28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e8c040191b39f43335542376816557e65eb72945d48d37f66b1544c0eab5875" + }, + { + "href": "./BT28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2bedbcbf7779f91ea2b69be51089a2e0dc136b0c665f702062f0bd3183dc833" + }, + { + "href": "./BU21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059e30f423d7d4eb4e423377f582ba170b7e36298d31f6f25d3b13df39b8973a8" + }, + { + "href": "./BU21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a42c22cdd8bf80dabd251c3c8be113815bab07c8c3517616a241300b41942ffa" + }, + { + "href": "./BU21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fec663e5b01f3493e5aba9a903dd47308d8d550160f8eb643e1af01e291e82b" + }, + { + "href": "./BU21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb4e72d7e79c1c88371df63c5f565538be7e7669a904709d9fb99d981b797690" + }, + { + "href": "./BU21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be5885951ecfcbab5cecb1cd68d76a83b16bb54a5f4130d5e3ee26bb77957da2" + }, + { + "href": "./BU21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae5d5105d0179fb5f1a93103fd66c3a294553c12babe70b876ffb6f6f163bbf4" + }, + { + "href": "./BU21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206203dd2412fc9da5837ff8d0c5aa2542d5a09194c86fcc50f4801f51a6920503" + }, + { + "href": "./BU22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec5e719d2e63ed35ef76491660ddd0adb764f753a052027c2c834a1cb8f02528" + }, + { + "href": "./BU22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078a669aa3c4193d2b6d566c352cdb9b090adfa59def719621ad427c30d37312e" + }, + { + "href": "./BU22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d2e1813ff4d72ff3f4d98ba4e1db7dd36aa164d2c030afc348a5c2781c2a18a5" + }, + { + "href": "./BU22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082fdbdc6a461d65aff0bf53e8c6b5fc56eb665f4fb94e22f57dd88b415fcf8c3" + }, + { + "href": "./BU22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207dbeaa7fc3c9e0348bf4b04fe851fa828e2d297a864af6854b50fb360493c73c" + }, + { + "href": "./BU22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202e14039054e91ea2cdf9cf18d8671eb802ca9b84e65a634713c945ac5aebc06c" + }, + { + "href": "./BU22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4dec04a897275d747fc25c089bc12bffd0a8f15fc37adfea64fd9a35d316ca1" + }, + { + "href": "./BU22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff5a40e2e8dc7984390321cc3918834be7eddfc86496ae36b6f3c1c4b3212436" + }, + { + "href": "./BU22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200eea02a82e1cef4be1b0995439b6de048f99043034d67839ff0a6334bd84e89f" + }, + { + "href": "./BU22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d59209f8504df562711255851d3c417211f465fd28448b7d27505e853204716f" + }, + { + "href": "./BU22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207590c0a07bb618dc7cf65a7b4cdde5bdf9600b2961e5a788ca9647be7f8c729f" + }, + { + "href": "./BU22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122011df77c29273f7c44d92638bd7239b9ac8deb02a13fc15ad054dc4631d1b7b39" + }, + { + "href": "./BU22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3c3b9b269e2263b3be265ff8598ba40a6d5ffc920fb2249316ef8d4f6c15f62" + }, + { + "href": "./BU22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd598c9357322957ac2369b218ff566d0fa60a9114fcb15ada72aa6bf83608df" + }, + { + "href": "./BU22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220967c51b1d675ac91f88610299a2b0f085f5b843033d5b5d82f903a57ce751036" + }, + { + "href": "./BU22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d42fc66dcb704d3e4a17fe91a806ea384f4f022cc6ee79d719e3a45541ed17b" + }, + { + "href": "./BU22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122077b7cf6c9a9fdbf8069f787c64cf8fe973a08c623d393b328c238faaccba3d36" + }, + { + "href": "./BU22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aadd08cf39cff80016e6fe24fd050c6a064148ac28045cc8e2cc1cc7c561dfaf" + }, + { + "href": "./BU22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed36729ccca6d61886476938662df0cc096ff61288a401b1260a415426885c54" + }, + { + "href": "./BU22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7878eeb96a90ba16e74eaf5faf06650a447eb8e1fd5e0090068af2651478e15" + }, + { + "href": "./BU23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c165c299be85747ed3b19ab68dda309968c470f99091aebf9153e5ae8a1cceef" + }, + { + "href": "./BU23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220290c9bcd59a396458bcf05c5e5eaea66e4b523de2e6976bc107decc472ecf762" + }, + { + "href": "./BU23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c522ea05459f61ae1684a46b49c6e4fc42d0d9865cca75279650d735f790c392" + }, + { + "href": "./BU23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac8bcc46158d1e0ac253bb2753a134888bea8e886011f9d78f920fd65a8b3f19" + }, + { + "href": "./BU23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203403e0052ac42cc312f3790dc24703aa8672bbcf5e82649f575170e19136b658" + }, + { + "href": "./BU23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010b8f0895321ec90d460e4c032e236b272780f2c02c19086f821a174ac74863f" + }, + { + "href": "./BU23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220100c9dd65ca58d121c897ddd137d1c5a96f747d1b481d234b3d8389167b0a0a1" + }, + { + "href": "./BU23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220019f9fcefee8cb2296a46f3783c6f70e55527e9f92cafc661773e5d5a8a59aba" + }, + { + "href": "./BU23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070cc325c55a372f620bd163c89f9598628784d1b334c1c6aa42b5bfebf1fe55a" + }, + { + "href": "./BU23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ea704c30689ad7a62d120bd11a7714ba6bd82897ee45e71560057a22e2e79c0" + }, + { + "href": "./BU23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d990f3037e1bd5992e88e683be05fb267b96405306dc3b50b82dbcfe1582a5a9" + }, + { + "href": "./BU23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e30e4e1880bfb90e35888d99164900d90063bd099a8e18f79a261760259d4298" + }, + { + "href": "./BU23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fdc4fea5c244c87aa4d8d2c1942453b5a02928655c5d4caf5683f0a2a8702df3" + }, + { + "href": "./BU23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee48e7b9368193ab1d6112f13d3d9aa7b18eadb8e36ba19086001ea9f0c70d26" + }, + { + "href": "./BU23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d7b6c43f6eafbb420d1fab7d337578964fd1f6b226c1eb2270a293a363d37bc" + }, + { + "href": "./BU23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122031954429b848d3f9e8e2522ca50c2cd8d2f6280c74867f15fa8dcb73ef2e2d6b" + }, + { + "href": "./BU23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220736f4f4c2ba3949d37d8bc3ccc7f4ae87b571eabad11ffb669193e3e2547f448" + }, + { + "href": "./BU23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122042ad928a7f07ba90f2efa051d6699bb5bc84513dddeffd1575475eb0b42ddb19" + }, + { + "href": "./BU23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207c952ec8220b5a77bcc63d85f3d67a39a633752f5275479eb902ffb1332e8c50" + }, + { + "href": "./BU23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fdeb1d463cdf1c0e2add51dc8a26347e152f42087560988c924686ba0eb85d3" + }, + { + "href": "./BU23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a91778e74ea806eb2f30d13c56a031fea79c24a4e125566849386c4fda90ff0" + }, + { + "href": "./BU23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220069087fdfae5c23034c58f8a5ee2e02ed46eef7724d858c12c038ffdfc2e87b2" + }, + { + "href": "./BU23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f92403a71c82c52e9ec0ff41c6cd09cd51bf176e57dc4139b89820b713f3b4f2" + }, + { + "href": "./BU23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f7faa8b673acb1d83c84821be60c044d15d4114e4018f283a9bfeb37a86e13c" + }, + { + "href": "./BU23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c603137e4a5a72af891b7627981cda13983ad6cf9f18467f17269034d4a2006e" + }, + { + "href": "./BU24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208eedb8a22d0fc0980490d216abdb8e2d0b9d29595836b63791266e64aca9b43f" + }, + { + "href": "./BU24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c69b2b22d6deedd35b868ecc8a2f029677789017035b36bd72c19eb3acd762d" + }, + { + "href": "./BU24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202e23fad14eaff57167a318f55f2f900703f4e537ebe82316e3d2afcc5d4001a9" + }, + { + "href": "./BU24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8a3656baff5fe59f711c29bb971ee11445a744e099719ce798c4001aba373e2" + }, + { + "href": "./BU24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a98e91261a0414aee0f101f9e8cd9ec7ef967b224bec5b8df5e8f6db5f74ff37" + }, + { + "href": "./BU24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c909b6f9f132584e5f01ab805d04b7bf26089ed99a93e19d3f6ae13d0e943f2" + }, + { + "href": "./BU24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d23cecb09f8469e3377a8dac3c62376f671c4cd902c6f5b6435fe4ad62e1740" + }, + { + "href": "./BU24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c8e822b69e4fd8a96a364e4a19f503a174cdf0584dcc5396e4d3fe58bdb9142" + }, + { + "href": "./BU24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b1ff0831525ca86d49e68145f68aa02efe5adea0e8571d31cc0162e69efa5782" + }, + { + "href": "./BU24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5f030d4218b0ce4f3bb5ed96bf4f0cc1954b310e5be73b9e46715522deecb32" + }, + { + "href": "./BU24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bfe84510975aafa83769d4e66f1fed4e43a9691835937921f983a256b5e37a25" + }, + { + "href": "./BU24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039cede85308833bdfacbb50085f2a43ecd35b861cb20f6f8ddc48d5ab39f153e" + }, + { + "href": "./BU24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023ac50790c1e171338b3c855251d3674f0b06b6ddf93b1795c1fe87c8a064c1c" + }, + { + "href": "./BU24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209275903fbb1facb7fd343da54c2560c663a09815b092a4abb4b7588cf4e00865" + }, + { + "href": "./BU24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007d546b9af2ddeb70538b2a94aecd0b76ed94a43fd73385e80026b285da9f454" + }, + { + "href": "./BU24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a885c0bff66d02a5991e2d6806b07d41993f1437a4dbab5a7332dcb2967b2b80" + }, + { + "href": "./BU24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d3ff411e715f55713f0b3539e1f35121f34126e4a0eff1b16d0c59c718b4139" + }, + { + "href": "./BU24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039dd330bcef03fce50630205fb552fd1aca8026f9966aa8c966d5806fc598804" + }, + { + "href": "./BU24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cc822ed659a195b79a5a3acc27634697c5fe780bce826feaf6fedd4d983b41b" + }, + { + "href": "./BU24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3377c60eaf9c6fbc1d5cfbcf3f5ce0513616485a1736300536e24b01aec2cf9" + }, + { + "href": "./BU24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dfca5233661899c5f7cefc4d832d77828257a43a401a925e861044e850265e7d" + }, + { + "href": "./BU24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddf3100ceb0d9d7675d7f82a67df8b19265431493d6354de69bc8ac447888f37" + }, + { + "href": "./BU24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204879e0d57a559f0cc4e6bb400428f8486256afb725ca2017a49d10c7498cfea3" + }, + { + "href": "./BU24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b713daa009b7f7b42d3faecca6464bdf6d1e33de6d80ce7fda2220d9d7d64b2" + }, + { + "href": "./BU24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb15a658e6f49d8c6f05e32599a8c3ebe4dbb444d4b493d25ea7aa6ee6553508" + }, + { + "href": "./BU25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203f4da753adcc5f9cbfaa9fcb60e7529b8ba280aeac10fe3b0fe5a993f7c313d1" + }, + { + "href": "./BU25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017e33fc986e7ed857bad9d28afabdfce3c734b0be3704a5f9b0dd00a3823846f" + }, + { + "href": "./BU25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209eb76ff06fbc686d9f673990c32b9372482771a2fd4191d4a44b6c230d66e184" + }, + { + "href": "./BU25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f834bfcc82f62f0fa19bc805ea057d0d52859c66783cda5ed94ecd1f869cd821" + }, + { + "href": "./BU25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208dee6d320d9b393866e47bfe0ccd41472fd926018d1b908498df94e32ffe9026" + }, + { + "href": "./BU25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067721063143ffe2cb9a76e7b912685242ded536c31efa357d9f77d3ac4acfcde" + }, + { + "href": "./BU25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122029cc8adff0f94ed358affa1c782d6794946b610fbf05e17cc4b1741571e29ac0" + }, + { + "href": "./BU25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220219884756768817f50779a3a082c48dd7c2941fb8049e02ba68894ef01de6143" + }, + { + "href": "./BU25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220808339d58820ec62d43e4b07904e28e8bdcb5ca4b6a8de937c8b0116059cda79" + }, + { + "href": "./BU25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013489b0f887edcfe733f8009f1d3ee6b0571005a9165cabca2703f8cd7708646" + }, + { + "href": "./BU25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200334feb1eac6ca9b68b7a6d6a5e5bc2914d19d6b7b9520294f811df4094c2075" + }, + { + "href": "./BU25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034e5f2a3cbe8f66760a551b9596b384c5b0b29ac8b88b158e2cd35bd038a18cd" + }, + { + "href": "./BU25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e37c13088438e03daca77454b342f666afde0631c5eb39133b665667451efecb" + }, + { + "href": "./BU25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7316a952be0b3c9c9100b9225544217fab31b5286ba6ec49f353c193d0ec56c" + }, + { + "href": "./BU25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203f67c0da950c21f2b98c725fb53a94983fe9d2b785e128aed763912efe858235" + }, + { + "href": "./BU25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae3ef3592b80172eabce3279ee3ff28e04270ebb36d4f1807b67e21ff972b8b2" + }, + { + "href": "./BU25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220731879646b9a90e3003db5ae324c5058cf06777e580f1a06f7740e56c036396e" + }, + { + "href": "./BU25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1d9ac9783b2964eeed091264640403969088114ec128b2cc9378f17d0a931d8" + }, + { + "href": "./BU25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d84a772a66497abe8df1725f62693ea91f79392f64b32ab16eab7a1cdf21d71f" + }, + { + "href": "./BU25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db3a29cd398ec405e64da9ea34936ab35f22610c1ae34d9798427ca99e693107" + }, + { + "href": "./BU25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b1f0e5d3507707b9a3233ad0f2b3caf070eefc6172ebc761b0e206dc9d5d09cd" + }, + { + "href": "./BU25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e0a076394dd2dd9e3e9db2b1cbaba89f4e254fa6011431e7f45da8c1ce77582" + }, + { + "href": "./BU25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af40ddd366f3f7ec12527417b8355db4621bf7bdcbfaa17333dd64c4b59e2609" + }, + { + "href": "./BU26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206260651f5cba60830b2ec3c4a768ef192ead383bda9f965721ce4cdef22bba1b" + }, + { + "href": "./BU26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202dee03bb7cfea0cb246fd1480464997e8a45553cdc75b44322206e03fd998c6e" + }, + { + "href": "./BU26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9d138264f92162ba570abafb376b65895f9190c748d40128537625b0766cb55" + }, + { + "href": "./BU26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068db9ffc1db5bacc5574042604ca0ccef3a2166230d2522ecb2a5df42d3b73c8" + }, + { + "href": "./BU26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bb1340aeeba4702edd4b460a27f1b861f12f3a26941eb9a9844db9d299a0a0c" + }, + { + "href": "./BU26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122098b0077f946672880a38d20d47c441266da02cd51518e8e036125eafb7553ea2" + }, + { + "href": "./BU26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0265badd47dcaa318ffc25e6d23f6818f6c7153ed2fe8076b5c158b84b17114" + }, + { + "href": "./BU26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087029e0883c081668539144e0b03e2e76e684e52cf516d8f4e06c2f834c713cb" + }, + { + "href": "./BU26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ba4e5a1d491c8f559bbb0e29ea0dc8334bc3459d1a229a70299ec4a9c43fede" + }, + { + "href": "./BU26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c8192545056a7c07ad63442bdcf9681ccc4da2ca443f5e2e219a77860ca0aee" + }, + { + "href": "./BU26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058ddb5700eaf69774376c50dbc7856e8313b55b0db403d518b76beb3fb16209f" + }, + { + "href": "./BU26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb77cbd39b997d44f29e9e0ca6878a17c9a0d4e8ed3f3ec15e4cb524bae76f7a" + }, + { + "href": "./BU26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023390e36d8dd3851bbf94bf80b665a4ee5b666273dd589b66fbdd0fead3e8fe4" + }, + { + "href": "./BU26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207df3cb56616b39445af8184a38276ed16ba394e0d56211b55b740eeac1af5e79" + }, + { + "href": "./BU26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5b40c966a8134ebda117c21677f899f81e6aeed852c9116020cf2b8a1fe0e8c" + }, + { + "href": "./BU26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030c3b94d3557643999ee35bfe556dfc5e577c82fa4a87828905fdec476179418" + }, + { + "href": "./BU26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122048d610e7e37527dd0a6def3ff61ca0040a7561151cede9d7689107ec30b21975" + }, + { + "href": "./BU26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c58f3911999aca215d0e2949f0999ddacf3c4259222a380d3fcda072d79d29a7" + }, + { + "href": "./BU26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202301703aaf195eaa9f3b5fbc96a1bebbc4cbc79acbe9622eaea7bcb2c4bfe5cc" + }, + { + "href": "./BU26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a5fec28398e4f1cb48fcfb02b9217cc8bc7d740f5e0ad801a29f160bde6f602b" + }, + { + "href": "./BU26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220859ebf2d340768788ef4052acc8f3a80b64e15de94d3486115cdbd0770b64527" + }, + { + "href": "./BU26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a448edb2d8b5139ba3cdeab3c86b489a8b725191aad494d8c8c7846be966dead" + }, + { + "href": "./BU26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fcad8d36dfe5529194a137110c34f9846217fb908d1b41a28d27b03fdee5d91" + }, + { + "href": "./BU27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcecbda9c5127a83b729ffb2db7c1719953e51a91c5ab80dd1ff227c157b240b" + }, + { + "href": "./BU27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec37b7226df03ee48cbd77bc6c8defe86fd2cb2f445ed0325f20189395a93ea9" + }, + { + "href": "./BU27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b9fa2265ad9788318bda5788c27213b7071f0b420a10ad3bfb98fb1f1852a757" + }, + { + "href": "./BU27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071c58ce58118e4e7545ecf656a04f89b30925eb6e0e7127b63a2d9a1e5471714" + }, + { + "href": "./BU27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e625766628eab1129f9a496b99d472554715c80a8c4e965920881e07ddf72766" + }, + { + "href": "./BU27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e56a7d7332cb163405a6ce7580cdaa1e4a09b030fb64e46323a8f80f1b7194f" + }, + { + "href": "./BV19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095da360db31f9c70a376e382524c33d323f42c39bf30ad057f6c4a0697cda9a3" + }, + { + "href": "./BV19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c7a2fccf3293055e315727b50e67aab698490a22f0aafa63dd8455847f3dc2d" + }, + { + "href": "./BV19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c79e4f911d4c8e793679d4f7b0812332d5695e4d089b886192f005bfe63ffc8" + }, + { + "href": "./BV19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015278a4c7b0668b89cbd6d85ac25dcc9f8ef268b72062e56d62aebf6d45a02f4" + }, + { + "href": "./BV19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207397de01a4cf45a436b15f626c439a32d8c30cd2b62a0d8d2cd6d6ae41976a60" + }, + { + "href": "./BV19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d70a6dc3dc4172b5117a3f8efabece8cc1f380c15bb16e0f83ac250a8a01fc0e" + }, + { + "href": "./BV19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220331ba3dcdb6296d1d8231240ab8a435365232b54d5176dd8e9dea70bade52d43" + }, + { + "href": "./BV20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f079b360981bc7046c55cd42f1df2e2df89b06542ce0a3d1bee0222c3faed56" + }, + { + "href": "./BV20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220606da1a56a70b8edefa0b1fb0bc854f76d7ea8c51bba7c085311fe47534923f7" + }, + { + "href": "./BV20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fecc22fc007644129f50de16b8d1acdfd4c9ef91b2a33357a38b5ecb755064a5" + }, + { + "href": "./BV20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204bccd6b1c13387d1454b59180df3575d7992f91ea556eab5fc3774a6cda07189" + }, + { + "href": "./BV20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c55629cd5b53fac2a18a675b74bff200a7752a646b01ae9255a096cad7c813a" + }, + { + "href": "./BV20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204415b1a3ee448f0348350104fc8f81f423bc3331914255ea3b40f18c7b50add6" + }, + { + "href": "./BV20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad5e730a3b14d92ad076533298b113f1074906940a74e2d2abc6a962d2f36a64" + }, + { + "href": "./BV20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bfe33c888ec2545ca6c9fdb4e406fd1b5ef2c0aab3abf3bf47552db298d8f4ed" + }, + { + "href": "./BV20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122053d0c673eff720fa6144c6b8b76ae648902b69768d93bba214f2ddd427fef76a" + }, + { + "href": "./BV20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dfcf2ec3bc742d885fecf46c50ea1d445db26d193c3f3238c7e3cbedc1d700c" + }, + { + "href": "./BV20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209583d646f878be7dbcf7a5c591cc3e2f51e07a856387e2426354cd8c7a43b1d9" + }, + { + "href": "./BV20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dcc35e9c60aa2a490bd1108480e4809f0227397d99e82dfdeac2152dda0e8b36" + }, + { + "href": "./BV20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203981ccf03da755fdb58ac96fc391a6bcd5e095c2a135c5529da70a0f4279caea" + }, + { + "href": "./BV20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcdf291e84cdab67e6d8a65462b71fb5b6f5e7e5923ca2679264ed8ff4ad41d2" + }, + { + "href": "./BV20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206225eec8a9baa7b0751c79c80aed588e5c329a8131352552dcce406adbaada31" + }, + { + "href": "./BV20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b4990ac4079015ec9ee5f68fa582e79b976c0a16ac3fa271aa1f40c73cb8f37e" + }, + { + "href": "./BV20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089b26008de193741888fab6ef07b42b22cd5a7a66b468d1e4b5d8d2fdb665858" + }, + { + "href": "./BV20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201523891bd017dd0f7b97ac14df0b904051e9cfb99059861227b4f63269b158e0" + }, + { + "href": "./BV20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d01abed6ceff279274e283643c9da6757dcff2d76f6728eda729ddb4f86a7147" + }, + { + "href": "./BV21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220170de939b26955f180d5f320d1a4395218d86d7490985357267a04f8697f9790" + }, + { + "href": "./BV21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033d4bf4d9ad7954d41dcd5483b7cb07f283209375df641ec5d41f86c0cecb98f" + }, + { + "href": "./BV21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c3f828eb87af944353c06b4ddbeeb8d3d0629a03e3f407599d51cabbfec4ae7" + }, + { + "href": "./BV21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff0d579ce2dfcf3816fb9c52ce0494e3ef54b2863e15bca6da0f11bcbb53cb06" + }, + { + "href": "./BV21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5b6bf88226f163ec94e1befa08e27e95aed6c6e58506a37e2dcf8172a10ece9" + }, + { + "href": "./BV21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220414081e1399af40f37e543f8d7c0415b910860b9eca31b3a3ce55e307699865e" + }, + { + "href": "./BV21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094e32cde610a9739751f49da8fe499b1551e7a386865ed681a03f6dda8ddba76" + }, + { + "href": "./BV21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fdfec768a8aee167817b221cfefeefaee03528aa6cb715ff3f50a1765dd70ee" + }, + { + "href": "./BV21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220890f92d4702bc300c9ab7eea2d21f9805f62237e0884af9d4b57f8d060b62a1f" + }, + { + "href": "./BV21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208eb6eea7dfb887c665745153e2c189b0cb0e5ad4545045a1fd6fe3ec4581865c" + }, + { + "href": "./BV21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058ca5fbba7e812f86b8b3aa68b9958828536435476ee3f342afdc81878740a57" + }, + { + "href": "./BV21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062f7ad1f39f95fb368ef904cc10cff06cd9cc70debff2df68e63be3a84e9352b" + }, + { + "href": "./BV21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db8dca410a67603c2a6e7a9bf6c3aaa682a56d4e784a0adc101558063e658a22" + }, + { + "href": "./BV21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ecf1fa295f091bb30ab60a2f3c7c10c71368d2ca46b8c5e2aac17b85168c57dd" + }, + { + "href": "./BV21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013c587ef83b69f766d84cccc5b14615b36ad3578402e6131cbf32183e3cbbef1" + }, + { + "href": "./BV21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc963a2932606e18f0c3f76eb6c5ded87962fcc86428380817ad7addbace012e" + }, + { + "href": "./BV21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087c7efd38d140242c03c3251173b9e2317db10714da3882a4196c66a6402f7c7" + }, + { + "href": "./BV21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087bd4d7f4c88e3917d0060e848eb5ca834d189a5bbcdc80884b2e52fb8534fb9" + }, + { + "href": "./BV21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb5e487d381d9bf77585df8cec8a9bd370f877421248137f8ef598c1a3a41809" + }, + { + "href": "./BV21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2af3fca5d3be63b313a8f21bb6e2440b9d07ddd018d97603056482246123e31" + }, + { + "href": "./BV21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204828ea0ed66b275fcfa5f7e7f6f7d3af59f2a50dc4d1b14317e0930208b3f6db" + }, + { + "href": "./BV21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de6fdd8d7c0bf6035566ee4c914fc74e5cae9b0da334e685cb2bb7792303c4a7" + }, + { + "href": "./BV21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203f60303ba6a98aa7702645ffe68e7dfd324234e0d1b4f77ac94afcd7148e2aa1" + }, + { + "href": "./BV21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204afdcc287e818d194d9f721cae0a8f6fa994e0bd7f50c3de636d8667b28483b9" + }, + { + "href": "./BV21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012d4339f43dc1321bf2ef79b974864f512dc3cd5a1457c2abf028d1d8de5e819" + }, + { + "href": "./BV22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087573b2ee42e0581a0ddcfbdb00533b8ffa51aaa70895530c1670f345f78f459" + }, + { + "href": "./BV22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203abcd2235c4ff83dc8a2ee0e147ba5cd522ab1b657d115c9b0bfb2c071ecd909" + }, + { + "href": "./BV22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007bff41c0aaa4c4132888c04a3aa8412f9253d2153b0974877317ff13e7b3f30" + }, + { + "href": "./BV22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e91fb157d3f71faadd900467e2f197a60dc3b0f601bf48a10781e88ad3806175" + }, + { + "href": "./BV22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220992c76d361ec41f56c1366e40b7de3e72db64e600af15aec48c0f5b69ac59245" + }, + { + "href": "./BV22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b7c5bebf5215da843b77176aa51f3f4a8c97af8e5fce447c3b91a8084533f0d" + }, + { + "href": "./BV22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cb0286803314c31119425718447995cf6dc21f689ff5660044fdd6d10adedc9" + }, + { + "href": "./BV22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8500c60c7890a56d5d1ded29c291fdd52fe9f12d21077e85a6bd1a3ea2a953d" + }, + { + "href": "./BV22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220deb98779ee2487a053f834a82274ebb5a8753c853cd3346b8d730f0fffd0d4be" + }, + { + "href": "./BV22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b13f8c3fdeabb1305a8334678950d2e447d6ed2a995e195bf0cbe115fbd442a2" + }, + { + "href": "./BV22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b530ee803251e9b213a5b960f71b460152273c9e20030cfbec140e94d713dda" + }, + { + "href": "./BV22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afc0887312198d29b68898b8001270e89f10364df59fdea5466206835e4cc0b4" + }, + { + "href": "./BV22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abd84b58e05884f96fdbc8e07791df18ab4ae9d976c134d9aa400273a2308292" + }, + { + "href": "./BV22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b53c2d3bf6f9ca970e13db4b39f57d3f142578290f73a52581df8c9c0a299734" + }, + { + "href": "./BV22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0d46d331fc2efaeede42b61b895ee20a781ebcbbc8a8f87a2ced06d73da0c32" + }, + { + "href": "./BV22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220814452367bbf20880c803f0c1054f6cd9bee275b3b27af06e320b8f7e5897b6b" + }, + { + "href": "./BV22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cdf1a3d41c535f42fd568f499f1459479ae65d6289fa49d386712bc65ee71f0e" + }, + { + "href": "./BV22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202251241cbce867d4cafa297e424b4a684236ea38f70279c47c0a0ebc0ddb9515" + }, + { + "href": "./BV22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220edf57d886a725977f1d03ac574358808594b24f270f51e06bdc48c8c2007379f" + }, + { + "href": "./BV22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207208735e78bf6050708a68a6b0858bc7fa813315bf75568db12186a4d37a0728" + }, + { + "href": "./BV22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e20bec894c8e8ae59a1588aeb545952e794c7a998e1be2ea975b87045aef166c" + }, + { + "href": "./BV22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204aef1585dd483bbfe20722e10fa52e1d7cd9434026d1cbb79ed8797ecfa69100" + }, + { + "href": "./BV22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220282294458c3be1c9a0088991f374c02de578b0e4052af68c8e8c5d540e83e471" + }, + { + "href": "./BV22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220398a08fdcecaee88fcb57cf32557746ecd433b629f234b2128df675d4f1b84a9" + }, + { + "href": "./BV22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220074c5f6318f6e7599105ff70adda569c23ebba0c8f914cb022765b2e31e75efa" + }, + { + "href": "./BV23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5481e7b51bcf7acc9ac1bf7850a3a87cc783e1f6d254ec0042f980227119c73" + }, + { + "href": "./BV23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aecc6c56eebae72124c72a1510a7aa702c4b687209af21cce6376f27d10d3923" + }, + { + "href": "./BV23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220921fe51895a4d85185d34a887569168bc79e463d0e1c370036db1a4d48559c2a" + }, + { + "href": "./BV23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a2b3121f9e10d274992b5aab8bd692951ef61a352c04127be631c06b472bb13b" + }, + { + "href": "./BV23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f915c0155b74dda8b2efc51f1953722c5e21a09a877291a2fea35375f3bef43b" + }, + { + "href": "./BV23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220deaecbc01c3d929e3bb6e6d73c0f0577773011b9a8b645003820f04beff35370" + }, + { + "href": "./BV23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0860308a3403ee718d027b5179dec6adbb1641941ffaf529a0032736ed88b7b" + }, + { + "href": "./BV23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122046829c7d0883aad24746f6669842a082254e70494280d57519d2754adab84217" + }, + { + "href": "./BV23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c849bc223865f42c59bb43110f39ca2925153192f43e08e0b3b63f1c7cf6c52e" + }, + { + "href": "./BV23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8aaa534c949bce0f69f7c04de0a2e8c49372d60bdcf01a1b5a02366f125d502" + }, + { + "href": "./BV23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d670070b17a2dcf2e227ed43c7dd2f0b5f7af6d1d0772250a01200cc9bb28bf" + }, + { + "href": "./BV23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b132f0cd4c149206e22a6f8cb7501bb3a8463235c11517394a5365e339fccffc" + }, + { + "href": "./BV23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f4b5973441ec56655897ead30d5801e3b2388cbe2be2236048a4e405f8206bf7" + }, + { + "href": "./BV23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028a642a7504270e2bce018c745c3c43ebebea31fcebd576d821ca631eff10eab" + }, + { + "href": "./BV23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9cb753a6867534274aae5f8ebedd4e93a5f9a97b03c63885914ab59a07680c3" + }, + { + "href": "./BV23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eec78d05f8ee89cc5639030ea8c6961e70f6deb518fb9ec8fa3f1816de293798" + }, + { + "href": "./BV23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c84524a5cf77009bf2f314f603cfc7db0d9e147fa48654dae23b3e95a9299fc" + }, + { + "href": "./BV23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200caa8d014b7715819117dfbdefb3c90e1e4af148fce2e9d1768400316f8b8011" + }, + { + "href": "./BV23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209cadab21713298c557901f352f3d5accac0de1a0e9945527e837f70bc2713c78" + }, + { + "href": "./BV23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1eaf124a9bc457e4eb88c390106e11a2c771f4a98da71c85cc1750d619a0ddb" + }, + { + "href": "./BV23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122048bc6be575104279a8549b54a6094ac879353b8d853b284f6aa4a7c65980f6a4" + }, + { + "href": "./BV23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a08afd8a2e8899dbb59f60cb6041f363df966a835bb8cdcc350801c597757c1" + }, + { + "href": "./BV23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220903cc2970ef7a57a146d254437a998789676fada199736671c2f78c80f9c0377" + }, + { + "href": "./BV23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203ba43cb32d82fa71e477dcf6f869fc653a642c181765201d972784159134f4a6" + }, + { + "href": "./BV23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a48f787b3d2c0d2ef03262157196cf14ef1a93c3ed71ed855b2aa2579f105bde" + }, + { + "href": "./BV24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a157d8b5d1e1fa87024ed5e2514ce35c68be4e9d4c2de969b9c6cde3b38849b" + }, + { + "href": "./BV24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208158e3de473ac60c0b8c39d0df73c8e812c4f4cbd91a7d2dd8f7ea1be0641b5a" + }, + { + "href": "./BV24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122000244fd3173e0727c92b60b29d206d02451e23be715905db020f0085e21f8a84" + }, + { + "href": "./BV24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208aea36228602579432f23a7a738db0e11eab6a9bb525c450d7515fc068327fe6" + }, + { + "href": "./BV24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024bd4efc5a64ea7c56bf95dabff91d48ad9bc349d286b6af675d780e6e48201d" + }, + { + "href": "./BV24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220103ee2438d38bc4e287a75699fbde04a2f12f38c0a757f44ec7d041e34dd7caa" + }, + { + "href": "./BV24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202870addba771b0334d1abfd3e886cfeb103de058365aecf0b2744ee9fcf52b3a" + }, + { + "href": "./BV24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013d3f9973b2e83a81e886f195416796b288ec7a59effa18c923dc77c5020b96f" + }, + { + "href": "./BV24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff2d7dcc967eb170c6af8101bc3da02cdb708424a87180ef1b9cf18c9cbe3081" + }, + { + "href": "./BV24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e82a7c4d28002acd0475a8a94436e6f9da524547efd23e46f7e3cf61629018f" + }, + { + "href": "./BV24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d3978eda01136a246518a890fc5194a9b0f832a2226bc0360a4e40941df1020b" + }, + { + "href": "./BV24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122016c31cf61a6243f2061be4626610279feb409378d9b10caa53a48563b165ccc4" + }, + { + "href": "./BV24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064f286c00b7708e07e5d1699f4ca68a33209ace6212cbf59e4da4e0c6bd7367b" + }, + { + "href": "./BV24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c60620b9aab77875c11a3bb0fb6f9b0a868784bdbf8223202a32172d99332015" + }, + { + "href": "./BV24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d480c995cea2dd361f8b5d5a29b5770ea0d7627adaa682a1794262eedb2ce410" + }, + { + "href": "./BV24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207515c94e5028252c819a547146acab3f1ddfdba95c3f5e2ddfb5f6da2c1d6e4a" + }, + { + "href": "./BV24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa4dd3680ffd9531693f2c90709450330a648c4945c4918f9acda51300e889da" + }, + { + "href": "./BV24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a50dfae09dcb9544c833ce3ec38ceab64f229767a2e25e425c3af4243240a15f" + }, + { + "href": "./BV24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ffe3f1fb562b6e1c6d6f780485c5b60fe56be7d71d45c2c88fc926d3cdfa73c9" + }, + { + "href": "./BV24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b507592eab064f399b498b8c1107d54dadfa5cbbde5b8a728b95f39ccf67a3a3" + }, + { + "href": "./BV24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb121ab6a23dcc642e7530cd0ba571a7b9544e51b8fbdaa64c63add34b1499ff" + }, + { + "href": "./BV24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f847024e6569576f16572f44b0aa345fca66164137e90005697779c382edacb4" + }, + { + "href": "./BV25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206afabf96e20b4231f75cc0873a16895bb489fa8578ef8c7e9aaba8e1962783ff" + }, + { + "href": "./BV25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a80ee8a2daf2b688b012ea92b4f9804913deee816f8ce26fcb89b74791bc38b1" + }, + { + "href": "./BV25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036a3a147a97935e480c0262a29dfb631e15ec0ee5a77859eddd51c0121fcbb23" + }, + { + "href": "./BV25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024af95ccae3a6def17baf53bc334f145d5baa89022b09e84759e320d455b77bf" + }, + { + "href": "./BV25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f0b4a38f37572151498b42c676a40884795f8f036750bbb118fe6cb64f80736c" + }, + { + "href": "./BV25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e80977a76f4b0c2af2b131cfd325b7a216354a07585049452c84958e0147ffd" + }, + { + "href": "./BV25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c870a28b1b2f80928c4969a399f01e1814cd08b6a404fac42bfdb712e22d760" + }, + { + "href": "./BV25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023d5802598bc58d4f96054cc90bd4314c41180f553723ae589694da5d4783ef9" + }, + { + "href": "./BV25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea419fc26cbc319635003fcd95b9e95dad515b8683b84ea155e312f8cff46043" + }, + { + "href": "./BV25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c411acb1eb4ed594c8349bc8eada8a7ddfb1318e4d42ec6ae3a14e4cde4affa9" + }, + { + "href": "./BV25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df4cd747069798e7a0e27fcd6470e2c54cdc605095d424906185f009a1b9d5ff" + }, + { + "href": "./BV25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aae2361e5ebd98c7947036dcd058ef1f1ff76e922f6e81a36f15b9082809fecd" + }, + { + "href": "./BV25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122025353295075110a345890d009542ea6fb69decbb17cd2ab9ef90c89a201d3ee3" + }, + { + "href": "./BV25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a248455bd76f145acd9c51ab3dbad9938c0cc9c751356f6dc47483a9ca4a539" + }, + { + "href": "./BV25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfc5a82b0286a3099d95f52ee427ecb34e406b114477d93ec412135d9aaf63c8" + }, + { + "href": "./BV25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012450f2cd6d6d25497279f5565f1525e3e2186a06aafb3328c269aaa07578681" + }, + { + "href": "./BV25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2e8f79347c4b66123f8a6b12e66ff1cd6b006da3613f145d5cfc9bdc14f1b43" + }, + { + "href": "./BV25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208ad14f93e05d2a5479b43cc13201982c5e0c921509f637a651a92d663f3059a5" + }, + { + "href": "./BV25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204e341c13e3855ec17d7d22b7f04bb00cb9d701c4dc6a2af1c85481ae44aacb5b" + }, + { + "href": "./BV25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205544238ac27f9d92b7076be5c25d6a62aafe675aa2077a17e3d126de77d4a35b" + }, + { + "href": "./BV25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0c692db05f6f8dc70e810e70b4641f4852482055e2fe42c1d0b7ad2400707bf" + }, + { + "href": "./BV25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220473c3c696e4b1fc639d684105e325dfb71282b0cedeb39f5ff8bafe74a8e5f57" + }, + { + "href": "./BV25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122056fa83c7721a7e94096a4ca4c828bf06ee487a13b5ab695cab968c630613fc21" + }, + { + "href": "./BV25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c39fbebeac5c087061b643a2ce8b866e2d610da91a6ab6d07704526b9cbfd2b7" + }, + { + "href": "./BV26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e73205019aa05e0a94578771576c30fded0f86acedc47842c5c0579a7782d69d" + }, + { + "href": "./BV26_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203fb787fff504e07fdf3f0bbbb1c48cdb32dafd9a040314acd1e35ba3416a72a4" + }, + { + "href": "./BV26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f4e2923744d42ddc9dcd87df973fa9ffc13c901c3237a3b82bebe8bdd107466" + }, + { + "href": "./BV26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d8888e8d3a1a88670bfb9956bb66183187d74f57b4bc9eb352fb05b55f991a48" + }, + { + "href": "./BV26_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220966a3b5259ca3167ec08ffdbd55d68fa93a999e03e06c3130912913486f98a30" + }, + { + "href": "./BV26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204f0502e8d9f9707591ad12c3134c902cd2f9c6bcf88579d242abbbfc97113018" + }, + { + "href": "./BV26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201686060d6ce0c4db6ea54d7d1310976384608bb2e269df057429f93bdd42a227" + }, + { + "href": "./BV26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c0311ac43b1cc1dde90ce78d35b158ef0bbefcd840374cd153a9c6d4b0295817" + }, + { + "href": "./BV26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220699d711c15578eed1e53b6ad035a3c045c873ba5f0bc0cf41f35ae154a1cd048" + }, + { + "href": "./BV26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206287506fb561f46679cea9fbf75903e680db40447da577e6ad77c4e95e3cc86a" + }, + { + "href": "./BW19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202937f5b319066a9bde9299b41393582caa57ec779db020b4bc00c2db737605ef" + }, + { + "href": "./BW19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206735d94d71d64848e6d5d4e99465b0583f98e25b7c7b37d3be2c5b99cfc9387b" + }, + { + "href": "./BW19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058d98981552b6e70241f1280a8ab47b5b7c61a28ac6dfca6a75cbc2c64a93952" + }, + { + "href": "./BW19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202415b7669448585d93813f37a325ac71266219c5f6b280b4f26b964596d7d521" + }, + { + "href": "./BW19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006dd81fa845c08db8179de233964fa26195da8418c7d878252c95bcb8ccd7c4b" + }, + { + "href": "./BW19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206aad2069f1ac926531d2e3d5317f463a64a56cb5e187edaba59f99cf5fbb298a" + }, + { + "href": "./BW19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220035cf791dd7bbdbdee6c91302e4d62387e296925690300ab5244f5e4ee3e0eb7" + }, + { + "href": "./BW19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e2243622daa126b55afcdb826d966c4498b45d51c09f88a8e22028f0cae1360" + }, + { + "href": "./BW19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095a6e596cb82e0f33a7cfe3104bc5c28655331688381acab72e2416080cb7899" + }, + { + "href": "./BW19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c7dade27b7b1c149126ea77807679373178f6bbf725c5937d6787b1588f52d4" + }, + { + "href": "./BW19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af08bd9883d6168e1c7a5a371d89b21fac2599a18c5d8d1003225e60629fdacb" + }, + { + "href": "./BW19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220497d2da44afc35012d35324d8c11f8cb54c7c269459b958ded4273c4d872d325" + }, + { + "href": "./BW19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7de7fbe1f0ff5df07f4c833e14beebcf52a92589ee853ef12a21352fb597740" + }, + { + "href": "./BW19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8f4b44328c293698c4c52be080285e50c1698f0a0a90463cabce30fc35c4d4b" + }, + { + "href": "./BW19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddd866e09ada231aadd7223bf7ea6b9be04f35eab2b421565eafe607707bceb8" + }, + { + "href": "./BW19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d70f85a6566f4119dd64f2e0c93f0608f3bc311a405b1eb118c54b703b8897a6" + }, + { + "href": "./BW20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209a9ab518604aa2a0e8c30afc8c7d038b01f16f4549ed9fe892cd62dea760d081" + }, + { + "href": "./BW20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c26b4811fb4d86ee78d040a6ea8537263ffc9e1b0cb0cc59523efe071fc93040" + }, + { + "href": "./BW20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f302ab789c8560788049b116de980e4ef647c5c512726fdcaa8c6ed0c908e977" + }, + { + "href": "./BW20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201bb03676b0034cc8ea6a5f1af8671726e709e08ae4ae41bf812ee02fcaee78f6" + }, + { + "href": "./BW20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061ec09873a2da4c75f5d42668b9c3777b86be9c824dc2076cfd43f7ca70c07f6" + }, + { + "href": "./BW20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee277f243d30a06efb7af5537e08c9bd553b88f31cf83706581aae3b5b402142" + }, + { + "href": "./BW20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084d7c9705733e14e336cf3d485993d2326f646e06bf300ad2f561dee4657e8a8" + }, + { + "href": "./BW20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d81bc75a0e1c129f60c0d9aceded8a21a73c7801d0505277d6e5790e822fec7" + }, + { + "href": "./BW20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204a864e60462de053f88318a5eaed3627cd4903606b0e83f71450b5967e477578" + }, + { + "href": "./BW20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202abc975e85ecc96d55fb29d25bf88f8283904ac2f756751a5377644a2a406f10" + }, + { + "href": "./BW20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a9f791127dbe2b9a6f6f43a8958333b567a75b1a02b0ac489c21e4d85ea5e8b" + }, + { + "href": "./BW20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe81e3052baeb169933fc5549a0005ba8fed3186620b7b83b34fe3da024fa229" + }, + { + "href": "./BW20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4fd06f447b0092110ae12a121fe9af9c1f078cd5930efefddbd55828da4296b" + }, + { + "href": "./BW20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb536f64528454d0921ac2ebd5192862ea0eead35abbc7e5238dbe6dc184e48d" + }, + { + "href": "./BW20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220813c2926b0adef769610a047b1b69f09ea662a27f80516213184c36bbeb7826e" + }, + { + "href": "./BW20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cab4379ab56ec281942b093b4842eae2922ac09cb5caa3f9c61a6aff673a21a" + }, + { + "href": "./BW20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220815c770219c1d44cc98e5cc0f1e2716a2b1a6cb05d8d36fd6000900622a50f86" + }, + { + "href": "./BW20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080cd67c534cafc927318e213812cacd89e8a18e20fa6ae4d1ce2c4c58aca2e6c" + }, + { + "href": "./BW20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207993feb02fc8f2ab263a95c10e7dfbf334f3ceda41de4687e9fd42746b7f79b7" + }, + { + "href": "./BW20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209a901d99815d0625311fca49a8db7778a6f5c62af07952dee4e19731e2d20929" + }, + { + "href": "./BW20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094d890f5864d845edd62d883dd982d2ae592cce7a6912581fa8e331a02c88a70" + }, + { + "href": "./BW20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206cbef168dd2dc71bd8557085513596465360d6ef6b218d4172b11c7e6c0593a1" + }, + { + "href": "./BW20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220957e81d15e87ee9dae30e534ee8a91a76fda5b18bf28aaa88392c87db73dde3f" + }, + { + "href": "./BW20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b6d434c14308ce5d16a4343b45059b6b28ada9277a5284d1de2921335389fbb" + }, + { + "href": "./BW20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208dffe9b4cbf46cd366882d1d4f8a22dc49dcf42f574ef847f46cec9d593164d2" + }, + { + "href": "./BW21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f334648cfc25fbe9ff26852745c6c58a397d15c0172674e3f064d742d7ac9371" + }, + { + "href": "./BW21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6bf547995c3cf12645dfaf669e6cb47d22f80641799052a25ae1ddb2b80a9a8" + }, + { + "href": "./BW21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe959f0cf329a49bdbcb46831c01826252a87d39832d7ede1ebec4f5262ba193" + }, + { + "href": "./BW21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015bdc86b9571c4b268e7414a3d8ef4581592b57f98a42d9bc354bc0228814e72" + }, + { + "href": "./BW21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028c120bfc1aaa72a9772d2293fb408cb491b294fea9b5d3212fe6a8969a00b30" + }, + { + "href": "./BW21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055990d3326328459b94074358568a78c26e6ab1197ecf03b0dfe661ce3018750" + }, + { + "href": "./BW21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087c94e665327b6a63d848da182afba275f40c7acafba45df10e8b66152b7eaea" + }, + { + "href": "./BW21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205eef654ed18a531077ae59c2c9b01cd5dcb99abc198434b95d678d0c491fac54" + }, + { + "href": "./BW21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff27650c2b74732948f78f9c58ccfd942531aa48bb4850d81129d3ff95cc7f0e" + }, + { + "href": "./BW21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201cdd6cc93674b2acc05c927b4c0d2e3d21e82897d2918cf9ff5987fbaf694726" + }, + { + "href": "./BW21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122074819e4cea6ac2c1cc1488ee504bc5e195c06882e520ef06372a2d4acebc4eb1" + }, + { + "href": "./BW21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122047efa73003e38306d6ffa6a16d340003753aea4671d319ec60cdadd9157fc513" + }, + { + "href": "./BW21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ccbd95cb255a96823b1ff10cc59500b086fe9448e3987fad0daada56b09ae7b3" + }, + { + "href": "./BW21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062e5f5f7f8928c8a100e68dd55c2a3e5bb7c20b42c85dcdcb3fcd240aca3d8b0" + }, + { + "href": "./BW21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dbdea40e52fc5fce7e7ff66b0bcce713747c1cafa46d3532586340fdb747bf8" + }, + { + "href": "./BW21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f41dd60ea06b8280aec795e3ba4e8fb6c68b5f1d40c774b0ec6ae2d800d14965" + }, + { + "href": "./BW21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fcf153eb9f683da9091ed5b72366afb1cc31d407b3b90b8fbab15bc387a4b94b" + }, + { + "href": "./BW21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201dec3aa643011feef2b26991077e1bdde1cd6d7d2ca58265149527f0161e6d86" + }, + { + "href": "./BW21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005c378ec6113593715eb50c63f7953cbd40df8a20979c912b7defdf2544d5af9" + }, + { + "href": "./BW21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b53c2fc8620a10c5751037f807dbe4a908d803ca77e9fb092608177d552daad" + }, + { + "href": "./BW21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209be75a3657eb62c82d21b02bea7fd12db9a5746dee0f2267163166762feaa1da" + }, + { + "href": "./BW21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201fbca5d429e6f726656cf6da1361b305fd2ddb22f4c4b9747377127eb0e0fe91" + }, + { + "href": "./BW21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220982c0ee2b58f9f26cce4d96bebaf9212fa386642a6262a24c184926e476d86b7" + }, + { + "href": "./BW21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076784cfa05fe3e75b74e5f6e5ec15356563656ba426bbdbf0b3c1e56fe8794c3" + }, + { + "href": "./BW21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220629fad76bd9730c16b6b125316def96ac8005fbbce05a8921de953accaf632f2" + }, + { + "href": "./BW22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d2f47beac4823d7938c00e6479ab97cb7ecb1b5c52ea29ac86b2585a82a5da31" + }, + { + "href": "./BW22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039e115b623af9e687863bda7b0170cd9c0864fc4b5849a4d4f14d8d719fc6dc4" + }, + { + "href": "./BW22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d86f048cd7f04f5bac72bce84a08345494c9436ecf9498f68316326d2cbd4cb6" + }, + { + "href": "./BW22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b1836f8739d909248a2de888064eed511d2814d55dd68e8ceff479e4324bad6" + }, + { + "href": "./BW22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122053adba48df890a201a6ac456a93967b3b5617db409e55aaa2f9c7c2b19582989" + }, + { + "href": "./BW22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f05f56f530bdc113d39a26a30c55d03e300dec606f55b285b5db33e4cd977cff" + }, + { + "href": "./BW22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c30621bf1114a8b4b81539807cdd11a2c0505a58a9f7f1e127722b7f92abd33" + }, + { + "href": "./BW22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d06ca9c1368d25f209a31fdcd0bf79f44231068bcee61660847ec16145f854b" + }, + { + "href": "./BW22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b80dfd02c781178be7fe4fc66ce7c49ce2b75f1b96151811fe3c2208c2fdf27e" + }, + { + "href": "./BW22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208880e0c5bc6bc73b61d7c482773482d60be607217edc73fe5e54d2f85a904861" + }, + { + "href": "./BW22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ca9995a64fc82a040dc3c81174190d7d262a5fed94e28c755b24cef850de89a" + }, + { + "href": "./BW22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af6e8ec688a8f10f35fdc200cc23a71964c2eaf7d376c55344e9990ef1d2309a" + }, + { + "href": "./BW22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a820c2e26dc18a3589eae00f8bf1366bf1a99f9a6983db0b7bf2fcc0d0451d74" + }, + { + "href": "./BW22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae249e7d88173169c18cfafa69e59288d51c868cc8148ef0ae65c120d295af7d" + }, + { + "href": "./BW22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b4fa4cc7aa6fdd2352d27c949da23d989b8ec329d2fa1e1d6ea77836e52cf4c" + }, + { + "href": "./BW22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004ed9772f980dee68f9facca9259081326c7c94dc8c65139d0039eed75d5f101" + }, + { + "href": "./BW22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037254dbc27168fbdd0b741c48d8273ea9f37eaee5baf28ca1acf7f121f459a53" + }, + { + "href": "./BW22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082736265be7d88e95a7e322867311720c596ace263ec9233617149f8519f93ea" + }, + { + "href": "./BW22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028e9ad9a4be6912ede07e22812f50bf83c05230e15d147cc2836664a1d33e0b8" + }, + { + "href": "./BW22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d012d81ef044d43d1005fe288a5447731112a9bfbf6ccac8199a7481c1086a3" + }, + { + "href": "./BW22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220407395b9a3b9a423d7b9783ded4057e26e4ab93833e79c6b35ea664f6faae20a" + }, + { + "href": "./BW22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071a049002124158e8d641e08a404f248154ba26d98c147794c6bfcb536c2dfe1" + }, + { + "href": "./BW22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c1c99a8914fe49ebe51de255cd2f1e96cefe872d2ca1c0a606afd5e9e84f6ae" + }, + { + "href": "./BW22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220791c828732f11c8f693852accfe0e54754c975d9caf4e31c7ef01823d5a3e901" + }, + { + "href": "./BW22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de37a67682720b50ecbb1c2b8eaeabeb1ff0c6411b5934662f9121e1fee0595b" + }, + { + "href": "./BW23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea4125bc8ae07dca3f328051674913b015761c16b10327e6a2f1366401512175" + }, + { + "href": "./BW23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f9c257b168cc7f65af7b70958e427b2aa02ef96df44a7c604f5113a18d60bbc" + }, + { + "href": "./BW23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204350926b2f559c05b8a65023f58aba0003524a57fd7e7ff1a0d15df39409d6a5" + }, + { + "href": "./BW23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afc87f1aad5ab4e97dc0dae7924cbcccf19aa012028d4d4a1f67582e0f7259fd" + }, + { + "href": "./BW23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220351a22881941c3f3c4812a0d32019f7e08e0fd34c153c1aec17d8b43c9c5ed6f" + }, + { + "href": "./BW23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220734c0a144e441fcb0ef4ba7ca376cbfd6b0fe81d829db3cc3727cbe5238e3be3" + }, + { + "href": "./BW23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bccc0e958cf3e44aef0da8b0b284b39b149c69d52b97016c9aa24e96d547b104" + }, + { + "href": "./BW23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad268405efd02ebc86e94150cae360247ca9c51ffe251643f21d03edeb7dd982" + }, + { + "href": "./BW23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122029418b699b45cd72e48d58ed9339bc9638a2fe6d38b13ad53dd11c7abe25d967" + }, + { + "href": "./BW23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd5ed0f1eae175d75a538291fc79056a950349c0be76b80bd8a96ddc57f095f5" + }, + { + "href": "./BW23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a76a426fef4dc7e9fbad744d4e78ce6220d30c42c15c432712090e802e678701" + }, + { + "href": "./BW23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c659a56467bd172baaca83d206e20aeee42b9f8eb5e2e14b549a669b635f80d1" + }, + { + "href": "./BW23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200203e0a237ad7cc493867d929ed8356c232e9346bac6d8607879a3703a9ae9b1" + }, + { + "href": "./BW23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c99c1bed5f3a93d580364e058fcf54e9a760aedefa50977c88bef035f3f7f08" + }, + { + "href": "./BW23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209869d57a8e9e126149da05fe1a7fa3f4b15946d0cda52289936df5d19c774509" + }, + { + "href": "./BW23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220958c9d43d8b8bc1822f7e01efb1490d0f4caf08655e712d01d203ff2ac497e0d" + }, + { + "href": "./BW23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbfaebe85602fb1c643301f24f5e236caa33f828c5733b47da0eeba09a029f69" + }, + { + "href": "./BW23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa9bd33caa4eeae31c9339b0058371100499b57261bf7420e93db81a0de4b9a1" + }, + { + "href": "./BW23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ab4f77ff1ac06ccf9eec5440210f9413d6fd007b423f18f88903b64c18711ba" + }, + { + "href": "./BW23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f972523ff9651602a0098bcb69c04abfbceac8c362f6939fa1b3ce64a2fb5646" + }, + { + "href": "./BW23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9d1310e255d681e20780a066db49c276e3b22025776693a980599f3bdc69932" + }, + { + "href": "./BW23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220242c0bb308512a8d72f11f4a0e32bd32a71c19ab2d183b8117ab6c049567722b" + }, + { + "href": "./BW23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202882c866b90589af5dad2ec9e2cc413699c134c5fb2e46f940d96f3deaba6eb1" + }, + { + "href": "./BW23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220173d0a65fa4f082ddbcffb0877e11e8a31bbd0d2fa875e55e928e9794eb0fc46" + }, + { + "href": "./BW23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032d222e227373b22c68909ff59aaa73ce6138bef456dd8c1892d187804ab3739" + }, + { + "href": "./BW24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220093702a89ad9abbef31d7726873a4e77cd2226b9a7b365f43d831cfc615657b5" + }, + { + "href": "./BW24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207bb9837872e10981fc996c43775546d098d1c8a9e1efcf51841faebebcf941dd" + }, + { + "href": "./BW24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e19b1b6e9183fa8494c46fa108f10e07570ac7764f0695395fa3f3caca36c01b" + }, + { + "href": "./BW24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a8bb641bc21946c3fcdbdc89ba9d8b3baee6bc7ca9f1005ee2bb352eafac9c0" + }, + { + "href": "./BW24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209993e6447d6f548277019901910f0dcacf3134c04f6230751d103c08e7e50f8d" + }, + { + "href": "./BW24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f953de76cec8707b0c9f3b7539c20a2d6c583afc41f695e8d35f589df27a8e01" + }, + { + "href": "./BW24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061468afceff31deb46e4af04805ea684bd32160634c91e04468c32740a435512" + }, + { + "href": "./BW24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c1dfc5a12c29cd7f7299447495380ea784c46539f6a4c3d6375db8a346c7fec0" + }, + { + "href": "./BW24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205298e3b2453c50312d6026cde2c7bd0f932e48c0afe32a3df25cefbcca278559" + }, + { + "href": "./BW24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d384a62cc39b50eba25289cad696e8d74559654cbc2a77d4ac3530bfbdd49cc5" + }, + { + "href": "./BW24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2ece70e8831565b90ef15a9e0cc4615c3766425a47dd3cbaf236f909622507a" + }, + { + "href": "./BW24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024838b87e9f11b503741c819240883857df08cc3b3b5de42e95636ad36f783b3" + }, + { + "href": "./BW24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cbd2933981e71a3e6ce7e41bebfbfbaafbf175d2daddfef2542d1332383c5976" + }, + { + "href": "./BW24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4f14a00ae26736201e2e9246661863e50f4262d0cfcf853d952534aa067a569" + }, + { + "href": "./BW24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c94e2619e6abdd29c114ef6801ce6c5d36b59c586a83cc9ee34be881cdf899c" + }, + { + "href": "./BW24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c78344572c81102dbd22efb0ae88955de3b86b3d44b894f0d8f2e3c5ea4d666" + }, + { + "href": "./BW24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c3f1174a7e727e6d919fa7c64750169ef33aee32a9d49574ee908abd1219660" + }, + { + "href": "./BW24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ee78fb485d8391ac9eaf9d090dcedb84e16d883cb15cbe749270bddfba3de44" + }, + { + "href": "./BW24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efd2f4ad06c68783e5a238bbd440d1087ae946412f1d6c4511f84117bc8c3bc7" + }, + { + "href": "./BW25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f05e1c95ff6eb55b4f4c60dc7c1a6d589b4e2a6127047617dd3d94a51d4dc78" + }, + { + "href": "./BX17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d92d5821ba27ef890616dc6e9846fa202cd7d4fac6e4a5fb11ff969264bd6063" + }, + { + "href": "./BX17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209aa07878cc2f0c3534ffa2c8b283d5c8d14af15be7754cc6e49bf6fdcd3d2344" + }, + { + "href": "./BX17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f41370679f4804930705209a4a1e8f39b4a35bddc0139daf364617bca693642" + }, + { + "href": "./BX18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220762813343bfa0d4b5ec64ea58569e76c69864e007de8a1b1a907a0b88f88c635" + }, + { + "href": "./BX18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220089a28633c66e0aa526207afba214886c03bf3fbe9b1eef4fca7b9be4e7d77dd" + }, + { + "href": "./BX18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220383cac100d2861533d90719c69f5814427aeb09c75135c72ecf389abad8c6ace" + }, + { + "href": "./BX18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efb7fceb1cb6d0ce9052a0a889aa5a474c4accea694f1f5db082f8e4e5e0962c" + }, + { + "href": "./BX18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010e755150631786f54cf38b9951e661c94987104b744dd09025142636fc7b56f" + }, + { + "href": "./BX18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201be2ecd539370df3eae05ddfc7a8495c31d91a580c09c293399a02bec3aaf2cf" + }, + { + "href": "./BX18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220955f1cec3574c418e6d304251f7d41f0993c7b5d39db03561300e7afda1eccc7" + }, + { + "href": "./BX18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea93c843c8124319a75a266422bb3887d2067c0f366ad755def86d045dd7e2a7" + }, + { + "href": "./BX18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fd24f1dd6174bc5437dfbb8ed94a8e1960fb3ce656162f700f066d7c72e2313" + }, + { + "href": "./BX18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a17d507dfd5a94129285fd7b680d435b9fe7eebb1c24a00bde6678f1638259c7" + }, + { + "href": "./BX18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068d734ef3a5c508bf95c5e12c8a94408032f0b4344bedccec72c91753d776f45" + }, + { + "href": "./BX18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a43f30d55cd9630e251c360aee3cdd6bbaf11c76b5d6093672062f6e9c403c86" + }, + { + "href": "./BX18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fcff9e28a1eabd0dd2af7b69c1b7086d38742005fed72327af9500191a3eca9" + }, + { + "href": "./BX18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a38ff6cd3ab8573486f52389665aad3a2681cdf1a27bd0465f72151e13db319" + }, + { + "href": "./BX18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d648fded6b4f90421b80d192ea9b3ce303380fdf047ed45b9f98035c44f04c2" + }, + { + "href": "./BX19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fcafd4f89e6ead810e8f028e2fabe80f7bc5fbdaf6c8de411d625c0641d92d3f" + }, + { + "href": "./BX19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208500045038b14e595744041c50f73e5ef507153d264ddf1478ed6cdafe082e33" + }, + { + "href": "./BX19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084aaaeebf5c31622751281e2c62e727621fc1c7e9689732d80ebece9a8bc515d" + }, + { + "href": "./BX19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220853750d7f8472a802336f4c8667de4a10ee576416d0c14947e7d40ac872120fe" + }, + { + "href": "./BX19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122026b2fc7d1851b04b7ac101acf36119286482cf87586b6f40ca724ab0ba74701a" + }, + { + "href": "./BX19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208cd482bfffcf6667531579fdb87e876fa90b4af24654a980beba23b79ebeb1c3" + }, + { + "href": "./BX19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204bdc84b42ff608d681ff09a647c79749dd8f9d28089d43dea992c986c1bab003" + }, + { + "href": "./BX19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201324cd604ec975c33deeba300fdc75ab5e8edb55b828ddc4acb5c0b5040d4270" + }, + { + "href": "./BX19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220baef694bb9f27d15bb384800ea61c3c6c412512cda7093e066e25f8870070b2a" + }, + { + "href": "./BX19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fe70371e8470991c032f46a907e1eb7b7d92507d645372fa54de30625324711" + }, + { + "href": "./BX19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203321c33473d9c401b77b0a3389cf0b0b124410752f0a116066395349ae7ca664" + }, + { + "href": "./BX19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061194ee2c818efa90f37cd66763d85dd7796fc16cd261737a1397146aabcae8f" + }, + { + "href": "./BX19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d58a2abdd296a2ab24efd6bd3c60e7749d8b12fc93752ba17530a64e7a4a83b2" + }, + { + "href": "./BX19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208a37d50d7d82a4c897b1d292402c78d21db435525db96c5eccd7beb07b50ea21" + }, + { + "href": "./BX19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202730aecff1edbf8f2e8a49ae5c7d6b58b146a6cadf14cccee8104ac68cb22368" + }, + { + "href": "./BX19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a83c1c18c95805721d4d90fe8bddcfd81d8a8354247ddf92331fc7b90dc1d0f0" + }, + { + "href": "./BX19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a086e68f39d0c5ef3eabebbd3cf68bc04c08726ea884940ec2d6948ef63edefd" + }, + { + "href": "./BX19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8ed715efaf770cfeb4bfbb2fe17e4ec4cab9b343f835bf9106e493a70836fab" + }, + { + "href": "./BX19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cead394d38c4b50909945d37fd753a9f566e5d7220bf2c64a13fba0a3bd2037" + }, + { + "href": "./BX19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9975894d4ee1db74f44f8395e0e0d9b7a26727231734af272cd187fce103782" + }, + { + "href": "./BX19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206145914da7403a3a0486b1690b864ae799cdc480df0a49550abe0be75c661d74" + }, + { + "href": "./BX19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067e41664805a6c856a94a06e2c5aefe55661f16bfaa2da2a20cf94f4bd27cb6b" + }, + { + "href": "./BX19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0e4ae8d3d3279c1282c287e2a7e589230fa6107aabdf5015f7e5a69bd256616" + }, + { + "href": "./BX19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b16a58056533eff5707e771b0d48ff7a52f684c9f61d71c457d0f926e4a5677" + }, + { + "href": "./BX19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e77305fa3893c7958c94ab8d83de9f2b8da3c2114fc858fd01b43ede50c988b0" + }, + { + "href": "./BX20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200497e05668e6b531ad15b308130f6cd001d241f1b2d5acd06d24541fdb50cc6a" + }, + { + "href": "./BX20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205681962e3fda3b715c957bdd91bd130ff17bf9f6bfdf586f96503b43da2ea451" + }, + { + "href": "./BX20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f60de63a7032284f587c0ef902c9a109555e65290ca17a2a056c4e1eae2c5ed" + }, + { + "href": "./BX20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b70d80c02c1914e4c7ba8d3204138c8238e5c1d5e02e02256489508ffc4dbff" + }, + { + "href": "./BX20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220315657493ebbdef992362ba37c1051f70c01e602c368f786d9ff4d5ac70aec2b" + }, + { + "href": "./BX20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c8e3accbae5a8bb56770a98e79c77280936136b5e8ffebc9e15a094b13576a6" + }, + { + "href": "./BX20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e1a276b074f4098e46fa7ab20d4aaa258302ffbdf65139c5310b27e502f4e51" + }, + { + "href": "./BX20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7f5e616191fb6cead6e76879b01de26e84266df2735b2ef0fcc6b24ff5e5cbb" + }, + { + "href": "./BX20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8ca68d7ae8b63672ad22b405a8830007812141ac99a7589f37fca17c3f3112c" + }, + { + "href": "./BX20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7089acd421eb3c5b76cc5e0951cad52daba8e16f8a3c43171a6277598e1e2ff" + }, + { + "href": "./BX20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055f89c3a03b7dbdebd0e6910796b77209ee187aab477e4f1e6fb8dab474abfe2" + }, + { + "href": "./BX20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085749314ae057c7dcfba59c69e0c1844de2db52246b475db332c32a53bd878bc" + }, + { + "href": "./BX20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9cdbd77337cf5e85651633860a1742610e5e89cf4cc4273eb0b094f91b3b81e" + }, + { + "href": "./BX20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220675ba213b1b0c5010cc1aba47efeb16f52402be624151042a506ee23f73c71f2" + }, + { + "href": "./BX20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ff89996dba393284a76a33baac572fac7675ff67b84584b6fc6ec820daa1370" + }, + { + "href": "./BX20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206148e098f33cef95fd118acdc6c4e9bf3d3bf1d2d636f6967b90f5959d755842" + }, + { + "href": "./BX21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e803e2e7e153e96af8b55e1be4f557ecdf6e6fee1831e8107efada8e255c25c5" + }, + { + "href": "./BX21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d41a275c7b3f56f991dfe797dd59f1c4dbfc82dae52d378b912a1a3e625f623" + }, + { + "href": "./BX21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203286bcdd52c2b6671d6e9abe79850d52a78c6a94e3cb30cb4407a911e6ad4d2d" + }, + { + "href": "./BX21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bcd6cb51908d00357b1c0584ffc511976180cf504cbd4b019489d18928cbdc3" + }, + { + "href": "./BX21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb2086b9595fe9330470fc43f923de403ae3daf649bc1f04944a3e003c90f0a8" + }, + { + "href": "./BX21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220958a15dd8e5b3faeb967dd4be91105bd9d100a74b5eebcfbd81fc0d323b20b92" + }, + { + "href": "./BX21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220852ca7aa771a98979fc98491ea35a317cd35eecb5436aaf3d069ab7a79cd09ed" + }, + { + "href": "./BX22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220568f4798550354e45f6c189a6b4e72f3d315682fc7f5f0c4dfdcb69d250b2a14" + }, + { + "href": "./BX22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d0c8a91e4d9d6428fa3b2527c71246aa65e2c97e1ecd93bba459c0e363fa5bf9" + }, + { + "href": "./BX22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122072584d7cd634f9a41200fa341e5483b9b9b3cb885164a2f6933014d5844ee3c4" + }, + { + "href": "./BX22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c5c4f29ae5f4aef70385e8040302e0b0f8590ba8382c8d05dd38b5595db1652" + }, + { + "href": "./BX23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005d5695123afcf7aac6ed080acdbbab2bba630cc24e02e3bbfe6d545ee8b20e1" + }, + { + "href": "./BX23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205bde2c6b916c2e559772c94e63ea64ef80851597ef30b26b69b67bcb59056357" + }, + { + "href": "./BX23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f6c2d41d6f3bbc3365b0fa749e37d5663a75bb75e62854bafaca597260d2344" + }, + { + "href": "./BX23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012852fa721d3a5789d3fc1a7ea5505e5d9f09f41c17fd7b39e66f9ee53f2feda" + }, + { + "href": "./BX23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204478d611da45bfb3e5434dfbfc707780aaa05625803fe416321c91db9c47bd21" + }, + { + "href": "./BX24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203300c868a97d3b7f969690b7a985c0ff664cc24e25dae06e61872be6764704f8" + }, + { + "href": "./BX24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122018337910eed48bc7a364a67b4f15c43c0be4f6dcd34aba35e8eaa7a9c3d9438a" + }, + { + "href": "./BX24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a0292f585b0088e5151d83c75942cbfc40501ecfa604f56b9540594faa223ff" + }, + { + "href": "./BX24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2dd14a10025765beb29ffa5df1487cd06905ba67d51f7ccc270bdd4f743fd8e" + }, + { + "href": "./BX24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220859314f284b7c5f4183ebee2a4028f44e862746d6d3fbb9cb8678bfd2415afb6" + }, + { + "href": "./BX24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070dd180ed0afbaebe64016f28c839746a49815868ea5100867bc1895ac11baba" + }, + { + "href": "./BX24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a812cec720c9a2c2651e323cab17414b5e9a79cbc94b23320c81b2b55960384" + }, + { + "href": "./BX24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8dd0c7dea6d8b300a84e735a4abe8568310feefe982777af513b0a409642585" + }, + { + "href": "./BX24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fae203a31c424331fe9d80192b6ee707c76ea441366ec82df5052ee35ab754eb" + }, + { + "href": "./BX24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073a7c3df8c90e2a86e9aec3aa57e11d1128b450d3054306fbcebe8f2f6f92ba7" + }, + { + "href": "./BX24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d7cb1001cc3a123e222edfdc054564b53eb82c5ebf01bb5b184cf3e11f3ceee" + }, + { + "href": "./BX24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122060e6fa38cd82e6349e890c2cc3c222a752b286f9c1fd90bfd9c45d21488d6853" + }, + { + "href": "./BX24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c33baeb5b02779a840dfceae5477af7395795cc1c0791a5f05cc15f72cca0a8" + }, + { + "href": "./BX24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d201589467c03bbf4f7e582dea93ec1dec42ff210022fb8a33cc8289e6b2788" + }, + { + "href": "./BX25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c2d6f0ac12843179f4b13e468f7d543f3163a048f8ab72fa2bf33bd021ffa4a" + }, + { + "href": "./BX25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff15688df76cb2914daf7abb90e2383915d24645823faee0a0fd8badb6c82ab1" + }, + { + "href": "./BX25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220271105e7035c224518c498f81cfa2fc2898b919a916655edffe0abd79818135b" + }, + { + "href": "./BX25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023f6f891b28c9e9adba8628248c74030168331d5aa0356615b03399700c8fba0" + }, + { + "href": "./BX25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d2021110f992fede098f08e7da8dc0966de4c35edb4aed2d808d43dca8fa790" + }, + { + "href": "./BX25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e81fc15669412848781fd65e834dca535c1fd0679b0c96fbc48733be12f8270d" + }, + { + "href": "./BX25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f6c1dea489d218f19482bebc6181aab61edba6f6f23aba8afbd4858a87e9b30c" + }, + { + "href": "./BX25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220514327007c4d5f0ac4cac46d6083b761a0d05d5ade71991956af72869802ff78" + }, + { + "href": "./BX25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202166d3f61be5270939642d9d0a9c5942fbc5b3a6f2796a512b1e2be57344536b" + }, + { + "href": "./BX25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6ca194a37131cb68ee67796ce3b3d3b15c66cae74e0be44c79baaec9d183b5f" + }, + { + "href": "./BX25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2f414d9e4a126f48e0a42493e07b7b1eeee3b1d7c92734e21419c26f9dc64d8" + }, + { + "href": "./BX25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7168a1535afec488864b8e5a70f56956e7cf1e58c824cea23134a0781f37b02" + }, + { + "href": "./BY16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208385e9cfa17d81c53a6c94b99124ed80a2558983a640b5d4e0e375fb6282852a" + }, + { + "href": "./BY16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fbafb9496971f0d54ae8870ffea4a8ee70312c320fe19a34554ab54474bb8e7" + }, + { + "href": "./BY16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a3b56cd7a5a6ac338a9e0953f3df3fc9ea9a18afd99f522e657b404c46d0f7f8" + }, + { + "href": "./BY16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5d07106846a1f76331c4ae59368ab40c4ced3cb0714c8543c16244dcb4068bd" + }, + { + "href": "./BY16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208bdd148e09fc3c583fb74ab757996305b19a5f3943ca0089d77972f924d78389" + }, + { + "href": "./BY16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f9b86a7b9af9ab4ff68dd0b88f3404aab93446c97f546e01fe5b843ecb63e0a" + }, + { + "href": "./BY16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201571ec32252db69202c3f4c9db748e07bed6ba168b4572b1024f796e7c8f59b5" + }, + { + "href": "./BY16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208cbd5511e19fadbe534a2a26fd653aaa58e4a15f59902b49dc2df825dbbe5a3d" + }, + { + "href": "./BY16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d3511981060ebc4f7ee58bda480d041617c96ae4a0c431ff433e5e8a82fb430" + }, + { + "href": "./BY16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f93a903e487c66d2b1e97751fb31fe10f0af401edde41c4ec4413edb47cbd1e8" + }, + { + "href": "./BY16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbe56ef1ee24c47d753c2d8c95d46085235e34640b15088c28d8bbed4acdafe1" + }, + { + "href": "./BY16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac5bac0c78521283b92fcfdd835529dcef2a69f89f94c7da7576e3a1f1d56aee" + }, + { + "href": "./BY16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8721c8ea183e9d3a56c1ee0d0a4563217a8619a08e11a987c543ca51810c25e" + }, + { + "href": "./BY16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff4aac39a96391461c15d375d3bebf61b81a415591e30eb26c00236535234def" + }, + { + "href": "./BY16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122041c99cb88d43d979f5bc5866d4d0a8b1a4b4d96cd6405be737a776fd14dc5805" + }, + { + "href": "./BY16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086d1a745d3a8567ab48f16841201d20c0b102657cbf879b1ae759e856b0785e1" + }, + { + "href": "./BY16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209077e4648caea144b059c2f3de0e73969554cf2d2e4e122b2d934fb64f419911" + }, + { + "href": "./BY16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200128e0a3d389e49be06f961bca5b6a65125fe50a5c6b7c64f78b9fa9bd5c6e9d" + }, + { + "href": "./BY16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202831f027f9f08e19b535b93278583d82e84a91a678004b04f3fbd794a383a0d8" + }, + { + "href": "./BY16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1a639533c66ec49a1eeef1305f154aa253044534e2da8c421ba9af98d2a3c5b" + }, + { + "href": "./BY17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be701fd5a5351872cc51de075ec0027d04af04ad4910a12cd481322822cffff1" + }, + { + "href": "./BY17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203feb7d03a6310de1b44b382d662bceb1cda4fd9d11d4b69bd9301613d7ba4081" + }, + { + "href": "./BY17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220538fda05a5b877f26fca61028ca4fb912657988dae087071ddefc7bc7e40ed4d" + }, + { + "href": "./BY17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039bce63d6ec9c49b4f461c5c136b0c90fa3267d68a94f58669bc4b9a98c03504" + }, + { + "href": "./BY17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022ed5a31a08e956b5de30c41381377ebfd0703338bcb2d84f49a6efa50a4380f" + }, + { + "href": "./BY17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028a57fd77d0ecbe928cf384ca87bbdc61aa76f6c6ea4c5bf6fa9eca736156070" + }, + { + "href": "./BY17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089c81a0564b6053dc3cf4b414e3119f8d8751d967e21ceb9eee7a00953bec813" + }, + { + "href": "./BY17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9ae902cf865225f2636e19c736e7f77a9385a413f19d9e312149245608e683d" + }, + { + "href": "./BY17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3e37f9c35dfc9c014bf4cd413365bc5ff58e75413b252e478c635ac471f8ea0" + }, + { + "href": "./BY17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203849d064e87ce3191a376ae6b948f6c6bc48f677b877b25c09d42688f90bea94" + }, + { + "href": "./BY17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068e7ec21221d9657d3d3b43b4d7f246459efc993cc8a4714adb72b349edf7402" + }, + { + "href": "./BY17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d79f84d4e15f0851a1d61fc4e1c13b7e8cc442aba53c863c0c9a240496af69b1" + }, + { + "href": "./BY17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007d8eec6a3e16c27ead7e6e9f7cefa36e0cce8d5689e3ae63060d5c0d488fb0a" + }, + { + "href": "./BY17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207338fc1ecc4be45e42fa2093d91878ad9d7754bdf3cb9e352db90a8f63415a55" + }, + { + "href": "./BY17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3b84588ece82fd1e70b618ecbdec19b6053b66f889e5da34b033d477aa4f9f2" + }, + { + "href": "./BY17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8113720354b6db0336806986b57ee63bc78090cef1431ca37b1e4b73b446f08" + }, + { + "href": "./BY17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202399b3c7f21acf8877b54bf07063c9614394db84f1f2b17afad697f2e7e5d899" + }, + { + "href": "./BY17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014065f6d7789fa00b32e7fc32829ba351222837bdd5f9837df17cece2eea8cdc" + }, + { + "href": "./BY17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220119064d9f80d2df333645e238ba5588493af06dc44a59bb90de7af8b80fade2b" + }, + { + "href": "./BY18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208280eccf80f8f267825929ffd3e1d3a679a609476980ba531786676d1d60bcdf" + }, + { + "href": "./BY18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039bbd301350ecc01d0b35503b3976cb984607eb4123d63acb235c06b674ed0b2" + }, + { + "href": "./BY18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5bbe4e089e03c0c18a7d9f1ddae464db6b1352c7b70d67814fdf005aa635d16" + }, + { + "href": "./BY18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a375c0ab7fa89885c0dc3d3ef8be62a0462c3c0bf20c22369ff246dcb314602b" + }, + { + "href": "./BY18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205dac3df907abba650deb9cc366c1313d913221dd1bfb469712fd683b5493d681" + }, + { + "href": "./BY18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ecf5c873c8f9d2493597d8a84d6932fab2ad1646be5e31a67d46b51deb7f840a" + }, + { + "href": "./BY18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a41947ae7c9f11faaa0f095fad2ea1d4cb63b9644fb17b9f1b4f23b83dffe830" + }, + { + "href": "./BY18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cbe0972df857ed0bff7ac0c6b5719187e9bd0b638384ed2d875c7518c34d122d" + }, + { + "href": "./BY18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202e008884c3b2d39794704839aa107c69e020f9c11777469b3cebdee6e4a940c2" + }, + { + "href": "./BY18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c874cfd5f3766d938d7d82fff191d2fecf0396e161f15dfe06284f75d58b2d08" + }, + { + "href": "./BY18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a804a15ce638af6bd107ab7d75f43c95f5b06180a03a795d67e63ba5a5772fe" + }, + { + "href": "./BY18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d517820eaed6483785178b3fd94771f50b2de40ed944436eb0be9186ba46bf58" + }, + { + "href": "./BY18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204faf4c64cbc038da17156312f56f131c28876b5c7e850e7734fac7c5bb08f5ae" + }, + { + "href": "./BY18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b6174dd84981f41b39f29c8465ac2a57cd5322526724c72f229ee7828aa5d52" + }, + { + "href": "./BY18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220408cddaeacf2164883ff0bbbc118884cfdbf3c1d3334e609111715725a3c6d25" + }, + { + "href": "./BY18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4cb3b2d3f59e77ab2ae16bf1de16e39dcdc5ecce69eb5886f5b50a60113c689" + }, + { + "href": "./BY18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b3c7dc8edae637c2afed51c54cc683191626fcdbb5947a80b57381e446f4cfe2" + }, + { + "href": "./BY18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf3216dcdb3eb1133ed8394f7e0243fdfdf57639cdbdf78614136888d69bbedc" + }, + { + "href": "./BY18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201659ec4aac2bc67d8e526d3fc511285bdc6054e3bab7d71d8af48fcec0e2d4a2" + }, + { + "href": "./BY18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055bd0d19ef39fb73f219adf2af6b01658d70c7e21f5c095a187db34644a187a9" + }, + { + "href": "./BY18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a475aa63f97769bca7780307db944f2c617cfe70418a77415934a0e239ef6a3d" + }, + { + "href": "./BY18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204eaaeeb914704390981c46b7f89cb4f83d200c7a4c251e88ea1ca7e03e46960a" + }, + { + "href": "./BY19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a169fba746c4d41480a3ff099446fe80e5a1784c3538b812f9c372b364a5255" + }, + { + "href": "./BY19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d862adaf1e185e0a3cf7148f67c1b4a8668ba699317b15cf4ea70402061fcabf" + }, + { + "href": "./BY19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cbf29f016ea54fe1d965b627ee165b62cb5b00b1f29b03e8f498ea0568167b0" + }, + { + "href": "./BY19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022720b7a3bb9a46f316dadb747e408ebf4e219fcafba83ba4e95e8ef493562f8" + }, + { + "href": "./BY19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089d715cb6971132db6677529754ea784f4acca4300f7622a25b0ad4b1a5670a1" + }, + { + "href": "./BY19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afac360c9f5cc42ebdaf151faa8bc9847366a9019deaa35e068a8696b352658d" + }, + { + "href": "./BY19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032083f7b03572b64fec42b4d555f9329baade7c368b2efafd91e95d2a480e876" + }, + { + "href": "./BY19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce82fbd61de62fd573f62962dbb428acd4e318e5ecddefa0377ed82aafc7f53d" + }, + { + "href": "./BY19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f59d35d54485b7139cd467ff29f28f8ebdb0c64b1061d858fc780a923e45b16c" + }, + { + "href": "./BY19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2622105ffd45c4bb541a5959b4c60588f7bc9e5450c83ce2ea4a21e979f0152" + }, + { + "href": "./BY19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e9f628386371691f958af14edfad61a34d962861a25c9b7e7ed923e44a5ffa1e" + }, + { + "href": "./BY19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220632b7baaea6a019e818c0649ec234cb2d09d1cc6b6c77021c68afdf533a44eb1" + }, + { + "href": "./BY19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ea410fef51f3d74456910716c785a52b30971e026bd1176f1ab42d5c6f28d4d" + }, + { + "href": "./BY19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220580e51a48a14ecd832740d1690012c07b98589135a376c895e10fb82873728e6" + }, + { + "href": "./BY19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f29759b01db22d29601b161c9fc6d3464a86be2fd831872370cca2240369250" + }, + { + "href": "./BY19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206140ba6fb22d6f1ce6576b77c1336d4e48536ae48a4bc5f5e4cb8d9f78f5bc38" + }, + { + "href": "./BY19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b63499cf95d587d61c868a0d60d7a998dd17f6ac1a3c213c6a86d4ad0c5cb311" + }, + { + "href": "./BY19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d957dd7dd0cd12992eb639bb8adbc753126a673cdd1d6d367d76b3f028c65cb5" + }, + { + "href": "./BY19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ceeb2586de2a700218dd2a7fb43c895173a78232e7148933293aca3bca8fcf0" + }, + { + "href": "./BY20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d454ec5f77395bab95b9450ca8aaf31ce9b6a196961445b7632248aa5f925cb" + }, + { + "href": "./BY21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c600b6592319c20598b6fb52c16d330af147e150b6fecc8a0e3650b658a12d64" + }, + { + "href": "./BY21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122025682602f774dbe4f68879c052a92fe5c2750f6b25fe1290af7df81c95956cc3" + }, + { + "href": "./BY21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1068a781dcac77d755e927bd1ae994c69b89082539ce8b69a5f514dfa6da314" + }, + { + "href": "./BY21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202521bbbe8dc289caf452b0ac607abe3e9fbe6c02825b15b0bd33d52fd8eb1ede" + }, + { + "href": "./BY21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205816c85ecf776ab386907bcf927f30003e0983fa54f2a894e383aabfd250ee27" + }, + { + "href": "./BY22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085a63e6a48c61c9c05378c7803b6182fbc8b876eead24ad326416d22d4f31eaa" + }, + { + "href": "./BY22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db18d650cab5458920c0af930f3606cbb92a225a9090da89b609f0b0d546feec" + }, + { + "href": "./BY22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207acb80efd875fdc83f8b9bd991b5fa77782883dd91bc463b2baa848ef0396ee3" + }, + { + "href": "./BY22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd8de87f49109b967db2fe072b64944d321c82374df39bddfda2a6cf7769079f" + }, + { + "href": "./BY22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220faec432c3477f2215da3bf12b7c0de86bcda2e5e1f2ca5e265254d3753132e4a" + }, + { + "href": "./BY22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220214a5266a60d3c787881eb7aa71633ecad0c4295f6c098fe50f6d01ce192fcb6" + }, + { + "href": "./BY22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208a8ae3138d06cc58baf541cf9d574ae6fe310dfc3f1d985f689bf75d4e025610" + }, + { + "href": "./BY22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220579301c3a894d5b746f73b249d5912722048101c68e0ec33c2dafaae6afab319" + }, + { + "href": "./BY23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122056c2b6d55b2d5354a0ebb8cc627c3a7c848f7128fefb79e49b29126f27bf5f04" + }, + { + "href": "./BY23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a3f0b81987396de92fefbbfce948d05bb78a828a1f2d7152cea7d89059911b8" + }, + { + "href": "./BY23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220250ee895ea7cc964a83a2d530309dc797254ce06227ddf56c165c3bb4ab24b6a" + }, + { + "href": "./BY23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a505236738345a7a29898d34673d1c0e34707cf0cca65f0d0d9990b96eda9595" + }, + { + "href": "./BY23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122099bd6ff986c973b5b3900c7351d9a272b0c3a4df46cee7f12f11768179f561c8" + }, + { + "href": "./BY23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8ead99c7b2d3ef1201ce890aad4388d3ccd4d64ecec6f9f2441bbd945edc86f" + }, + { + "href": "./BY24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c3317115a46a5ada3a6b72fc386a648e014a85e9a710aeaaedc3032876e9f03" + }, + { + "href": "./BY24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204f3c2f886ca62dc1e55dcb0ee8778d58d9518b5ebc3d0935c52e203fede2919a" + }, + { + "href": "./BY24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206d9f832f91f1c308b85e0f988405944fbc732717e4ad1e05ea59820e01d20533" + }, + { + "href": "./BY24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059b35ee73524ac82f094eda2a258ccb4cd7eaca59e60d42453ba9590a0de1d18" + }, + { + "href": "./BY24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078d31482db48ec7f7a184e39f39dd00ab9c80e96500803bec013cd5525bb484d" + }, + { + "href": "./BY24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f31c07f12160f46f620fb14c78f01646eff1ba3694beda5c69d350c04d6cfcf" + }, + { + "href": "./BY24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200724ca3858c59566c5057c2829f0c1461b6d874a634ae031cade85caae199206" + }, + { + "href": "./BY24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e55a699d1695a9ffdb9b669f00cf401d48bdcccf51aed2b39bc05b4a30edd76" + }, + { + "href": "./BY24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122075e5b24ab22e30a7aadd4a01636091ba2a4f55e7d0df363923917671826590c2" + }, + { + "href": "./BY25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b226647cc3f070718eb22d6997e300c04cdf31b7fc9d004b82b2414eaa9b2b4f" + }, + { + "href": "./BY25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0f7dcdefa3c7ae9cc44df214c4e36333f8a78633ad43d28ccc4c0723f041f4d" + }, + { + "href": "./BY25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fba88c322e051d2a6d7bbb672de265fbf7bc4dfe035954cda0c2e0adefe492c6" + }, + { + "href": "./BY25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203717d94743e164af78788ba383f056fcd09f51d5e91ec108a668c16ddd4bfd54" + }, + { + "href": "./BY25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b71bb1e1191a73063fc0ec060f54b300d988b6bc0026551a94441634fb74ea2a" + }, + { + "href": "./BY25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd9cf28114f6a7082363cf335ee0490f13741cd9a507c117bad72c256075ffcb" + }, + { + "href": "./BY25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7ac8a2bb790900f6b16d9f4849be80904009b304570395b4ac46ca6d68abcee" + }, + { + "href": "./BY25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa118db7b8505b4621c5bb137b597f07d5c8aadb4ec758adfeb0325d7d5a4034" + }, + { + "href": "./BY25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206db815f3c23fa0796c927836441d58ac4bd6a6d941f4c78ba632100bc7e2048b" + }, + { + "href": "./BY25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122072fae68e03296c4620c7227b0b4668fb5c61b15fbaad59be76187bb1e55ba49e" + }, + { + "href": "./BY25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a1efe6e1f8e3e0e7cdee7e4b97447977f43bbead4a54fa196235e717fc9d06e" + }, + { + "href": "./BY25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de5b4f293c7c1dbb6d61f9aa67db9483d927f104201d95415443b29b5973074d" + }, + { + "href": "./BZ13_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f8a00f1eb91814bfc658de6b18e88581dfe9bc210436f5cf1e5b5d7f901bfd0f" + }, + { + "href": "./BZ14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037fc36444cd84b0a26100c3f7d3b1e2bfd425a1c1794a04d20cda7c22e9f2eec" + }, + { + "href": "./BZ14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e9d4081bc46f6d27271a3228a6b7ef85e91c76beb5cb0106a5d8a522ccf94c35" + }, + { + "href": "./BZ14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088c32e93a2dca871cdba10d2f13eb255a94a3a626607fa0f90e0befe7e9394f4" + }, + { + "href": "./BZ14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220327692915d796854d1e4d76042185a32fec042b2fd0ecead5ededa6c54111885" + }, + { + "href": "./BZ14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015a4580ad5545d2de7f396d5a0fe8ac569462da96856d07c069c6dba520c8eb4" + }, + { + "href": "./BZ14_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095c2ace87a24b6ac6aabec48886d42a9ccd11ac81f70615fe998e78236d6d1e3" + }, + { + "href": "./BZ14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209122eeabbb525ea203543c59ee0b3b7768332cdd4d633c2f5853d8c8eaf49a65" + }, + { + "href": "./BZ14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220301f6e41f9c0a8a7ff838352a826c98e0af2d442a7a30528df8533ff4a7a7113" + }, + { + "href": "./BZ14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202edcb433e8189e1228a6421e53bd837ed9d1d3355417f9f09d52256511def82b" + }, + { + "href": "./BZ14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201fc49e0c6e4411e8dc926d48b7f2af6ce146a137c6d7b171725f952495ce34d7" + }, + { + "href": "./BZ14_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206b7c6733dd5cafec67421a049be9ffb477640e63810c8e4f3e2fd6e54382c48c" + }, + { + "href": "./BZ14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ca994942a2d09a55362dbf88ac9e9e0e8d0b50d3fa416d36f60ff465f7beb0d" + }, + { + "href": "./BZ14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d942d18aed1557efa85b27c94dafff429e11e3203edce4806532cbb346ddb3d" + }, + { + "href": "./BZ14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e7eab644a7a35fc5fa68c5d3392f0989ae1a3832e44cb45322713bc75d3b734" + }, + { + "href": "./BZ14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220496d709eb99d911ace9804962e25fd58d0e3c32ce3819029ccadfc4e97c3d647" + }, + { + "href": "./BZ14_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017e45ab8ad43d19f563056236e718724536427ab1d96a23accf1b5eb05d31d88" + }, + { + "href": "./BZ14_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220006820ec50f9bb4dcd4b14bccbca29bb3c54106397c4ffb25e4b3c3638479118" + }, + { + "href": "./BZ14_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcbe97ac64ae08589ebb6a32edaf02347d904e1b53eb5263c8d28f7e52d17f42" + }, + { + "href": "./BZ14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed0be69b0e8677d69821e524ec066a2fecaf501e94b7a2a3c0510221d760b03f" + }, + { + "href": "./BZ14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce77f3d7d43f704b5d6963002ac300e6dd865d803c9b02b520177ad561c48b7c" + }, + { + "href": "./BZ15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f6a66860a55ffa746c353bb052c4e5f12e8ec90faf87fed9fc1a7887ba71764" + }, + { + "href": "./BZ15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220586230f86599e53b52ebdcb1496f0543f29f5be5fe2fb0a9ae35ef263cafbfc7" + }, + { + "href": "./BZ15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fc6a267cc2e20cb683dc8008b6ece2d77b506f9acfe6c16575d8c54207290e69" + }, + { + "href": "./BZ15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122026d53ca95bc2c2938e3e8a6c3994dac5b34677a0be9f86dca88dc20fd2c8fb3b" + }, + { + "href": "./BZ15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8b5caa61823654e4a4f4a0b23055a7558403ae98b6faeb11374d891f2b127ee" + }, + { + "href": "./BZ15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086bc206c332fe33ad0b31f0ea2684a9dd369f2d74001c3231ce6ad019eb13b75" + }, + { + "href": "./BZ15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ceff02de730cef6d4f375e7982bfb049da06cde3bfe939d8200aae66313e93b" + }, + { + "href": "./BZ15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200aaee111b66304ceebe70d2ba53ffe0ad464d01a19b87d58d61709c36a8a83ab" + }, + { + "href": "./BZ15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ae5e4678f502b8d23545db712bcd36e4896cf1d5cdda3349d5121347ca9fad5" + }, + { + "href": "./BZ15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055248685471f40410d6ccd20ac5e29b3946ce152f665b465df805c646d4c18cf" + }, + { + "href": "./BZ15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035f911b8f0c725bcf87a897b8bd8518065e184053cda9e9195db329ea4b06bb0" + }, + { + "href": "./BZ15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a9491a221f294ad394d254eee036825855fbe96dd3b0ce81a8fc5ecf2d92ad5c" + }, + { + "href": "./BZ15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ac49ec2bca075697a77a0f8dca9cfbb86b43bcac6ea04d439bc102694cba019" + }, + { + "href": "./BZ15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7978f547f8c4cbd538e17fab5896f55a97f0ef06919eddaf6fbe396953b59ba" + }, + { + "href": "./BZ15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b9b91a3c0b0091fc6e306634f38d1106589fabc67e487e5d592f61a457bffc3" + }, + { + "href": "./BZ15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202463d78e479076f0852d70b7f978e42bb78b6f885cac33f2dcf4228d49e5b78e" + }, + { + "href": "./BZ16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b05da06e1037c7af6f03f88b7945811bccda6de13ac875e1fc810b56346bc5c8" + }, + { + "href": "./BZ16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1cef0e7d7916ee128df5ca3bb81164b03ab2d557f40e371b8e631fe846fb10c" + }, + { + "href": "./BZ16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ea57bf0ee7f4584028b4cb16421079fda5685ec189a388abf2f8710e97331c8" + }, + { + "href": "./BZ16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e22699f19c9b50888981b50dd221922352127ff73a65c179d7d816d5f547bdd" + }, + { + "href": "./BZ16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220508ae59d1e159616f2858e27216bc6d6e934d821238246eee876938b551a351f" + }, + { + "href": "./BZ16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d83082623cc7231377d1f781e4f5e0b875d4d7cae1616b983b0ef3ba3979229" + }, + { + "href": "./BZ16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d94ce4f5c2f84535ab90e325cbce65c14d1ff426da9abc24b95514c0bf8e67b4" + }, + { + "href": "./BZ16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d62bbeb5c90b47cb56a5d7ee91ed765f43c88950e8abff5bbd018673dc1821b0" + }, + { + "href": "./BZ16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afb5c8590439d103573c2b12bbcbe91c3e14b748e11bc819941246f7abf9cbfe" + }, + { + "href": "./BZ16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082f84556c980c56409786a5ffa62f2ef20b1bb53af65679f722ab3cca1f523dd" + }, + { + "href": "./BZ16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff8fc18a7e02207e8599a61c55d42825bd2ae870c6304b9a85a8e50466d24e0d" + }, + { + "href": "./BZ16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202993d46bd2886b47aa7c96fcd18b2da9bcd8fb824ec03970f314b736dcbdc867" + }, + { + "href": "./BZ16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202af5721ae06ea4c9cd881caa4c5f122462a1a9962de5890cc2e69d79c391e53c" + }, + { + "href": "./BZ16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220511333134803cdccab07b87ac3b1eabecef9873aa75d896a40137a5ab1b853f1" + }, + { + "href": "./BZ17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073dfaa8e550db79c9f75a11b3abac61abe6b043bf79484d158eb6f7ea08abd0b" + }, + { + "href": "./BZ17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203082104de57accaf314f6349426ecd55c1f3a7980ff0fd8f225712bf01d3c1f6" + }, + { + "href": "./BZ17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203de14ac79ce0cc01289da25bdad61146ec167b7c45842e738b19765d4bb5666f" + }, + { + "href": "./BZ17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084b971c82ceddfcf8ca9a37f65b55788dcd83b3f835035c210507a6169918586" + }, + { + "href": "./BZ17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220423fa19b228a39a8d0f326fdc791f9655a4f4a9c65d92d6a6f37bd96e01e71af" + }, + { + "href": "./BZ17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006bbd611061a525f59225bf8276640cd7213fc873c50532acfe9227bcdad75f6" + }, + { + "href": "./BZ17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9f351b0269d2229acb1f2f81e1cb88e2631ad8b360903b646f0885a41e3ba99" + }, + { + "href": "./BZ17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082464ec5d64b05f521a249193203fb57cdf3a798cf219fe488a9a966c51910cf" + }, + { + "href": "./BZ17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a51eca528a70b90ceca7d3af1c221455c3bb4fa931c4189d88f030392392ac19" + }, + { + "href": "./BZ17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b89e84b1c904501b6bc541a83feea9b80e915318328d4139d0fbf597745c208b" + }, + { + "href": "./BZ17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220522f08cfc0e6b8370096e47e5047977e0b16d9ed2703cf2d1484e5903e641e92" + }, + { + "href": "./BZ17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c5437cafff38e1110f7c667bb93a5443c0e649c3d5451dbfcd8d5f2cbf079ab" + }, + { + "href": "./BZ17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220698c42efd7284bc7c19d09d9b33c081645d823537fd4187b284560960d5d8a94" + }, + { + "href": "./BZ17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b5ef3d8a7141d35e319215c05b608ddbe952002a46fb5020ba9b143ddf283b43" + }, + { + "href": "./BZ17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4ff9dfc055bccb69eb27a1a09727de2c3365ea9d06724f0c20f0af29e449577" + }, + { + "href": "./BZ17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d2d177ba442a53f784d2a206a016439314a27b54fbcec6f9b505a67fa4a90f1" + }, + { + "href": "./BZ17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070c8e5afb6895869bfc17a3064f185280e16461c87691ffc58fdd57748c6091b" + }, + { + "href": "./BZ17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6f6c3871c0494cea033ccb02bb3df2ce0af740b0f110e62b7e2595f6ebdea2d" + }, + { + "href": "./BZ17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220871b6d06f55566da4c180931964ca5879013af69d5de5a84ef6b388987af07b9" + }, + { + "href": "./BZ17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039443296bbc45071b3131991d3433e7cad73899d3356491082b969c019c792fc" + }, + { + "href": "./BZ17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076635198a7fd8a835b2517b984b438829c9b06f92669f8cf9c75beac9f0b303c" + }, + { + "href": "./BZ17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dc3dadea85c0b766298587a7fc07ab1668c4a61ce5da66b3d80d96b073f3a326" + }, + { + "href": "./BZ17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d3ce40b2ddcffc5efc2a84aca778a5012d2b655289f2da4dc63f8cb5b152cb7" + }, + { + "href": "./BZ17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207570704a01a20986baf95353605f68e352f831a89ba7d4a0f4518139aa7ea49a" + }, + { + "href": "./BZ17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c13f942d5e059b7c5d4f97d26199303ccba1a3fff35bac70ad5e40d5889d9a13" + }, + { + "href": "./BZ18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7b5c23c643d10eb52f308231a81d56c5786ae442424a7846da00e9ae46bbc19" + }, + { + "href": "./BZ18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4b35577f719a67490c02e8a1e726a2c81578b52d90262b0e120ddb8844bf326" + }, + { + "href": "./BZ18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220402033bfe23e284335c645dbbe5b38342b5910f870aeb14d5d192ee871c60e12" + }, + { + "href": "./BZ18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fbdd99ab6aad5803d4c0fec135fd37e5fa743386a1076568932d676209302eb0" + }, + { + "href": "./BZ18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204723a63ccc3197d6fc52d879f52dafdddd93595ac2ff7cd922874ab67fc0cba4" + }, + { + "href": "./BZ18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202897cb6beefef23d09db370830416b6e833ce948c765805dbc2230c3a8b1b61e" + }, + { + "href": "./BZ18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209df90eb2f1c2054bd5f54be43effbc5db1a9351032a396c03f156a87c267fd5a" + }, + { + "href": "./BZ18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa92e713a9e87fcbb48fd9d0e726ccce66917a41bab11c2042610814abd1faab" + }, + { + "href": "./BZ18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a50184f2e730ba36b03fb8eeac0f033fead58e3615dfeeacb4878f368f15584" + }, + { + "href": "./BZ18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb643a063ab842c254b01b268b8e7d90e4eb655c8ce3554a967687a7b5210fb7" + }, + { + "href": "./BZ18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd8a080324c86364c1231d3df8a9865c6dd48446b84d525b233fcbd6f79d553a" + }, + { + "href": "./BZ18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220acf9db219a721b6607642fdd1c320525c1e190a069c097c27c18e419a84db2ae" + }, + { + "href": "./BZ18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207cd8e678cfdbeaee85f1231172a1741714f2291a890754391768f981f9482dd3" + }, + { + "href": "./BZ18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200cbc521574133d83c3d444b74c51a4422446ac27c80b390cb9a5a0347cac575e" + }, + { + "href": "./BZ18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220632cc1c178be7aad698d0ac936bd160551f4cae9675658eb688608e907dbbe0c" + }, + { + "href": "./BZ18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207909be00cbeaa857a0aa6da66fb648cc9e23e757ad541e399a34425444c899f3" + }, + { + "href": "./BZ19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee00c573e18b7c335c3c5786d6743b95f147b60bf52108346f5b04b68b20f857" + }, + { + "href": "./BZ19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1cbb80ea3596a14de7cc457835442f0f63e078e766f2ad42245e6bc202b72b9" + }, + { + "href": "./BZ19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220199be1ba3c7925c033791b87d4c23def9e64d1283d8095fd33bad873b930a227" + }, + { + "href": "./BZ19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fabae3e8372665e2b80b8842b431b57a4fbf4e3e4d28ea48b60cb48d9305ff2a" + }, + { + "href": "./BZ19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c62ad39847999556b5afb8f71140782c99ff8aba8ec2dd9f4cbd196df67ece85" + }, + { + "href": "./BZ19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122020182e67752d5a3d9adb394740bbda746a2c56f708c0d294af4ada31e74f1177" + }, + { + "href": "./BZ19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e226b76eb18110d639151c100911f30d1f6ba112bf8447bd85aa0572d5da4964" + }, + { + "href": "./BZ19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023b41c1f4c5a7f807c0712dc453a2c071ef7590108c0bb631489c2af119ac0d4" + }, + { + "href": "./BZ19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220535be0328e19d9640a7fb6e173268103608b5d420276824c1e7f3831ad6df3e5" + }, + { + "href": "./BZ19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052b507a30aea42f5a6bdb79e0bcb6b6a94b3bdfff028d8fb22d8a8af4f67f1f8" + }, + { + "href": "./BZ19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200971ebce3c2d27a5acad09bf04b3f18c8d588e06e57f3bbfc9088d9bb1e343dd" + }, + { + "href": "./BZ19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf62840ea76942fc69bf3fbc843153aa18b6468cd18cddde4e65dfa59bfcac56" + }, + { + "href": "./BZ19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ece4b1b729e381cb4b0845d9970a033aad5bba529b673ef90cc650d202a59733" + }, + { + "href": "./BZ19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207b7065c2c24a882c858a95d69cb442821bf6f9b804825fcaf55a552447a359ec" + }, + { + "href": "./BZ19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ebf7b25882c2e437a9cf279158ffdc2a6988f65057a0a185c4fd9a2c49fc7dc9" + }, + { + "href": "./BZ19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd9705842ece33d38f934658c0b51ef4ff83a5a3b9cb74f843f47cd7dc91d0c6" + }, + { + "href": "./BZ19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220850426ff9768b27e1549484cd662167d62ba2a810db0e997c1145033358cc06b" + }, + { + "href": "./BZ19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a2a7f752b2463cdd1e9658e312e6d9ddde485b5db3f4a107f045eb3c37490f00" + }, + { + "href": "./BZ19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203652ce820644763958569107f429cad621acd76794ed233183e6c4deebeabfec" + }, + { + "href": "./BZ20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122018bbeee0594ae676bf3b8cd406d8787b0d36c2ae483b0dff55bf079f577d302a" + }, + { + "href": "./BZ20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b13d02ed462b92550417711b26c6ae77d2a338939e45bc2789a8ce5bf85a83d4" + }, + { + "href": "./BZ20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fb345be0c909fede5443ce39e4830f51e1dfb2b7b4bf133d854cda20b0c1955" + }, + { + "href": "./BZ20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220142338a9e62ba199f29e454a8f6a087f4251f332a00486c8eeb9649980fdbe9a" + }, + { + "href": "./BZ20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf7a6dce05e2d60cbec514c25f2b6c970822a04fed160deeda39de5924f0294a" + }, + { + "href": "./BZ20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200496a774633cc4ca8be314bf80de32d3bb95266edda931903daca9726a6f9d9f" + }, + { + "href": "./BZ20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207041ca5fb35b46c319258d7d4b905a1ea5e99db8a7504249bc1a705f256e7acf" + }, + { + "href": "./BZ20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fc242903291b8445dc96c38f1fcb7ca568779736cec40681a92105ce66207ea9" + }, + { + "href": "./BZ20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e44da788314b4e3f2228538f8edad2b44bffce1134ece8cf3bad527c4a6834dc" + }, + { + "href": "./BZ21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdb207d0892e034866ff0950f22b10385dcc6a3f2648c7b2be0cf987fa0a5f19" + }, + { + "href": "./BZ21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b67eea386320a45d205f1110d87872a214269246fad3276c23b20caf807cf3d" + }, + { + "href": "./CA14_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e88ea4cfc570a0aba378f272d878c17f7f2f8342a3b40a7c5a042387e6bc0f8" + }, + { + "href": "./CA14_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037d12ecd157f289d22a2f3cc085448ca2bfb8a289deb33191a60ebb8e27d0720" + }, + { + "href": "./CA14_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122040c46d084d7d2f8fd4793caa88ef123a120daea0bb2c13f86619b67103ecf9ff" + }, + { + "href": "./CA14_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fe5f3208d47b63a0eb77c69a27e5728bd63762fb68ed455e35a96b752d447ff" + }, + { + "href": "./CA14_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122009f535e87da7190646e3151dcd95d53ccd846bf33c2056cb499d5aa1c0f3a4b5" + }, + { + "href": "./CA14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e6a9b42ad93062f05a9a3fa749b4ff40cdc1f3320f993880e8ff54bcb97e45c7" + }, + { + "href": "./CA14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220741965e3dae02802c8faa59eb23cf0876e0792696a0e52f6e77d0162b11b843d" + }, + { + "href": "./CA14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220355b01e6219cf0f83b3ea16c1c22c6ddcb1cda3ca38a406ad4fc6b43d3a17791" + }, + { + "href": "./CA14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5eef705f267f19eb12d105c88399039044a3b6b39bb9320374d91cfbd6f7140" + }, + { + "href": "./CA14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085f1aa01290ae4a11f5005904f1638f23a87c76b404daeb225fee455e1896265" + }, + { + "href": "./CA14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202537919c8056c5927f308f9bbe0272d6939b5669ffad098520ec6f197d486d5f" + }, + { + "href": "./CA14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065be0d63f0210b5f7bd76c63b107956caf1b1673e4c13689e98b4d99f10a8176" + }, + { + "href": "./CA14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b099d49adbedac11179908e13f79494463693aacb804b40fa452237846e8a71d" + }, + { + "href": "./CA14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d16772f73e7fe9fe347f8820a5e2c7b24b272e7c3e8c4d67dd6ae394617e129" + }, + { + "href": "./CA14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017bfd66bcc514f5dd8c99c1a39f32543b37f0277e48e69bc203b5871e0e42cc3" + }, + { + "href": "./CA14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e42450df59479f4c76b55ddee3e0a561596c9c5b7967b41bc374cfc24c4dc82a" + }, + { + "href": "./CA14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220928a47f3cdb081d32484a629778f971f1c16b05564c8297f295a8e305f6bf367" + }, + { + "href": "./CA14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e19e5c1ba5971b48194149d3a1ab6bb66119b3761392f423ac50d69f6e31db1c" + }, + { + "href": "./CA14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f3dc636c3d01fdba9e77c52e8a592d830c6a65ec9829159ad8da416ed971308b" + }, + { + "href": "./CA14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208ddc32649179ccb8a3d3d04a443a71bc4621cd0e77018e9121843df0bade84cf" + }, + { + "href": "./CA15_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f51e9fcb7e5a9babad82283a959e552fd1516fbd218f22170a7c2304c0c45913" + }, + { + "href": "./CA15_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220381c387e4a34b43a49ba75fc999c858d4b85138da5ac566392ee681f258dad7e" + }, + { + "href": "./CA15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220030e8ba5dfdca30fdc463fcbd5e5a6e961c47c5e710fe04cc2e09b54dda0f34c" + }, + { + "href": "./CA15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207eb45ab93c2d05c84fb560b47f26736341441af7bb95ed3accef1e784d055b01" + }, + { + "href": "./CA15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b70e751eeee025ee0b4388f7d05db82d86fbe8ec90f9769aec80a109abf7fcee" + }, + { + "href": "./CA15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202184bd849856cf803a780ec66ec366e5dfaf0c074507388e4c9947f265c2e68e" + }, + { + "href": "./CA15_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203202375ecebf5dc7dcda899448b964b0532b65b61ad76f2256be0790aa112bef" + }, + { + "href": "./CA15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b59faa2e613a074d85cba0ceef08f90a1da925a7d221808cbd37e99031b1284" + }, + { + "href": "./CA15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006a7971ece5e5fcaf082b323f031e00df39b58dde971848dd6f8f5c9e5353ca9" + }, + { + "href": "./CA15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abdae64fd223070257ae8e4947ca94d437ff97e94619d28e246a04f7fd3e1677" + }, + { + "href": "./CA15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204645e440451fdbfbfe43c657ac751f620c7574d8e27b6019a5efd9e80890259e" + }, + { + "href": "./CA15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091e8008a3d09c89a7359c7f66abc87db3a2a98a4eae9c4ff84a72d0017efc827" + }, + { + "href": "./CA15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068b727dbd0f66518a9aefd0059657e16beab26eb451d1b6502a28917a5eeaf40" + }, + { + "href": "./CA15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c1d2f75422a730b5cc0e8f09569eebbc68b520b60d6d433d2998bb9e918d428" + }, + { + "href": "./CA15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203446cbed5539ed2a27156dab979fbd8e7ac329e4993bc36a65a0d45f72d3d279" + }, + { + "href": "./CA15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203aa472f5eeffc7901f0560a7b90ce15b99c5f53aad6715b4d19f52b6bae1800c" + }, + { + "href": "./CA15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208aa74e5e7476313835ab9100526d6f29811341ee4d052854aa580f982e81b05c" + }, + { + "href": "./CA15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a19551ba311d69e2dbd8bf66a48c75b0a2e549b227038f747a3bce87a2980bc8" + }, + { + "href": "./CA15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220534904f835cf9fceff6712be9e6dcfcac7e8e9fc2c27f86fd995c9424d5f242f" + }, + { + "href": "./CA15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a83c79def3b7b29a0ac4b29f679115c0a1998962ccc7960c9e4a13bd9bb9f46" + }, + { + "href": "./CA15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065a54d585b1e3e6c12527e1239d371c2da9e34a66398c0307f0ac4689a0669ce" + }, + { + "href": "./CA15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec03ab74a4cee2ddb85650c42cddf50c848d850487b839a1aec81d9c23a294d7" + }, + { + "href": "./CA15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fca7321cdec39417644967234395fd4ac68396ae2a4b8efa77016b1db6be6bda" + }, + { + "href": "./CA15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d90f120d8c0cf196042694ac66115ff42c77fd61ada7e5052f724cde57300bd" + }, + { + "href": "./CA15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122018fe39b14870e40e2616fcb6ce084bcc31f08ec2fe38eeec8bdf3f635f329e83" + }, + { + "href": "./CA16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202572b990185a6ed318efeac7a0f8ffe51b79dfc685fbc85717a56469b464fa02" + }, + { + "href": "./CA16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b40cb7050fb983d5325d7880c363b7aefe3a415569cecdcac6a83a77799b9653" + }, + { + "href": "./CA16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220928b88c0e06d972774549ac8cc27593e179ab8f7f7c8397721505fda1a2f4fa1" + }, + { + "href": "./CA16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d4774c09a42e21001ac83b6441979e6af73ef33c4baf3c010a61634b45bd4ed" + }, + { + "href": "./CA16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008c807f53cfe23521effd84f068ef4e62d4821371bf35da885a447af1bf44dc2" + }, + { + "href": "./CA16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200762a86c06179039b51e1b61b51a82fc72ebb05b1a4eac8a31ec9fa9bdc2af69" + }, + { + "href": "./CA16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3f23160b915dfda8998be24c05b2c04d077ca17529f4670a56db5e545e8f765" + }, + { + "href": "./CA16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035b7d116494a356896910d56169bfa40199c2db7d3931974fcaae3886a77152d" + }, + { + "href": "./CA16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005d2c8a3d0407a9963d1aceb207b479465bbaeefc641a85a7ed1190faa7909c1" + }, + { + "href": "./CA16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209624dca3c1641f825050eb4ad6e981f518c8a0d43b7d152c9687d57992fcca11" + }, + { + "href": "./CA16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c2fad7943ff9aa81e18395a740811c022708c08b2592c12c3f6bcd35e57e1a96" + }, + { + "href": "./CA16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7edcd10bf6533fa1bd33c27160b050ae2c6128bc040d74e6c20f8bd9e58b94f" + }, + { + "href": "./CA16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8b0a4e337e767c7046764bbdeaf7cb1a638a0a8519506016a7836ac4e477b5d" + }, + { + "href": "./CA16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f847da5967d1c8f1d817bdd85a32aaacb3c0ecec511d35b06110e87ae6cc1c07" + }, + { + "href": "./CA16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fa1c28a2948f9fa7e936ce7361064b205e927d8153bceca853233d229473761" + }, + { + "href": "./CA16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122074b80e1d874de9ba588a5709ccd28d579890c0a5d65ce8c8d521cd79c056265f" + }, + { + "href": "./CA16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c2dd8cb0389a36544e48db82e6959db5f91834a5fcefa523d770007666db6284" + }, + { + "href": "./CA16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4598b4a5ec48dc343820ee59a9f56746d693b009532d7eb0f7fdbca317d32e0" + }, + { + "href": "./CA16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5210e4c9d9b2d788d98ee3d071e64dc995b02088e72542aa609eccc1570f04a" + }, + { + "href": "./CA16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0a1c92368e01ff6a7fe77d0772ec451e495264221210c7f9bedc21a104541f6" + }, + { + "href": "./CA16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de990019be010da626994ec3573b1157ee00621db72cdaa85974f3ce7635d6ee" + }, + { + "href": "./CA16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb2240c4194915b0cf04c86954688e303241cb09bf3ec39d7ca681918bb2d653" + }, + { + "href": "./CA16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b927ec6ba526641976b439ec69fc50885a909f20d99142be8fc5986bc78e7e7" + }, + { + "href": "./CA16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122049e8642eef9d94d30cfcf874d7c616783940a26441376ebf050ec2665862e301" + }, + { + "href": "./CA16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122019b14a82d5df1ba917daabfde1153e992313e2b39e6a3b523d8cd2addafd4132" + }, + { + "href": "./CA17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204231144670fcc9f3380ed1054dd5a74c876a5bfb40ed769f410cb7d4ad7de1e1" + }, + { + "href": "./CA17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220351f949276491d8743bcb04e6955f118632e0fe4fac5245186cda64c028ef3e4" + }, + { + "href": "./CA17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf62c50df47e8c1ebb2f417f03ed97aaea3a3901613814994beb0c96ebbb1e0c" + }, + { + "href": "./CA17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bfc3521d9005ee03280344435845309c7b110153b783ceab4b095e389c4c1319" + }, + { + "href": "./CA17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1594116ae928b9bc001b2294ccd7f66c6cc2147d0d0bbbee3e51711f82b47b3" + }, + { + "href": "./CA17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cc89211dcacbac2bd73ba073e432f471ec820b5cf928c5aa2bfe1d625406912" + }, + { + "href": "./CA17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db1ef40626477eae63e15479cfb016bc9e77dc748baec3610c67e2d8a0a631ba" + }, + { + "href": "./CA17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd08c4fd4c5633214d5e85eaf4a961bafc5f1a77d4ec0d7704a4f0e1e94babca" + }, + { + "href": "./CA17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122050db08223c95a7a627313de0e70981176acd0ffd8a5276a42e31ee640e9d864e" + }, + { + "href": "./CA17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201239b41c511ad57303280caac26d78d2323ee33a3df0d0df5100d998c031f7d3" + }, + { + "href": "./CA17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a218177ee5bba13f0a7f890775479cc16740b4903c74f685f749aaf73b171db9" + }, + { + "href": "./CA17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203539e9e335d72516726b9894876e9cde150d60fd3e5a7b00d4800967aeff54bd" + }, + { + "href": "./CA17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ca05f27db10070a6688a1ea722f06c542dce2dc2615636e01745ce9d0a3c0888" + }, + { + "href": "./CA17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088e91549d7b3981095ede61e610ed7da0af62e17ffba64cb1fe486d250e9b0d0" + }, + { + "href": "./CA17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c23b139b0c492c3310a7b0191af0a0e502697941a60df750cca3a2baff8a0e38" + }, + { + "href": "./CA17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b9bd450275eab150bf19e75b8e7816a2ee4f3d2dbcd91cf32837b34229aefd3" + }, + { + "href": "./CA17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206daa7fb28ac86b6a4e3f77e7449e5d21ff1df8cce8df037fb2bb758011023216" + }, + { + "href": "./CA17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207cab1a04457efee6f2e6d19468663397dae36fa62cfd79e41b099dff94dd7d14" + }, + { + "href": "./CA17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203831df78538d64e123fcd1e5bacb3fd520fc4f44d3fb0a9075b24caad9540179" + }, + { + "href": "./CA17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220018a1d1fbd687d8c4e9358bd32adc34006c62f165e3cf0da4fc8cb7d8308a882" + }, + { + "href": "./CA17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068eb93890e46c304c977a518e134cb2bb01ca55d55df411bb262dd9ef57d3d51" + }, + { + "href": "./CA17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ef70e91c2afd44da20aee1d3ab89e4b184c817589de8009156f1fddfe0d8f0a1" + }, + { + "href": "./CA17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a6fff0521cae163cb1459a2b69eee7803fb6e9edcf30543bc2bb8065c50bba1b" + }, + { + "href": "./CA17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a81bf89d5812d0578c8b5e36f0eb5a4c054227d3175c16324c92ddf16541f2f" + }, + { + "href": "./CA17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2402e2b6584cc8d1229f83e417299895601127dbdf57e5e33eafbf3883c2a0f" + }, + { + "href": "./CA18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220657e8c4b6345f3888bafe69953ff1331e0abd48980f1035c113c68c4dac943a5" + }, + { + "href": "./CA18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220473f3c15f8be780d893a841a50e10d541f2f7a23be0c76e3c73ac0b3f23d6677" + }, + { + "href": "./CA18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207eb39bf500df153864a245ab347da11fccbeb58bb5bb5d1d26fa076cb07ee126" + }, + { + "href": "./CA18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206dfbf091f05899924e01508bb44dc231b5d62f115536f990d6da14c676d949c4" + }, + { + "href": "./CA18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122003cae39742dc4cb6b1d8d9755946ee15358bf07f4b415f3dd37f4fcf4a419d44" + }, + { + "href": "./CA18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b43f5bc31552d1a5d5830aafd41bd39f80697f2b109dd45e796acc607f64b109" + }, + { + "href": "./CA18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c7a71b226df3ccdf1446a4f7eeb49282d06276bb75a244b38c1164e37fc9f47" + }, + { + "href": "./CA18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9bcdafd82fdadaacbcf6ec59f771eb9ea068b4236f27b28cd3501e1b7d09499" + }, + { + "href": "./CA18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cda8a5618d4d418763fadf7fbae752e2755bd16af4e831f0eaa5fbed0371d54b" + }, + { + "href": "./CA18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207db938328b7a26c8d25c60cb1f9b3eec43634f6cae88223150c0e8c5fa9828a8" + }, + { + "href": "./CA18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f82adc3209aedeb311667f096642078c670f13f248b39cb195e07dcf75dd337b" + }, + { + "href": "./CA18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac6b7971d036e076ba1848648992792323b78edc8c3f88fa245fceceb6d74254" + }, + { + "href": "./CA18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6e8029fc99066845ba572c828795fe2a1cbe4ffc444a15b416d2d487a3bcdcf" + }, + { + "href": "./CA18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204426304309cff2d6c3f4c20be7b946c03eebf78169dff347a1279b21ffed4cd4" + }, + { + "href": "./CA18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201026fc7043afe4c78b67d19a3431ac4b76070b73266ea5b1ed260926ae4a1647" + }, + { + "href": "./CA18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008d81c2ff4f953ffd24382487e7831fcced762860ae64beb790c23f03fec4f03" + }, + { + "href": "./CA18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a35c4a593166e7950c17845256d0d6ce97cc5873c15abd3a50b1893f95ac6fce" + }, + { + "href": "./CA18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202af72d7ddc4cce1c31e41a6fde07d01df87c4de5cd0860ab8d621cca03c0b265" + }, + { + "href": "./CA18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200201e3d64321f49a72fe11c8cd28a5e000ade7db7987d27845c5f6dd13a61344" + }, + { + "href": "./CA18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c046a7830b04d1fde19b9f09680fface251057ab441000707a32a6b39e834482" + }, + { + "href": "./CA18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce6411880e99585693cd6f8b7e7e2d156a2f52e01cb8685c6c11019b04b25ea4" + }, + { + "href": "./CA18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122099f57f603ed1d63aa2bba52b6cf80eb97698c8b70f4a52b62485c34b24148ccc" + }, + { + "href": "./CA18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022164c95920ee60535f686b48afac2c27ff818e47d14d470e38ca4f87fcb75c2" + }, + { + "href": "./CA18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203e4536977b9cfba2b5194551265b85eba9649386d420db3c18758261cad2b563" + }, + { + "href": "./CA18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a3eb8c29744b51a8db7ec743de2ff976fa977c1373f4f3b9924805d437ee68d" + }, + { + "href": "./CA19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067f4731787a982662c5b0502f59778f305e539c880cb126038ef01deb7fdb522" + }, + { + "href": "./CA19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061c63a1e5f8077126b4f06ca60d78418559fe917a2e8bbcf071bf4bf752fef62" + }, + { + "href": "./CA19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d75723a71616723dc28c69ed3966dc872b516cf63b48ca839e2e76592f250c0b" + }, + { + "href": "./CA19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed55366a7531a8b0136758db58771057de4a7c20bd4f475c8232ecb1e8e3895e" + }, + { + "href": "./CA19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220854e916981ab7b5336f807260df557996ef011aec1a2ae99a8fbc731cc69f940" + }, + { + "href": "./CA19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7d0a2f80736689dc228f841b7e4d2c081542e1d77dde59e909ba098ce5dea40" + }, + { + "href": "./CA19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d696491a50b2fb027e41df3427b8ac143bbe5e6df9abfdff578b609075be0cec" + }, + { + "href": "./CA19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf9b4ce571d6410246d12127ca6a61d398164dc7cc7a52f7a4618c3a41e6986b" + }, + { + "href": "./CA19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c367b4449653c4af7d7614a0fc5ca3c6bc60a0d3e24516badbc5d7aca11b85b1" + }, + { + "href": "./CA19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f73e5368b1e409ea8dfe9fec66cecbc8f6cfa31a41e4314de4bd6225f8700fbb" + }, + { + "href": "./CA19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c5441c8835b477029cdb5caf94555e555649e50b4d47f973a11d3fb4999d864" + }, + { + "href": "./CA19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032b7b440ba01eaf7e00e16c283c3fb50031a79ae5668baaffbc97c898372dd45" + }, + { + "href": "./CA19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064519b9408888bbe983066a8800dc4bbcab79be3cfa04d6a9b59506ee8a070b4" + }, + { + "href": "./CA19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fbfc101c3ef1b10f051b45eaccd4d9884d0cfecf9532120d4599f016ce248ee" + }, + { + "href": "./CA19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afe66a73e9921900bcb1f4018a7403490864021352fcba913875f12e6536a5e9" + }, + { + "href": "./CA19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209deb713d946b06df55566d64545af8e82c67034703f84fce1589d728f659bc52" + }, + { + "href": "./CB15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220196a8496bf623a92a87d8dd329b2872ab5af82026e916a741b073fd269487447" + }, + { + "href": "./CB15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088789124a7638cf07cc25ff2e74a6b893cc6322dd9391ca4ccc6071117e7c034" + }, + { + "href": "./CB15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205caba3f7f166bff8f16a0b552047b9f397b28f53e738f29ce158dd5ab80337fe" + }, + { + "href": "./CB15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af3db17d79ff7cfa3afdfd27a6ae81243eb6922b7de99a69773e51d9323cbe53" + }, + { + "href": "./CB15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033dbf83ae89f5f751f8e19767baa35422df502a44303f69bf9363429e6726b09" + }, + { + "href": "./CB15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092f7d3a5ce75232d543e07022f50f597e048e155c0b25b493a823cdf411d8f58" + }, + { + "href": "./CB15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220036691a1a8b5ba4dcf6d9df216fbfffff227c246666940a6b6c2be1e8d591839" + }, + { + "href": "./CB15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ca897189878fa1675f986e0fb0e3be19e150e165f991c9222324d617a927e3e" + }, + { + "href": "./CB15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206379bc69b42123a145ca118b8cd2e636297912ca102987b8995a1643a3ed291f" + }, + { + "href": "./CB16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122016df3b24c1ddb19b296f5da41e4e317cbf96b55288fe9fdd33ec8e5f1f4b8662" + }, + { + "href": "./CB16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201efb71cf07c7aa330fcf1f699c7d9a6d31eb9e24c0a0947e59becd60738dd523" + }, + { + "href": "./CB16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ee1e76831f8fbec46222a1ed0da75cd0dcb9c3133e37db36c69d47ecf201285" + }, + { + "href": "./CB16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e90d6c4fd0ca536cc43a0862dc239b2402368279487b1d8f769e4a5d0b9cdbef" + }, + { + "href": "./CB16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ca3e8bf2fc5ae17c8b53fca937463dbc29efe05d88e9787671c811e11b6fa38" + }, + { + "href": "./CB16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071fe6cd84fe0db3f28716e022a2583bd991b0da4230870a6a7b5b6bec717d54d" + }, + { + "href": "./CB16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203278b0fdf7daccece0fef3ba91f7e415b4559e31a6cf72c07a094a802714a037" + }, + { + "href": "./CB16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c8d30bc92e2bd1a3a0379a6aa436be7452ffe7453b1c691989adf8e330117bd" + }, + { + "href": "./CB16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209938274d07b1acf945e1853c6c757a1e184b1d9231a271a9d195edd6277a9b28" + }, + { + "href": "./CB16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c8e0d2704652a90a5854411cddf337e15b94633f5c7e2a5daac97880f8e8110" + }, + { + "href": "./CB16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206276adcbe70b3374d013271a96a4060ab0b8fa60062a4a3c9db438cd8c457a50" + }, + { + "href": "./CB16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b137b73832900e4b186acbf08592cd4e72875812cfcd692795378ab824589acd" + }, + { + "href": "./CB16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9b7961fc015e89d55adf312fd7db35d2109cde38d9ad480e6dee04bad5a7168" + }, + { + "href": "./CB16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207944b1815974667ea3b764d00da3934344aa22da2c4011b7df644badb50aafcb" + }, + { + "href": "./CB16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d926da5363d00076a85fbaa02b0c15d4c01ef71fecd564a39a418c48c34bb80" + }, + { + "href": "./CB16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c64ee698dd07593c3af81d4bc40a58bb6d4fe513837a0b042b3a41bed688b7b" + }, + { + "href": "./CB16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206660f804d62e882ecd547305f6177538879471440462f291586e3b8baa638cae" + }, + { + "href": "./CB16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c44bc412505605af42f8605ba3600e6a9dcee6841003041335081594ccea3c55" + }, + { + "href": "./CB16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085ba3fb9b8ec31b1f05312158731295d48e8693e71dec09267f4a47ad6b17f53" + }, + { + "href": "./CB16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad89e33b2ea993b57695113be32c3441b566df4e4427993c3ba2f63e52f37c64" + }, + { + "href": "./CB16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fd4c04a1a8714d05033b1f2ab032c4a003a8139c32980c1247d6bfb00475c75" + }, + { + "href": "./CB16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ec3780251ec9058bfc1e5cbdc3335e616d120f8650b794d0533d35a081876e49" + }, + { + "href": "./CB17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e163f2919638c2260d5934cb0952ddc2cf11a70513387bd2d647cd7108f2e66f" + }, + { + "href": "./CB17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122041365a937bd2c42bff561ae2b40aed4013bee0ee6cecb484361da7641d42c1da" + }, + { + "href": "./CB17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122063f0a5d1cc7b9fe1f050c11fe058d35fd736b192b15fbf1beb85f2479cfe6686" + }, + { + "href": "./CB17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205bfc12a482f037ad8c3b8fbb2388f12d782b9784c31b2bafe51929cc49d0b70b" + }, + { + "href": "./CB17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b5ca66906ff05fbe36f93418592ddc3659c4461ed35bdaa307f4767fef61c974" + }, + { + "href": "./CB17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220294c4d0072b9bf2f35e5c250e67882799bdd141280323fb7bc5218c98b7d6b4b" + }, + { + "href": "./CB17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220240c84170a190b3cf1b5eab267820b0a3b66e37537986be79dfafe2fc27c68c7" + }, + { + "href": "./CB17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220474aaa3fd4c2d275ccecd7dd5c1c5b21879560258185a66843b7c4cfe1c884b3" + }, + { + "href": "./CB17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220adbc96e2725e8679d96e6ff8cf1a19e7536dc48aa43ecfad9aab6e863f8085a8" + }, + { + "href": "./CB17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8429f079d54dbfcb5b3acf8262c39bdde66de29ba9b6e6ccbb7dc9617931e15" + }, + { + "href": "./CB17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ebc3c6be5295a5927926c08f967f83f0543072f406dcefb93ecdee4a38632ab7" + }, + { + "href": "./CB17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d3cffe578af108a20e4ddd18cafadcc83921bc7fd014fcfd0c5fa90b04e4fc2" + }, + { + "href": "./CB17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220839ffd9dc99a4cf3680ed85a2fc2953c3bcc63d5b468b7ea05f0a82e01d62672" + }, + { + "href": "./CB17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddb34ef57c521a3e99e79339f61bb9ea16826df7deecfadf76ae66e3d61c3ea8" + }, + { + "href": "./CB17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ed8ca57f8e8bc462f45fd2c1b61c1f8aa6a6bed26bc992d71dc45e51ffa6876" + }, + { + "href": "./CB17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f50ed65ec798e7445ca6efca6f68a534b09c64aed8f65ce46d97582455c22953" + }, + { + "href": "./CB17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207287332dd40f6aa7ca7e3c380a524ba5c1ae37705288ebba3980646eab7baf75" + }, + { + "href": "./CB17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202811deeb82981fb534190877d237064d9eb4f6c8f5faec622fe5ddb30c6e256c" + }, + { + "href": "./CB17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220909550bb6520b21c0b9fdd2c07f9b8603358d86a292776ef209a9a16c0315101" + }, + { + "href": "./CB17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220629405791e7e2e5ddf9c1128c832777b4165beff98238a67c5084026f3361965" + }, + { + "href": "./CB17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043f18e51489668e5ee790d6d09ecec35fe6250b98c61302e052d26597c2528da" + }, + { + "href": "./CB17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080ef8c14acd8c2025df94b7cc447ad1c56e021fdf22271a171b1ed8719d18ef2" + }, + { + "href": "./CB17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b462b5d9d536655c7587a6cda15ba290ecf7dea227d51588b98aa323a7af722" + }, + { + "href": "./CB18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc122bcb204df857d12bd665eb74638554d526c3c4ef5ba5d82a9f8cd884ce12" + }, + { + "href": "./CB18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220019cd8bf508d0d89ff8f2cf2517b7ebb2001f8f4da9ef924d72ea764dc544976" + }, + { + "href": "./CB18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071137f752d760c807035becffededdb5eb422dbbc7b3e30fd8042cd20187a7c6" + }, + { + "href": "./CB18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086b4a7651a8a868e392dbdffbbb23ad79ae1c9dfbfeffbf85b3990b73930d6e4" + }, + { + "href": "./CB18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fab597fe260339c51505b1d83fa78aaf0f0c5e4e82d3427fd0072bb8169a08fc" + }, + { + "href": "./CB18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f268c657de54fd0ecdea2f84c22ba72d181cfb3d42690b5e17d08660dc8577f" + }, + { + "href": "./CB18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa145c9b35f9daa8b52da2f5f2b674fb673813c35a0bb4325ce2d3663149a1b0" + }, + { + "href": "./CB18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d9e52138605504d9ca0b6a340d8b1647a4371ce71b68441c773752f7fc7335c" + }, + { + "href": "./CB18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220994734df14383a0de019d9905c7525f683a32671df0d172a34f6a90d5e4c1b81" + }, + { + "href": "./CB18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220feaf81028dc20d485394115255e843d9d1dfce2f786702feb8f2bba5194480a4" + }, + { + "href": "./CB18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d3906684220d20693801150af899cfbb925c43722aaac9bbfc383a5a8a74e917" + }, + { + "href": "./CB18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055ec91e1c7aa9d4391fb22b34c0c967a6c6ecc0b7428f51193bace115575096a" + }, + { + "href": "./CB18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089af90cac7f5f2eefae1d5e9b93eed8e4800d7e33a9f9a20b66ce9206aa7556e" + }, + { + "href": "./CB18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220908931edfe501e18b8810681c805797edca02d19fcb481d8d50d12e2e36adb94" + }, + { + "href": "./CB18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f58af455ee7cb008c7b9ee5aa08d8b0e4665ae5ed4263cf66c81c5b5599adf61" + }, + { + "href": "./CB19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a07f75f1ff1f7f37898e6f80b7bb612627d9bf82277da1d2a0f963f6fd372717" + }, + { + "href": "./CB19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b27a1ab27a56f5e43d7db33870909a7862571c5d07eae8d468691c223cb57a66" + }, + { + "href": "./CB19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbd52e030d3921031677b388421a95cf90e2d579656bb539e9386ae08400dc12" + }, + { + "href": "./CB19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcd531f0f65f6a8cf2433a3fbb8e0f4a5aeaea06fd2815db434e86aa2d7bddbf" + }, + { + "href": "./CB19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f7121a0d013ebe9c26dd216c5ad32093ae51686fba7e6439afa11134bfd5c0b" + }, + { + "href": "./CB19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220514b5271c290d8dacb24fd71e59e63eb3f9280753618769a0efc2df0a54af1b1" + }, + { + "href": "./CB19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cd36ed617fa451a29bfc3a48118b39949a4462c29290653be7be9a462302378" + }, + { + "href": "./CB19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abaa49e0475267c715b44ba9cdf65bc5919b431862d892eba099e651cd6520ef" + }, + { + "href": "./CB19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e1e4702b160f4fce4a3ce57d1bbc4bb7716037800f9f1464533713c99d0ad1b" + }, + { + "href": "./CC16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122050cfbba0e7c7abb44be6f55ddcbcaeabd392d3adb7fe3c280220b884cc5a368f" + }, + { + "href": "./CC17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220394d043c60b6f669c994d3c4ea4a36fad629f99841baaee145ef0ec052618b84" + }, + { + "href": "./CC17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ef8cf5c1aa8e97b7d8b7a04d145f3952d8b674c583318253c84229e2fa5546f" + } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "created": "2024-09-16T23:45:46Z", + "updated": "2024-09-16T23:45:46Z", + "extent": { + "spatial": { "bbox": [[169.4839839, -45.1015354, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-04-27T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122085b9473411a5b91d2eb0d41de7d64f485b2098d32fe56339f5c1d48bc15a5707", + "file:size": 129195 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json b/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b5284fa6 --- /dev/null +++ b/stac/canterbury/canterbury_2020-2023/dsm_1m/2193/collection.json @@ -0,0 +1,6750 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJHF9AYZCGQEXM45GYH20X", + "title": "Canterbury LiDAR 1m DSM (2020-2023) - Draft", + "description": "Digital Surface Model within the Canterbury region captured in 2020-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BS24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220313a0141905ad50cb3b45afa52a806d1ff7858fd42a0f1b7dbb8549cf9241616" + }, + { + "href": "./BS24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085c4b911332c09d0850be72af59bb822e4dfb595388e1a46c000c314318c80ec" + }, + { + "href": "./BS27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a5998490463af85a39906ef121c06f2696ad99fe22bdeb70df9acef0e6a5e3df" + }, + { + "href": "./BS27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122075c3f8002aa76d126d89ae99adf3514f7cfe09b67e51ccb65011e3a8bab60340" + }, + { + "href": "./BS27_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a4f56c21eb7ff2f5971289597445eaacbc68f23697041628c1fdd695b9e6110" + }, + { + "href": "./BS27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f654d5cd4acd55e92d0d4cab040dbf463912baaca7b99a5d4ea906b77bd4e55" + }, + { + "href": "./BS27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203eb3d6e8c82fd0ef79e9a1a6493a3b57ec96563bf31a80fe392e68ac6edee07a" + }, + { + "href": "./BS27_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a74fbf1925ab1460c2997c2421d031d9ecadfdb77a8a3378016dc506e3de34e7" + }, + { + "href": "./BS27_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122021af95eeb9867ec263291894907be30a083022909fb990267e088ced08c4bf4e" + }, + { + "href": "./BS27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d66441aab8031e94c4ae128646c1b33dbf2adb83ed186d3ad683ff164c6f370e" + }, + { + "href": "./BS27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070a090d3ec885d41024f5b099cbea06202a98db447bb62b885199739aed52b61" + }, + { + "href": "./BS27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b1e5471a12b867998db290c014ca05fac2b00429ee67d0c34db9d39d1449b1c2" + }, + { + "href": "./BS27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cca509aaeca102338f9454829287d644fc6f8ae2b95edb52954d98d302e14c5b" + }, + { + "href": "./BS27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220adf80b00a2e0f066f587332ad13304bc9e30d0705e985ff400a397e846dc3582" + }, + { + "href": "./BS27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a233e28cba09291b09112969b93792d33f2849379d16a712f0b83c40c6485b62" + }, + { + "href": "./BS28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e730fd31d38dd9bef2c70e7b559606a42895c98a6d166783f35111bb829782a4" + }, + { + "href": "./BS28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b3301ecaa4cf2f1b528442957e110f2306a9ecb558c2ac2cd35d9aa9a58e809" + }, + { + "href": "./BS28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b0609797f9118073968a02e8d5881f64636bc933c452c5ccf1a4eade59e87ae3" + }, + { + "href": "./BS28_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122053050414149f40900762a619baf6087339819570331396138a413f838aa05ab5" + }, + { + "href": "./BS28_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b03f92dc215a8598377a34617c7b081a900f5eda237c1a1fef47057a1c5f9071" + }, + { + "href": "./BS28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220391186c38eaf7d956e73ae143a14a0e0331b80021ac44db5ffe1dfd48d4580ec" + }, + { + "href": "./BS28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220841d8bd529d30c46383e1d3900c40f0627d2a30730e70d214104a0e081df8bfa" + }, + { + "href": "./BS28_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c7eec87cd4d4993f0a79b131645e7bd07c3d73af1220f0136a3ac387f5c9b88" + }, + { + "href": "./BS28_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a2bb54a1f073c4c9ab85d4d4b08f1caf4d96c777258c824c4067393351b2093" + }, + { + "href": "./BS28_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209892d0603445ff18fb1797f4022c7cbb4f3e6038d9f2ae7d3153b82f4bf86830" + }, + { + "href": "./BS28_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b511fafdd38c9f4d3275d68a31a8debd7594e867e496662894f1afe178d1456" + }, + { + "href": "./BS28_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039668b6b89b3fe5ef08b645a74c2132b0fbf6096cc5245d156417330ca2b4649" + }, + { + "href": "./BS28_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5a929e4c4071ad934d47856bb9e150faafac7214b73663b3db31d25537b02c0" + }, + { + "href": "./BS28_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d01de9622c9e4d0c905ec6298f9367c3f096864a4936a89af0feb78b91ab419" + }, + { + "href": "./BS28_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c85eebb873759f36ab0cec67f99df2bb0235696e6bbf1e1fc9ed0f2537366288" + }, + { + "href": "./BS28_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c30f54699d8452db739898f900c43d3264e4511ea906385458c16230106a194d" + }, + { + "href": "./BS28_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f0c04a14fc193c7cd89044bf1fbf06d73a74dcc7249824af6d55e381b006d7e" + }, + { + "href": "./BS28_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ee37ae081cfeb9c787144905fbe4a539b736b9871c6d7a9a28dc5f126c05983" + }, + { + "href": "./BS29_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220987d1f58143ce9bbc9afad6d1da0caf7bb74c75737e5e3dba836d464cdf70258" + }, + { + "href": "./BS29_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c4411f7c361e1a6bd88b3c5d47fd9c2d5f1cde1bcc364735ce27fced0a4d672" + }, + { + "href": "./BT22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200df5d46d797e22d3188a9a3075220eff75897a9e8fb88e2f369c42a6aa03eb92" + }, + { + "href": "./BT23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2b6da2b38b8c61438295961c22ddbbca1e8bf931a7e467b02ad3f22e72bf506" + }, + { + "href": "./BT23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c65722eeb70bb4719f9fd33ed73bf6ef102359f56d2d7cb5d6f2a25a3be31a2b" + }, + { + "href": "./BT23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7d20c1edda578e08c696cf4d2f32c1540c093bdc2d451fdaa575a28e3cbcef9" + }, + { + "href": "./BT23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c1811fe08bdccaed2b64aa7e88e94d375e8e96357373a6847bb50e219e19abd4" + }, + { + "href": "./BT23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083fc58e4d4b7625a015ea3f2d3aa4518348de1e70fbfc26a29b456ddaf2496ed" + }, + { + "href": "./BT23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac7928886952c214b433e8bd70563c707118886c9788817ecaf2552f823ade54" + }, + { + "href": "./BT23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d8008111b6ada906713d7dfc6b44a4bd5636645dce92e5cad67d7fbcaae72b0" + }, + { + "href": "./BT23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220728d2f8d756ff5cfe26e66b6e1cc2b54b8eeb09616ceba34bd57aeb6651b40d3" + }, + { + "href": "./BT23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203572e86387da96102b9063d0437b70f70f80b25f12c53f1911056f6eb7db2c87" + }, + { + "href": "./BT23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122026e3c9c14ffd1c7fc837a78a15202e8b42eae9d7b41ce38782bc57eff3c8b616" + }, + { + "href": "./BT23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ea35c6da0cb67677daa3c456be8264e699ef2fc89869707386b3ee1c6e8244e" + }, + { + "href": "./BT23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8f5c50fd7718b3db2db2a719d3bae326da41e556be6ad850a4a07f301ce9298" + }, + { + "href": "./BT23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086c18017eb090e9cc67209330e6edfb9f00038193df8e37fd08028001e612c87" + }, + { + "href": "./BT23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034a0036f0f6935d3f45e1db9a65451c9a0c34186cc577339ca293d8dffed7f40" + }, + { + "href": "./BT24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a74a39e51a6d758ed3a4b8f57eb28179d2fc70895d63a31aa249caf4cf64dd7" + }, + { + "href": "./BT24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122060353030b2157ae2a5afa24f39ae28649aea941144f155da8c1add248132f600" + }, + { + "href": "./BT24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068f236bd02f2a25123d6c9d6ddf591114bdc8f02274eee22fef6c061227b5dbc" + }, + { + "href": "./BT24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a291b213eb42b40de62d93ff43d126d718ab7b3892c701a5e62692df73ee654" + }, + { + "href": "./BT24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea9e676f8e35111f490c56fbe5d4072390522f58b02ef4aff38409810601b2d2" + }, + { + "href": "./BT24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071c8ce6c330c76d8cef8f0ec13081e503cd048abb69c4b642d62a2caa13376f9" + }, + { + "href": "./BT24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c85cc02d1372a4ee636f856164d0e5011b6f1d8c93168cf316c624c24a5af29" + }, + { + "href": "./BT24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d7ba704adf8ed8aeb001aebf8c1969c856fbffc0b1c42cd2c5af60b660ef8e7" + }, + { + "href": "./BT24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202259a21e0e75bfd3b8025ea870bc69db076128995d28794d7676bf1fd5479df8" + }, + { + "href": "./BT24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203fedce906b596b1635ebbd90e6265eea6e64fc06579dd1ec7afb029435e6189f" + }, + { + "href": "./BT24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ec2548dc84487be94ffc96b4af59716ee750a6ae3da64102cf4e7eaf063d98b" + }, + { + "href": "./BT24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c17a756ef82c85824173133b2507deeb57df27c25f1340a4cd98e1dad1700a5d" + }, + { + "href": "./BT24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220757e2d79e8aff90998c1857b950db5a8a888e5dfb72c62f39600b372a0ec01e6" + }, + { + "href": "./BT24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f291f3da33842f1387e27f393fa98550d8259f2d08da80925a57c72e021964cb" + }, + { + "href": "./BT24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d192b039e3d6a9e0d9a57e14800153e72eca4ad0a42a5717b2e32bb0d69d71ad" + }, + { + "href": "./BT24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f7c007ef0611b66a8e4945e35e36874f29eac55df830bcedd5a241f50f270a8" + }, + { + "href": "./BT24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e9d3a183ab4bf17834992e836c56561a62a9e1cdaf9b3b17239c6415024c63bb" + }, + { + "href": "./BT24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207650c3867ae7d34a5f499df0af22e721db0f8bf560164b454cc3136e10ae8429" + }, + { + "href": "./BT24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208a0b900594d607f39d01edd4ad7507262b4ece8db867062ca8465f77389c6a00" + }, + { + "href": "./BT24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122082ef643b1c0f998cf7a0ce679918f86b78406d6d6be94262842037bae39ee6bd" + }, + { + "href": "./BT24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220edc9d382be5bf3240ae43d25ae84a5c3a970035519f801085f43bbd2cade23f6" + }, + { + "href": "./BT24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ada4c3e138ddbe61ec656c6fbf5a260df4a44e734c58088d581d26d887cc151d" + }, + { + "href": "./BT24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa90642c459fa1873f7d13ad3bb441157971976701fe955cc76d4d0b2154cd45" + }, + { + "href": "./BT24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5104217600894df4aab13da6944c9584345978cf7d2fc796540dc77c9552a7c" + }, + { + "href": "./BT24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203c218dcf855e79d69aaee8dfbd9d7cf34678f9d5f6006e1158e1820c235b89a6" + }, + { + "href": "./BT25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220323e53af2214c99dfa62deca390a113d7b583621740b89c36d3d71f6551a1269" + }, + { + "href": "./BT25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068c4d8c564511cab604e4962743cc9cb67142b89b21f30728d53b87c635b025b" + }, + { + "href": "./BT25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb33335c6273ad80415d9d7c19054869bbf27ac233f555e4f5a453ace8ba5cce" + }, + { + "href": "./BT25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6d93ab3d5edd2eb846ef8e979dd012dc169682f6f61e6db409b3b67198416f4" + }, + { + "href": "./BT25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df8ab159ab4bca9ed883002ce9e81b81b0d2a0cca0624c92584f1057856b9255" + }, + { + "href": "./BT25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a01bc3926c3cf8d7f46b1d1e33b002fa3b9487326bdcad3d1ae74410c1c2023" + }, + { + "href": "./BT25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ebe9b9cad1a1e0e01eacd86e22957c86aba69f389bd9ef65bb0c302e627cbf9" + }, + { + "href": "./BT25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d24ba46784d497060b2f1b45532fea3099c93c03fa6bbd5c628a456f27f9bb7" + }, + { + "href": "./BT25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4553f2b5017797b2e06ffda22f995973a4317b2e39f4241a5325ae731f9ecd0" + }, + { + "href": "./BT25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122001ff4ed07c6a95061ab7333bccb2162698367069afd05fe16582f4f02f06cb2d" + }, + { + "href": "./BT25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209658eb422cc5be6a5d13899b2bfa702b2b8516091e356ed80c0b76df720174f4" + }, + { + "href": "./BT26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9cf069dba152bf1d1a0afd6fd5806f92ca0205a31e50d556fefded8dd34705e" + }, + { + "href": "./BT26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ade6600c886c5f9a06dd9e66bb608e1acde395e8543622a885b29a178aac098f" + }, + { + "href": "./BT26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122021fd48d7144d6d8e773cd225d44931cb5aab93843bc687e930f5ed85e5db51c2" + }, + { + "href": "./BT26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027f70fdfadbf1a73b64f719484ae1d4b5a68c9e66bd4ec190b01d7b21c30f796" + }, + { + "href": "./BT26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202406cbcd058e1aadac099ecd3b9266e79926ae3cdcdf782e42ac44a48a7cd99a" + }, + { + "href": "./BT26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092c9a82fb615fb322caaeec2a289b53288e9bd2a9c228a209eba4cb785c926ea" + }, + { + "href": "./BT26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220153de1109d822c66e864eece03178a8c8c4e529658044ea0dfec69fe0e37730b" + }, + { + "href": "./BT26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbbd720030fe1cc05868b0f1d5a8095b0767c07bf8011a7a98fa3e2e95ce291e" + }, + { + "href": "./BT26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bae302ab18c760ba300d1004bf5059bb0bec6392d1748eee2b8077286c4547a9" + }, + { + "href": "./BT26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220789a8dbf7d18ae6f6b83e2f80493e5c462379117207525c659f8993ab9870696" + }, + { + "href": "./BT26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065cf708a92e8fb8b70b0addae9d451c758b152ed4b0242589db317a8adf8f3a3" + }, + { + "href": "./BT26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d49e307f9fb167ba7bae5787f9a48af9ffae0a34d1082a43455451d954a1c5c" + }, + { + "href": "./BT26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b02c6c0a6b7c5de670f06c8f28ef6cf9ad88cf03713c667e4927274f04c53349" + }, + { + "href": "./BT26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078b74327316ceedfa6437ea4e08438f5dbbb2097a74feb90e0d62404691d3d34" + }, + { + "href": "./BT26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206614ebb600217c5fb8058341063135249f6755aa6cd5f106cf3933afc020a8b5" + }, + { + "href": "./BT26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204f65eeac4319dbd27dc44c143b524f6fbcf5ba28fcf39420851c9a657a0ed52e" + }, + { + "href": "./BT26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220546de49908a32e26fd75bfde4a1bec00d8bcfb369513789364d5c66859e8b7bd" + }, + { + "href": "./BT26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122031761463238265f945852f138bfb39a363db636b9bc86ec31e55282dd2474c8c" + }, + { + "href": "./BT26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122075c70987f06d4b43301734657326f919377ed7bccc7635d87352f42396d09ab1" + }, + { + "href": "./BT27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c3b6978e4c8812afa62977bbfdcc8f17cef068247f5a3b7c8b9bd5569195eb5" + }, + { + "href": "./BT27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122089d81b99726e09e6362258b108505c825a964beae3d7a98409ea54cd4961e2a9" + }, + { + "href": "./BT27_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae43d1b40422518ba5c2290c7112dbdb57214be27f99bbcb16300ef06fb50103" + }, + { + "href": "./BT27_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013493b663011e77dff02e9091becfd44256e5e19dfb8b48856696d568553eecf" + }, + { + "href": "./BT27_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fa60be108e8727bce598be4d5fe941a54b81eb8a162094e7f81b3241496d84b" + }, + { + "href": "./BT27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7dfecbe2905129a007f08e3a018ae65aa8b871d0342d9acfa0d84a1b6ec2290" + }, + { + "href": "./BT27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088eb3ee93a92581fecdb1e9087a1502530a4390510452deef21053fb30f3ef3d" + }, + { + "href": "./BT27_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e62dc1f2918488cd61c0992d2ab95893fe5c0fea8cabb0ca611d81b709caba7c" + }, + { + "href": "./BT27_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220067b84a0db7a65ad181a7dab5a1de54c972ba32e985bb967202a181288be4394" + }, + { + "href": "./BT27_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0237ef94cf2ac63f3f4475eb5de5d95d09535f6581371886ab46375f4ce6c76" + }, + { + "href": "./BT27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220335e47ec452bacdc2f1b9f372bebde10fc6c07408b5d9bb3e1ff17085e70c840" + }, + { + "href": "./BT27_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d24391d32fcf5f902b273dfffab86865ac66346c68d7edd95ef7e5c1807378ac" + }, + { + "href": "./BT27_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220671dc2d00531014a7e070db1bfb352efdfde72c1bfff630cc07b05c3b1227a17" + }, + { + "href": "./BT27_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027e62c73f61ed7d9995d24c92eeb0298e8e24f15183b43eef4e8b469494ae6b8" + }, + { + "href": "./BT27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220395ba2ddfcab8fdacd708aceaa5691eb2964fc169f07c470f1b377ad23e7f3dd" + }, + { + "href": "./BT27_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008accfca7d97ed59e47d871cfd2d3e15510ef3beb223a698a85d0b7a5a40d7b3" + }, + { + "href": "./BT27_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220494eaf8dcec5ae1347be264ab82e6ea689895cdcbc7d8c4c97731b73c7bc8c19" + }, + { + "href": "./BT27_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e13fe3bb3ad4bda0a0b875b04d4251f33055cf6d6bf56ac27f29231263e46f6f" + }, + { + "href": "./BT27_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d9ab1dccbd2b4231561fd19e1e0924437b1a041548874302f5fe638d96c98c4" + }, + { + "href": "./BT27_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205b29cfa60a081b5fdccc71396eae72bac3c5ed789495a1e678d07d9eb46afb0a" + }, + { + "href": "./BT27_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bca7208426df3d44bc3e42f7b83ad7eca7e246a52c115f426762c0945b9fd380" + }, + { + "href": "./BT27_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122093ed6e64e5ba1be175bae837cf3e69427a5b039a1d32e930841c86b7b8119345" + }, + { + "href": "./BT28_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdbfd11a51e43a39a30a4f4d45cbf7a8f81bed43d2edb753d4fe3597a142616c" + }, + { + "href": "./BT28_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220482e9ce406bd763b88691280a368167b53f40e5d9ddb9b28d8bcc0a74711947e" + }, + { + "href": "./BT28_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f1ba8e838e1c7c4b58ffb381d65d0ead0dbf72dea17b4fb3a6c1011b8167bea" + }, + { + "href": "./BT28_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bbc9c4b96555609fed3958fc5cfbf392ece3a28592ce9fb03ffcd9b914cb3d4d" + }, + { + "href": "./BT28_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203086f94e391c99611da57d2b08e8cfee558911c9a5f8c20cd47cb9e0aed689f3" + }, + { + "href": "./BT28_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202414696440056d2a313cafe0dc6bc9c703ee688a6855fc132e2c9a84a513fc51" + }, + { + "href": "./BT28_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e3b60ebaff270bc8dc5fd19a85d65889a49fb373a7647865949eea0c224d45f" + }, + { + "href": "./BT28_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af9581063232f2f4460738fbc5dd354f593c673346b64c390897550d11a4672e" + }, + { + "href": "./BU21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1d08f4138f30e200a45a64cef26ef7d5a4d82324654340e405bc9e920319715" + }, + { + "href": "./BU21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b34867af3f823b828ee8822a040ffa8367cf5aaa514f2028d7c4d5ad98cc73d8" + }, + { + "href": "./BU21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9f44a6fc50cac2f93a34eff028ccc22e46668493f27abee95b50c14ab7033a5" + }, + { + "href": "./BU21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2bbcb91f06aa09356f8472eac4b797864753035ddee48bc5e097b79ab5d30b3" + }, + { + "href": "./BU21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd52bf43fd1561fc5d6269b59a85c277668c7fe9bbfd2015d5ca50105e6b9b59" + }, + { + "href": "./BU21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122008b02326605c5ae72f7c71263ed56dbd87a21a3240b7c9b3b629557b11b957cb" + }, + { + "href": "./BU21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204bac2692f1d7277079aad1fc05842cbba2657edd66c61e84bdc76030d998a5b9" + }, + { + "href": "./BU22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e1c12adc8c3e53337a6f1bec28f881563101ecd5dc7224d1a7c829e0d77ebd5" + }, + { + "href": "./BU22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090cfd79473eb702d7aed26220c62359eff5c114fbe113f25535efb7a75d95236" + }, + { + "href": "./BU22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d95b0dcb7faf0f870ae4ca982a54116098196148708a7cf13777152fd555f3d9" + }, + { + "href": "./BU22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e66a8e60b79827873acaaca223049acce5cd87a7fb481187881dc79d72a42eec" + }, + { + "href": "./BU22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfa6daaf7bf4f85ebd12479946c4a6fe5fe4de9c405bb4f14803ccdf8cc1868e" + }, + { + "href": "./BU22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d31a85f6bbd7bf6c2072488c07b77343fdd525c86811f4a20e1d706c98d3526" + }, + { + "href": "./BU22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dae2d72a1a93123b80c2eee03288a07af24dcb3524b2bb796126bb652aa2e308" + }, + { + "href": "./BU22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b88319b7cdb8b84bf502e10933ec079c5a1b88663f6758d5c8e25ba5437ec585" + }, + { + "href": "./BU22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df73499258d19a7c76495723605d140ff565f56baaeb48b5924fdace3715048c" + }, + { + "href": "./BU22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220117b01f34537746c833e0b68d0208b469430d88ac672d480f8a9a9b6d3220e14" + }, + { + "href": "./BU22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d263684e6764c8ed5f09fbf893f5088b258c11145890c2a05314ac6224307b44" + }, + { + "href": "./BU22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c84ce169908987bf687793048181caa56b6551a7fb07d306616d3ec36ad25291" + }, + { + "href": "./BU22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208115964fa052acadf8e34e3a1a6aa3651bac679af9beb14f91aad45e54edc66f" + }, + { + "href": "./BU22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b9c20312b7419bbfc9da8308dde0ab4335f88c0e15ada14263066df8053fb912" + }, + { + "href": "./BU22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bedf15380ac0b1fb55ee8419c0152020b9f52762d82c96e9ff3d1fd6d6121c38" + }, + { + "href": "./BU22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201c86d043451f1ee82fc63fbe86191b058ed0d9fa54006246fab954080a6ea3c7" + }, + { + "href": "./BU22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e66d302883f38cb91d9161ff180fc4a4467da803240556a9975b52806f340fe" + }, + { + "href": "./BU22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cb7351e4a861862ac16aee9cbe518b6f936fccf3b51421a0c714d969bddc461" + }, + { + "href": "./BU22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202748bf0409a65f61f5c6bd017e3f93ecba89d8d4d20d59e51c7f9c6492eb094f" + }, + { + "href": "./BU22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d589c1d6c126aa6997fa0f3075e0f43ddf99dc034551d4e679e6a77e5366d233" + }, + { + "href": "./BU23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209bacaabd999a98adc1e2e598343ee54a049353e4ef0440b1dd53b7ccfd01757b" + }, + { + "href": "./BU23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2bfc28c4a3299031f846b1d1c2d538d23cf6e7ad42cc3fb85e7aac77862beed" + }, + { + "href": "./BU23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b82805398f8a227691be5d8a90b8534ad232cf3bcacdfc726b1d6b6c1867d4de" + }, + { + "href": "./BU23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122098c2bd7e13893990cc27ba776d410dbbb5e4988a0a0d0fb6f2baf99ea02b7b94" + }, + { + "href": "./BU23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b352be656f7478d20bfbaecf80765c3dcdcbcf17b6306ff8d69e2830324f2ee" + }, + { + "href": "./BU23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200bb731a5cab1795d979f053000d52899fcfaf80731dd98bda423e2e1bd0a8387" + }, + { + "href": "./BU23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a84f6e9d8828ed6e4a8bb553b76b102b3e963c77e94164905967ab96cdc7d5" + }, + { + "href": "./BU23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ec964442ada0ffd5b8af0a700d47cdc7ee9079c90491ae891436844ffa51579" + }, + { + "href": "./BU23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067b8953d99b64fee439d18426d331705980ae88073ffab4fd6be18fd23c78af7" + }, + { + "href": "./BU23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb937ea98dc2652d751209e33f2086fe07ce712e4a72b25f6cb539f841a942ec" + }, + { + "href": "./BU23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202fa7438888f0a84a22b65937af152885ec257cb00c9a82dfb575efc7bf951f59" + }, + { + "href": "./BU23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e3f28dc6aac38be818e5044881015fc24da746a294a3dbca2fb3c17ca1f1418" + }, + { + "href": "./BU23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f6e90c44eac12d6d8099f25c94d88c1ad0b675e5349b683b4afed69b64094e59" + }, + { + "href": "./BU23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f4444bdbd2a75749481458f493933c6d9881bf88c4913d1a3e0575f4a26404f" + }, + { + "href": "./BU23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc8be44a6487bc02d28ba66b7d2a3f5cb4af2af99c824cfa7abfc81d6a0afaa8" + }, + { + "href": "./BU23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220140d6f371d08ccb95031d0fcdabf26dbb45fddebdbeb38f0a8f9d95f3119ac95" + }, + { + "href": "./BU23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1a4ce318e69733168ca5cb597440c5492c4e32cac4eb9197a52dc390f820228" + }, + { + "href": "./BU23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207235f3260770b5b4a15664606ffee6fb6abd0f54575000504074c9f0ec3d9496" + }, + { + "href": "./BU23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122048520b3a7c02f2ee99c0120fe145b328b799602e8f8fee637f283fc6094a00ad" + }, + { + "href": "./BU23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea47e866b00e4f7bcbc1f7c8da89da8992f42b567b189ff8d8ee528c6739e209" + }, + { + "href": "./BU23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf7253db38feef3a36c3cb1822b8aca0a11e205e0e2f195217f1d45771e024d9" + }, + { + "href": "./BU23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220675e267a2039d94b897762288153b1865729351457b6772a4e51e14292748268" + }, + { + "href": "./BU23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207f7b1fe5242f42985a34a316106b10ca069f304486b22547aa4e710ec62da059" + }, + { + "href": "./BU23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac055f7ab41e27bd9bdbfc43d319d2da9a30ff53d714ebdf540da8d4fa6fb1a1" + }, + { + "href": "./BU23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220620a9c549e2be5de253b37cb3e45170dffb2069b8cc0ec7f0fc9fb4fe536ed6e" + }, + { + "href": "./BU24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ed0230e7a341c3f8e91425114e9641e7c6fefe61a1f5c0553b4fcfa4235e6c7" + }, + { + "href": "./BU24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a79fa4a01e34e30113d1944280b24fa9f850ac98e423ba98d26cb3f1ccd65d0" + }, + { + "href": "./BU24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220698cf5dc06bd6e58c82c535f33c417190858841bd47d192c1d105ed296c134b9" + }, + { + "href": "./BU24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ec60f9e4239d9790ee278171a58c737e7a7c53373155a6701c6dbd1ad80a97b" + }, + { + "href": "./BU24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a2fe5faa643c601d66d9350853b30ca6505b27daac6b8c39a8d918f3d95a56a" + }, + { + "href": "./BU24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220204cad3f6f23dd4aa2ee5efadb6dcdfa183b446a56c1ada03fdaa42d2362c11d" + }, + { + "href": "./BU24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e20622b2f3f977ec38270ef7c16daa91cfedcc0022656eacba5fa75833224d82" + }, + { + "href": "./BU24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220481de12314ea75d5b711b5a750359b78baee5242b040a282b3ff54d2389f01fa" + }, + { + "href": "./BU24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220daf858c34e6f432f9fe4ef16700663a9b63f4fceb24da7b461588857ce476e07" + }, + { + "href": "./BU24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7c79b197a089dc5ba7d6968efd16adf36cd8d54baaf6cd121ed82fadb376937" + }, + { + "href": "./BU24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb4054e24d9e3afd82966647465f01abc1d70fe70bb38e9b4f7281569c52dd8c" + }, + { + "href": "./BU24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030f85c3bc39741bc02b560cd560a9a3cf41feb9eff658165e5afebd416a34f81" + }, + { + "href": "./BU24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220733044e9fc7f76ffc7f6d3622600d941c6e4367c3b60175faee92bfd0abc99bc" + }, + { + "href": "./BU24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3103b13c8cbbaa5454d3af3af9de4b985b0571250bda79d327a725f3730c0b3" + }, + { + "href": "./BU24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aac80076791e01fa6d80266d0a8a52166ad233288f2e7f08bd2019cd591e9d48" + }, + { + "href": "./BU24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220625b2e42da12fa43332b4c20f751f6e46de95b54481128f02ac75f1d2a5eec69" + }, + { + "href": "./BU24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007ec2c1a4acf0534b51d8f9695d4750a04bd2f151e517f715cee55e7a540fe82" + }, + { + "href": "./BU24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220686789029d328c25f01b37cf78aed502231776ea8115c634ab10ace9b17a017b" + }, + { + "href": "./BU24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052667d0156499e87ac877af693bc8da4cf0fad594cadbd1210381910a3433784" + }, + { + "href": "./BU24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122057844ae5260d64b4aa36819d8d05a56dfb485511ecfe0e788c3419a3433a8a92" + }, + { + "href": "./BU24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e3d5e0368d823b6d793c4b3ec2dab87d13e1cbb9064419871ed7a3c351b4c52" + }, + { + "href": "./BU24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3d3f02598ae5c261aa2307cf055162c9f2ee02f3c22e3a6dd02f00b99321e8c" + }, + { + "href": "./BU24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c82ff95d612956ba2ae41f41c25513e60e6a270a3246e522c11ca971d2652a1c" + }, + { + "href": "./BU24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f972f5644d519d44a377f01978877ee18b69785054bddf0f67cb939c81363801" + }, + { + "href": "./BU24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d76740d771b21e5c3f0b16159b4739a1365b6c94239dd454f81e82cd47dde8e0" + }, + { + "href": "./BU25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d13d0f9718d48c034fd68b0f5f3e1cbc94fa13189a60f3ac6f289868fbca5a42" + }, + { + "href": "./BU25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039414351c403bcec59a69b2a79819f7756af5bebccb49f716be4fe37da750186" + }, + { + "href": "./BU25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014dcb8b18b47b085ae532cfdc2a6d5f9916222954fb3b002cf1d4885676f47eb" + }, + { + "href": "./BU25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b1e3300cab1e396507e13e20dc8e9fe10bd073e06839198909cc6fffb0dbad2" + }, + { + "href": "./BU25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205972df117c13e087ff8bff66f58411d5a4cebf5b5e6d8accf6ddb1e7ba75c35e" + }, + { + "href": "./BU25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090ffff4ac24c8370fd86e91849452ea4c275fa06cad309fc23e65a774820945b" + }, + { + "href": "./BU25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd6bc007c51881ed09e4d448a7695f609c6659f4e3b1c0725f7db004e325abd3" + }, + { + "href": "./BU25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051986a389f32fab82a0fcbba2e58ac07ded0b09eb9e02800e69ea09d3969be77" + }, + { + "href": "./BU25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d0816216e709e34f4d27ba4b7331df17a2070c6c3d08554f42a7c3078c04d3f" + }, + { + "href": "./BU25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122011e745a3b5f47a93541845f079c3810b880f9accca1b9c5f43a45526503ed4c0" + }, + { + "href": "./BU25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205864e209573b90de6dc187e68307f132c4872b7b5ed69a165c25ab73df190772" + }, + { + "href": "./BU25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079c1466789b3610bb8d9eb1754235eed2a684de046f251d5f54b1c36e3827cfd" + }, + { + "href": "./BU25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8dbc8d081d9bbce95d534978b5e116be6c938652ffb8af1895358cea2fefd1c" + }, + { + "href": "./BU25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ede0a99434a0072a48628bbd1574a951717ffee37088eed3e77873dcbf7dd202" + }, + { + "href": "./BU25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf996718f33e7a2783d15ab54b13e00015b5326e7b9e3f1174750da168715e14" + }, + { + "href": "./BU25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220671799d160daed371c612e9740251fc10d693a05af23869cc4f715220efb2e69" + }, + { + "href": "./BU25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5ecb0b39382e593b283fb1d53f85aaa6215521069bc56025015f3362f8157a5" + }, + { + "href": "./BU25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c924c70f082cef264b09077285d79c61fa8540236b962db8d6f8c6aea1513f12" + }, + { + "href": "./BU25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d139dda893e22e8a49b9d121217cf46e22b5ae5387438fa766d151bf8763905" + }, + { + "href": "./BU25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e673ed58f287825a8b381830129272bec24d72669ada9aea1dd4ee8f78f821f" + }, + { + "href": "./BU25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122055753c689a14b72e43e844fe2dc4d741fef229b5d7e59a19a69ebd4216fe41d9" + }, + { + "href": "./BU25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015998b8002c9d0f0901c149ffc439292a0a7488377126246e5a6bdc3aa1255bd" + }, + { + "href": "./BU25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5bd12a97501b8bef660e1dad54602118c9ec2f726004b80b697147e3ca007f8" + }, + { + "href": "./BU26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122077a206a11ad9f985dbb94ed8b6b90388a7896eb1d40fbd0c6f577490a2b14255" + }, + { + "href": "./BU26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122020b4116c26a219dfc9ecbd376f7674c9b2c8a4045ad2691e2f09da4d038e932a" + }, + { + "href": "./BU26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220214b30ddc4e8966d3344e7ef417286f5025072d0b9a436a64eebb9b0a263902b" + }, + { + "href": "./BU26_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb839012d4fbd9d73e244167b7bbe658dbe3fd07ae675099c6e5b58f3cc52a55" + }, + { + "href": "./BU26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065d1b1618e863c71b440752c8c7cf9367588b050467dcdb028dbd86126186e30" + }, + { + "href": "./BU26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f81bdcfc89a48a3fddfbdc0d2ca935476ef2fc8a225738b06f24ee1df9c863a8" + }, + { + "href": "./BU26_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b508ef066f6d5b6a02f02cc797cfb1e49ade86d603f5249449d3ef57c729d3b" + }, + { + "href": "./BU26_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fb170c032b860c1541bc2b0cc6aaa5a0d189f1e4070ec10a29ca4af7632be83" + }, + { + "href": "./BU26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d676444f011905b3e866baf1a2d1bb45844f3b1851ac07e6233fdefd724699be" + }, + { + "href": "./BU26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220548f117936f0695afdaf062cc2d63c315c3ed41ef4f7441d5b8a53458a4ca67b" + }, + { + "href": "./BU26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c707784f0d2724a38a0021866652a41b5add42e89f1f931a65321c079d04f9df" + }, + { + "href": "./BU26_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fe113ae51a3792f036d64fa5e381126a95a570461679f08810ca9b74ce1e5d3" + }, + { + "href": "./BU26_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067e6a8633b3eb3494fe41dc36d467185d6f853508c773043c29125a59a4ca55e" + }, + { + "href": "./BU26_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207081950e5fa951cd898e3d992ca9c4eea2f496a7682ea1b550261695814c830b" + }, + { + "href": "./BU26_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e1960210f77c3bd6b864fd1c9cb223bdafbcd6ccc8a317f349e9beffb02e6e1" + }, + { + "href": "./BU26_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d22d8af8bd617de61d0d3f12462b65a0d4260d7237f93757b2c6b897bbad4fa5" + }, + { + "href": "./BU26_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220969bb31c5afe378b1bbe11db97a7290dcc0e6c8242d1f553aa36319c828d30db" + }, + { + "href": "./BU26_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b3b5ccc758415668ca011ae5b1c9a0dba74fab664401c35b9b98e4025a92b4c" + }, + { + "href": "./BU26_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204998285aaec94f41f533a46f11b410061878a791437827cb89ee212e6a2fa8ce" + }, + { + "href": "./BU26_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220050eb6a74b6afd3184368b2b287e82b34ed1d54509fd51dc85b057d9fa1d22cf" + }, + { + "href": "./BU26_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6c70625105dcf49fec55731e2ff69b6ee1fdf30fd50e2c187720d87e46b4d3e" + }, + { + "href": "./BU26_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002b0764cf3900044fa5bb58112a6af7c2ab08644ccf66c6ad4f36570ed830155" + }, + { + "href": "./BU26_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220300eac3b9f27f3bb2a496365c2fd2ce6df92be8fbf06aadd87124c49ac1eb325" + }, + { + "href": "./BU27_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206120948c9fa27c2673d5dfb71febe6d1894d1c7ba6dca5823b0f73024da9d5e7" + }, + { + "href": "./BU27_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203e499479998ada8939e089e6e00a79a2de17d5298e087c7c5b375dbc67474169" + }, + { + "href": "./BU27_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203ad076f95770ad25c9daa71c71923c4254328a3fe6b4125d94f52ee774eb4b2f" + }, + { + "href": "./BU27_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f692f9d59ad6e1d713b549324e5b9f880f58730a3f8e1f7d12cdc3bbd2223df5" + }, + { + "href": "./BU27_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2b29d506003b8fcbce2514db6ab9b8a49e1b9ee3ca2bf68cfc1d5c7586301f2" + }, + { + "href": "./BU27_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092de1278074ca2287070b88b5488f1674a64a325d55a49b78dc3ac7ea5cce3ed" + }, + { + "href": "./BV19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb30c07c5e9e27fd932b4d26ce1effd10774c32226f65ed2e0a13cecf51eea76" + }, + { + "href": "./BV19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220780f7407c3933555a1894747032955938f54bf79670e930bd6b4c48839a5e6cb" + }, + { + "href": "./BV19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fb112319c7cb00d9461ffc47e627cf10afeeb0b29e79762655ea707be877821" + }, + { + "href": "./BV19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc7d929c1e5153eea948e3bf51476acf505427ee146e94ad78be8f17fbc6f1c0" + }, + { + "href": "./BV19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005f37517d50b04ee044f607716c459ca2fc86dbed0d59883341ccf57f1e44c20" + }, + { + "href": "./BV19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eacf91b11e8ed1cf8f8daa724fb7bb5ceb1ba9959789e9129c629900cd7501c1" + }, + { + "href": "./BV19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a311eee43255421dd631a7b88ef55836ee44b7cf533ddc9120544c673efebf81" + }, + { + "href": "./BV20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207397e8c82e738caaad1769a30a07da72ca910bd105c56df0fbdfcbdb1dbf45f7" + }, + { + "href": "./BV20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122057aa43bdeda40969148b0f7c6b605ff8f4cb4f7f6e19ad4c15bc13a16e4f77d9" + }, + { + "href": "./BV20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206296d38b6af519cbe95ec09e0517813903c273653e3c5516f2ddb73f6ec2839d" + }, + { + "href": "./BV20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032db66b531161dec4250b22b2d65e5e6833d659e6aa11e067f6d67cc1d03e6f0" + }, + { + "href": "./BV20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017d814c01dd7d691ab4d4002f96a0d2e90c220b00333d05d02d782a8107bc72a" + }, + { + "href": "./BV20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a3c8a299856532bef2876420a49bd9e20c33dedb4d571a76bbe63d394493406d" + }, + { + "href": "./BV20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f664cf2c84f0f28a11ffe66a487fcf08262961f5446bfd4089c04dd909c638e9" + }, + { + "href": "./BV20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220268bdd9e35b443716cbecfaba4bbfffe20a055282e0aa2022195f611b9d3cfeb" + }, + { + "href": "./BV20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202059fa59f8b9cb2ad7fa778459762d44dfdb653746f0f152727b04d54621b5da" + }, + { + "href": "./BV20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220518b48e2e9b722e39aca49b7d12234281216f814e001854f3404c2b6c268b6aa" + }, + { + "href": "./BV20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a54fa562a221a36897d43884ce93161b4e24d9730352d29293218ab814d2636" + }, + { + "href": "./BV20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201490882ab1e6df1f67d5cc1d6486dc59097d033a75114f03bc01aa09d3c72d1b" + }, + { + "href": "./BV20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202fcf14642d3f1598c7ff597829f882b357db75f05b584f575f8a4e2aa4d0992a" + }, + { + "href": "./BV20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d3dd8729775aead7d89985f2795a905959457bde4820e8f011de72b037361f2" + }, + { + "href": "./BV20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122020d435ae12e9b72c3121c774a996df52d47a4b64cb6bef27c0262a3ca3ffef4d" + }, + { + "href": "./BV20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e17060b53902bb43524105c08dd6e0fd62278458b4f6ff66b1db8234a2f58949" + }, + { + "href": "./BV20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ef8f2d8f6a553c31a5065460bdbbbcf197d1e46fd9013af2e15fda494a08fca" + }, + { + "href": "./BV20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122047327aab08ae1fa308286376d7458f7c603513658f88ee685eaa38c172b29097" + }, + { + "href": "./BV20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9e4d2493f704e305f42183bc19137c9333fa7cfea82658fe4d595d5b3f3cbe3" + }, + { + "href": "./BV21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207325270436d65c553ea9e9b23dc25bb3467ff2d5ae3d8156dc7214dc1b766e7c" + }, + { + "href": "./BV21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220367032821c991ca15e8b8d925ce5c036372bae2296e6d2215df3d751ad8f2fce" + }, + { + "href": "./BV21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201009e56521181fdb637c0706ecc060e721b080655c80a41bc372a9c0f6677dc1" + }, + { + "href": "./BV21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024da1e1642a3ef9bf5563a56f4468a12150dce6bd76402c4ae88cbf19d6a6406" + }, + { + "href": "./BV21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a26d1e2c0bf4c65c002435c0e5a52a7c145bace88af964944500f8a99f0c3256" + }, + { + "href": "./BV21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9943db7f9fa653f5a82c829894bf8ffb485975e886b641d4672501cb0ae0993" + }, + { + "href": "./BV21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af664fe0259c74a64ab6c46536ca17086a60cadb88d0389b7abe7f18edf1ad4a" + }, + { + "href": "./BV21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c82eff1453e1431ffcdb0e3ff32a5b3c5890fd47601639fc69e26fdd36030b4e" + }, + { + "href": "./BV21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a5c1ef82f16560b4f9c0f4842c2914368f497faf8016cb7dc606a793be5b0dc" + }, + { + "href": "./BV21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d5ba23ef457dc179a4058a042f3d521182ed21148af637d4d93df3fc21f8caf" + }, + { + "href": "./BV21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208788b3bf8a0e047b7d60ea203d3ee966adc75fbed753637e4e237a82064ca270" + }, + { + "href": "./BV21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b1f8d2c9aad10d95700f60a99f67e5666c897a6d2cdc89dfbcc78f143636dc7" + }, + { + "href": "./BV21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db1f30876e0ec2fd02a6dec45e9c1a4640841b78c704b5812279fa93053bfd32" + }, + { + "href": "./BV21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae61cfd730017c466de321350064969360d4e4b2d3b60f9846935ffe90b971d8" + }, + { + "href": "./BV21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fed32552642a7c601bad8d6f245261f4b1fdf94dabeedbb69aae96f4865cd8ae" + }, + { + "href": "./BV21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb94a66ff440569d02fa36519917d1823d5f35d419644c46a8d7e14920f415e3" + }, + { + "href": "./BV21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205dacdce3453547712a83e7640c0eae7b9974b995b69d5dc6e428a68b4aae64c7" + }, + { + "href": "./BV21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e8aa916ccaed870711749e4409948351b2ee9847c08f987890ab23f7f4e20b5" + }, + { + "href": "./BV21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c85b1439272142f8dc90215914f9aa0d8780bf0ae3320914cd481854f7dc5365" + }, + { + "href": "./BV21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201cb240eab7764876fbed25e1dbc607053f09e53850612374911d2b92dd3ad343" + }, + { + "href": "./BV21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122000a6d9c9e5d249535ec2b02800d2bdf711f33d1c994dea53849c9585c2220036" + }, + { + "href": "./BV21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205221052e04cfeb09284c5f02a4801f5112f3f6b9a4a5b449474b23d85bf66c03" + }, + { + "href": "./BV21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201956117d664522a53e59923baaf84ec9877b81ad9f858c073e7c32445348ae44" + }, + { + "href": "./BV21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024179d8176bf18e9d8bdb8c0266af00a8344683362f11e9a4806157d06c14c20" + }, + { + "href": "./BV21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207670f810ceea6a443357443acbdccaa071d879b1dc26f9c9b873b09bdccaeab9" + }, + { + "href": "./BV22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220afe8236f5f3b707d53225dba1b3f5a536a1c1cb3bcbd595903849790d92a825b" + }, + { + "href": "./BV22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220387df09ffef2a5496eee9b2b0d35d478827db9c6743a5dcb526ef4a0bfb69774" + }, + { + "href": "./BV22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209cbb1cefd9531fbeac425abc7ac1fa4f6b15a5499bbbbe0c99c0bccce7ddfe52" + }, + { + "href": "./BV22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220623928c0cff8eb59444e9123edc0353b773a7acc98967d84ce2f628fb888594c" + }, + { + "href": "./BV22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054a4d33936af5bae3f6019a73f86d966e83fa711508092f6000c6b88bdb2aa6f" + }, + { + "href": "./BV22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7358fc91fa4a9f294d45f37747b1c09b87b136d6c84bfa02468cc656240b61f" + }, + { + "href": "./BV22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076e3dba4fbf2237c1ae33b5261fd3e65c8f4493a284b165b2f00ed664874fa87" + }, + { + "href": "./BV22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e25d981181c377fb09f1f493e9baea15b2ca2a7d64c2ff8a9d923231ee634481" + }, + { + "href": "./BV22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee5f388533fb49422b4e77fcc07bbfcfb963a1fbcf4c64aac8670a1affca7544" + }, + { + "href": "./BV22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e94e4612787f48718ab4680a720c4525def51208bbe2aef0ecef1c5eb096c4a7" + }, + { + "href": "./BV22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220748f73d1c1d2ae2d1687a58b4ef92e6f27769658606d846a856b0030754a0d41" + }, + { + "href": "./BV22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b915143543a00d602ee1c40f8b2010a6b30de9f934bdf5a0bfecf541bd391bc8" + }, + { + "href": "./BV22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e279c34c01247fa7db42a9e34043fa9880a01e6ebccd1adbc7fb23f27928d28c" + }, + { + "href": "./BV22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c26338985e0a113ed05f3e95015786274a686ca95760a951f87bb1ff3f2ebe59" + }, + { + "href": "./BV22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b30f18b1de25becdc088ee4e150f54ae49250eb11bbe7b45869ad4a305f6fe36" + }, + { + "href": "./BV22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200112a261f629eda37083ed158ec73f25081e2e8683e33eb50bf566800035a2aa" + }, + { + "href": "./BV22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122016877051c2ff5d6e1bb6707b5df4d54dd82c86fdb27b67f0936da7a0397c07ec" + }, + { + "href": "./BV22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d3708b4ce5828b35cbea6f05e80a6bbf53780c0364caec5fead5a919ce482291" + }, + { + "href": "./BV22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202284ba8376de1fe630500a677410f2af697d278dceca0c13a5920f9741527ed2" + }, + { + "href": "./BV22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220101823f771778050dfbceb1898fad80a1d974e1662ef8aa3140c9e018be6a355" + }, + { + "href": "./BV22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce7545e6e362203bfeb62d798254ad15e7bc90e7bc5019659cf7873a586e8d11" + }, + { + "href": "./BV22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b727877f7941faca2605bfbea2666db5ac23c0235d078bae20df83db3c8bf9c4" + }, + { + "href": "./BV22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b695eab75bca6fca81753f7cfc9790821dde88f416b1a19fcd2bec2253e63e3f" + }, + { + "href": "./BV22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208cb1a4e5361496efdd2965156707213f19bb8101c6c7432fc375d5a5375fd873" + }, + { + "href": "./BV22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122009e666e13336751bce5b38b2ce3a9ec16bed9733b40e8d678712eadeff5678df" + }, + { + "href": "./BV23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f66db0a4fc4bd39e5185f7c99494802eab2d1c06f473161f469faa5075f97435" + }, + { + "href": "./BV23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205609fb8dfce5d47bfd401262c987245b20c2280e233d70f5f492fb89e07c9529" + }, + { + "href": "./BV23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220161556d1f00fb6e8db2d92e0b9ae8ac08660a7bda4e1cb94d4aa22355d2abcfe" + }, + { + "href": "./BV23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e76a36b2b04fb3a4d3a2f9f0d1f9570c0fcba3117656050ab0d86e48fc7deaa" + }, + { + "href": "./BV23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220715444639a6c4d43c9db1e09350fe4fcf75d58f2935a5ccd0410ad06dfbf7eb2" + }, + { + "href": "./BV23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7474f59509806463b9b90bbae81b877fd183666491087d00abc5469ac371202" + }, + { + "href": "./BV23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e2aa9348ab90016345c108331f04eb821fdf74b119ab95e1df21e0bf7a992b6" + }, + { + "href": "./BV23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205db463b4f0442969f72bb4b1c0258c3a23ffe2510389aa4d1045ea11908bf9c9" + }, + { + "href": "./BV23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084c0c80ceb6c30761e82754671854cf74b49792a8433156918376706789079ad" + }, + { + "href": "./BV23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f4b2b72aee0030ecaae6d10038eafbde8b1ce79ffc95b4e3f95077086f95a562" + }, + { + "href": "./BV23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b99beb26ca5b867df35a019902be79efa6ef5dbe92449fd9b434c265a0952c08" + }, + { + "href": "./BV23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c87e65739f0c3e2af2b0b02d441e0ec0fb10e48debc120b80aeb1e6b638b478c" + }, + { + "href": "./BV23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b319878fd1661571c3999b7edd271fd152d3a5b332175e4b5184f0734009f6b" + }, + { + "href": "./BV23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a78d38fd7a906c358804091576d433076d7e17b48ca282ab13d82effe4d34419" + }, + { + "href": "./BV23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122039741ddee87388879ad6d6fb9460892ae72a4523414a5be3a0f061e310dfd759" + }, + { + "href": "./BV23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220540cb497b82fc968590261a5b5cace59ea2ad83d848ef71fd7a3567b0697d50e" + }, + { + "href": "./BV23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e425e5b0e9cabae9d47d8d3d787ae003c92261a99cb5bdd39111010010a6299" + }, + { + "href": "./BV23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220554e32ea7c8be67a9821a212a3d4e34acd17ee188f73fd4744c33d67f6513240" + }, + { + "href": "./BV23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059a97bd3bdab2fb4e82bc66bd53f7825778aa98dfc01781fd1bbabaf826640fb" + }, + { + "href": "./BV23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8582c90bdc96a841b702526be12ebc6d27233bc51f1fba829761983929f3128" + }, + { + "href": "./BV23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d8ba730302014c393a7aec3019eb49fb1605df296a69af2ae3f43bde7f956128" + }, + { + "href": "./BV23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af6b7b1f4bba84c55d2bb155eb72f8db072f925e57a000e9e0786aa61797bb16" + }, + { + "href": "./BV23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a0911f35acb909d2415c45729455eaa7b96e22ee98ad4df91376a69c9fce0f0c" + }, + { + "href": "./BV23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c1b99a74356b6f6abc929dd30facbf6b13ed65a8db197b743fbcde588417d14" + }, + { + "href": "./BV23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b02b7e41b3ce6a645de8eb2da59783803e191778b89bc39f5e8613c037c98fa" + }, + { + "href": "./BV24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201854ca445dd85ece78c8b36a152afe9e04708419b714e649733e475adc34c765" + }, + { + "href": "./BV24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ab8f81adfddbf900f6a18e1f9a43e737db7c0bb0044bf145a890f2616532c2a5" + }, + { + "href": "./BV24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206f07895352ddf350079374d182a3c933ea24a19095da568069b599a48542cefa" + }, + { + "href": "./BV24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db0851e4a4d96c6cb8c5907833f08f749324449d6dcaa77b28c554936a88193c" + }, + { + "href": "./BV24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fa33c0db42c416c9b58863589e905f0147c93cde7dd2d70996a245187d945d0" + }, + { + "href": "./BV24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf2782b8939b3efbf00ec023e40567241b3c701413fb0683fa57da0734ff8db8" + }, + { + "href": "./BV24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032af05a86f8c0630b66fc811c6345fa41e8b902b21be9fe7be3cd7b031d09f37" + }, + { + "href": "./BV24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005d429dcf06d8de04ddf68e7d0e185999717a7a95a67a89f1d195dd61d033d92" + }, + { + "href": "./BV24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200faefcf84f95cae930cdbaee94109ca9ace4561cf99f86450ec846bcc00e24ed" + }, + { + "href": "./BV24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd70c8d7e337c5b350e16d36394f3c15e5998889276cf51a969b222c8b6a93f1" + }, + { + "href": "./BV24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220512db43f27d72fddfebd4f200d364c1a4005e26f05dddb3c237574258d77068c" + }, + { + "href": "./BV24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205a7c1bf2672f2dad7051608c7f1d54980f0c00e3bf9fa8fa225b97d621c10c14" + }, + { + "href": "./BV24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045049223eec42a48d90596ad37f26d18f0b794fb491b378d7dd49b5180a9dd83" + }, + { + "href": "./BV24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122022bdab7a344cd07faa988d1d735ce9200713117f255e6beb1096858d1b40ea80" + }, + { + "href": "./BV24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209735a84000a982594d0ae0140bbd1dafbf8fba2357676b68a6ac49b699569953" + }, + { + "href": "./BV24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203ff5d335b9e99b25ae810ed572e7506d02d2c8823591d1a204ea272c0a611204" + }, + { + "href": "./BV24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae4fb788a5e1d49606c5ec430f09ab2c877fa3f0f2b7258387885f9ee254dd75" + }, + { + "href": "./BV24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023a41a666a69e1690e42eac717ba1e4c1e66bf4a434d113932f16340cb141546" + }, + { + "href": "./BV24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b734a74f31fc1ef52000db213cb0c3be803578d609ca60674fb4118f1903e0c2" + }, + { + "href": "./BV24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4750950afb26283751e2016163dcf3999846f029afb267720728f92e62fd2bf" + }, + { + "href": "./BV24_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a1ebd75bf51f289fbafdca5e62f076f986fcbfe0fbf410787ab4d1b5b00f4e1d" + }, + { + "href": "./BV24_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032300b2793246bd0c678654a58ed9b6b0ae186caa1e9f0ca0821bb1675922169" + }, + { + "href": "./BV25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e17b3bb23bddfcaece90b4fc30452e80fb920767acdca5a247e9589379a9bae9" + }, + { + "href": "./BV25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122003deb78d125f7340e5b9b94eb4e56837090b57f33a165e162eb304468dacb1a0" + }, + { + "href": "./BV25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202da8bd2dabee6ed3396c87d380d74e6d913770a203e1f3cdcec2fe76110de94a" + }, + { + "href": "./BV25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbfc356c8b4d0e6723739750e8dcdc46a89fef8830c56e6a2a36839061a5c001" + }, + { + "href": "./BV25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079f73659ff09fae6ab1a96abd39b702ff585bbad39dc3d7e8b6cfa645a680627" + }, + { + "href": "./BV25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b84b048d9978278d56c8686e016d23a06694a8e430c13f680671fd27b95cf265" + }, + { + "href": "./BV25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220703387aee803739ab39a958ad93146f2274ea0ac28ea21d4a17e012281ac4102" + }, + { + "href": "./BV25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dc266bba095cb8853c9b3a047a3df6ef91752a31d5f88f585ab62ae9f6e88172" + }, + { + "href": "./BV25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d597d40c7d6f8dfca432fd54651c813e464bbff2df10f17336a4440d7c321bfc" + }, + { + "href": "./BV25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032cdccb0f9e0cb95c2ace79ea956566e434c2749da2a8eed3f8a26d3d6962a22" + }, + { + "href": "./BV25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de75998e97ba32aa144a88018c00e2821092462d8fb9fc0ebefccdf4ccfe3f19" + }, + { + "href": "./BV25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023a82dd4096bbd4087882218873eb94bfa46af61ab60e3e98f44017be885102c" + }, + { + "href": "./BV25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ea66465922f14dfa072fff94f93b7d754eec80f63bc58a58be8d2d81eeef498" + }, + { + "href": "./BV25_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0bfb3a1c5d46ca4acdc86e54528045664063d2555baf6b0705e52f187d7e6e6" + }, + { + "href": "./BV25_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034e052b3ede5a4a568661d2df943c18bb55d6b787075cc8ca1c41399db984d1b" + }, + { + "href": "./BV25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068ec6a4c0c508d2441b2ebc4394275bab7d84ad229bd6478baef984cf000ae6f" + }, + { + "href": "./BV25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b11f94c0ae6e185e34b410a60d59eb0e57c534b6387012cb8ac2dcd7316fcf12" + }, + { + "href": "./BV25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc8ef05d76b67a71a32cc3a43f624d079f37305588b88ba9a9a9def9b642ba2e" + }, + { + "href": "./BV25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c8ccef910f98b422e9180654e386d85821924d344c464b9878e1a379b7209e5" + }, + { + "href": "./BV25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dbe2ac521b79e7a88f6a8569ac9b85c52b7c26737035e65c7751ab667e451b05" + }, + { + "href": "./BV25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002766cc360db65845c62f032b53ac63cdd3dd678f26d2b168574205774d6c148" + }, + { + "href": "./BV25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024dfec46c90dc7927267e9985db20e3115b5bd9f6b4c8c99df94e1b98a16fff1" + }, + { + "href": "./BV25_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090cef7add174e7e2727921d3a2c748bd2b738008f6bf7c2aa74add327b2e35a7" + }, + { + "href": "./BV25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd6d31efddbd4cf058a28e51212cb50783220ec46944f5ca3f4fd0e9305a6875" + }, + { + "href": "./BV26_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d17c45d64e62b65f712d4a3dff9069ad198b24a760898d7b38ba2cd211da9e1e" + }, + { + "href": "./BV26_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086f81800f6085899864b4cac1542e70b2370a095bdbdec65c008c27a38eb1173" + }, + { + "href": "./BV26_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203631d206918818d30d9f19b84f2d417c59c891dc6e6fbb1e9920bbfc13c85cc4" + }, + { + "href": "./BV26_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d86d142a2aa6f44c98c29a2587d23f3dfaeece61e096625ade035d097c18930" + }, + { + "href": "./BV26_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fc82bbc61893507cf3fae25dceb7d27d8ae25b69598acc8168abb59f1505503" + }, + { + "href": "./BV26_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4d6a6554710d2ccea15b4d2b818056443c7585d0363131aa37b6e8d59047391" + }, + { + "href": "./BV26_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b7cfd2c6d6db1fb116c80a808c7c9aff2af5665cfb6d152ee5a05fa353a6feb" + }, + { + "href": "./BV26_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220694445ce4dfbc7431a6b6911d9396f644c39067d55a1f8293a33326d3b7ede21" + }, + { + "href": "./BV26_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220086ad8218e10d4439d4728c0730b8676d1dd2cb50912274c06ab7c20db50b872" + }, + { + "href": "./BV26_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220229131e25a43154662cd518425890a053aa4d98e2078e713a613608d3c84d2ef" + }, + { + "href": "./BW19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad7071d96f179f47fcafd38400a137d6d04b9e5c5b4ea5ac21aeb74dd8ee9803" + }, + { + "href": "./BW19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b177c9b2d046ef3d3a42e8f255bf8fbfc6dcd1381043df2434805908f67cada1" + }, + { + "href": "./BW19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae04e01606487286f3fca527953cd275dc317d221ef5c60f5b70308f304402e9" + }, + { + "href": "./BW19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d27464b9d85fcd37be6df5848ce9861dff04700c77e9756eb0c33c158717eaf" + }, + { + "href": "./BW19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a9bbac0808fd75b0cb6b227c461ba254e07efc430c8f759e9ad0b679a97ed3a" + }, + { + "href": "./BW19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094b75b7dbc2149a55a3149e065a558d8a240406ad7452dd2eef709be503efab1" + }, + { + "href": "./BW19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122025f6a431b1fdfc4d2f0f930f9f663878b4c98ba153384e794becaffa319063c2" + }, + { + "href": "./BW19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083b5196bd2ae682301b3391c28ccf13ee2ef9f4d6efed8d2e0451549d17af219" + }, + { + "href": "./BW19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a75bbad38448375b2c010b32b401911b95222fcc7f124f0de4ee1258eac5a6e7" + }, + { + "href": "./BW19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209140ada1f591cc8bf512ea944b28b0949bbe3ff3778aaf48f1d389decf37a478" + }, + { + "href": "./BW19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220679badd44a572acb36aaa1e80950aefe722d9c8789040cf4aa12e80e3d222e4c" + }, + { + "href": "./BW19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034bb7bb818281cb681061e13f9d6b966114ec95c7079db9f64e4169ccc3c87f8" + }, + { + "href": "./BW19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220088cd4f53d9b4a910de2b02d320d5386a64821bdfedec114a1032f73029916cd" + }, + { + "href": "./BW19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208e6799148873bb192389e874d35891aa193de236c019a5400deef3e455a2a3cc" + }, + { + "href": "./BW19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220103460a3d6a787ef51e5c5a6cf0dd0b9399c240bed137768170d9a298020260a" + }, + { + "href": "./BW19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c898182371950a6b078e92596c78d9c18247164d268f584cb2b57dc590ef7f1f" + }, + { + "href": "./BW20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209886cf0e2de4cc92e92b1ec39208fb5f0cccb7a284f1d862a5b6f151c98105a6" + }, + { + "href": "./BW20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204777279ae97df5ffeee5cff67e557949b85dbef2814b67400e5387d89c05ec72" + }, + { + "href": "./BW20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209971554d8a85446f40401a419c63ca15388d0d4d86bb84323cd08cd522065942" + }, + { + "href": "./BW20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e6f7eb5da03d4042cd484834863be4e9833a706ea103532e977ba3fdd90b1aad" + }, + { + "href": "./BW20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea86b9011d555e9050888e58a4b45d8d39961c4b5609a635bcf2e88116788a3d" + }, + { + "href": "./BW20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205fd80d81f002eecc510d36c94325de8a98bc573bcf7ecbc53f46c286f65363e4" + }, + { + "href": "./BW20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058989dfaf133e15f85e99d6cea6d5468f23d91c8536386c18ea9c603668f5ba9" + }, + { + "href": "./BW20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d305cf31994acb27c7c0d0f6d081e66d3dc39ce6692b247bfe9b4a8d4e82f64d" + }, + { + "href": "./BW20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c0ca59daa667a54f87ab047e89a2e9d709db68443e23b28a6485e0d396edee7e" + }, + { + "href": "./BW20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122072460ecb035fc933ba37a22f5f1e923533f3db647efe724cc15321cce15a573c" + }, + { + "href": "./BW20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220debad00dfd07d9812dd9d7cfa47d4dd15303421d0371afc9194fd898fbb741e2" + }, + { + "href": "./BW20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f047b0f1758b6496302cc0cb7a31847f4e95e228d88221f4c6f7c04b18a82d54" + }, + { + "href": "./BW20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd9ae20320d76b67bcb481e060ef1e473576b8850950e829a2a9951fed9c6252" + }, + { + "href": "./BW20_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203b23b253a0dec8d14c87cb7cdad5c7bbea57d602ed3e484b4b9d416f7d6893a9" + }, + { + "href": "./BW20_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d9beab535181a06b611485bf08b7234e402b90389950fda0696c7207a17b2c7" + }, + { + "href": "./BW20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad72c4bac9373f989a5b94f56504f6769ec6c7b974b12ebd7972a29299cc64fb" + }, + { + "href": "./BW20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220309a480e238c6976f49c060774f77fc0a59eba67733671469606c8037e30734a" + }, + { + "href": "./BW20_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dc7425a9e58ad7c2c192607c6a73defa001787ce42b3dad1f61cfd5e99404331" + }, + { + "href": "./BW20_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220380dd085599557de8bb910598f4148de173dbd360cef7a53b6deb10a44626132" + }, + { + "href": "./BW20_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac37e7f7133623af4b702bf3666f6e839c1c9f31d5be9db9137a2fecfed25432" + }, + { + "href": "./BW20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220730b63b1f60ce8d2924ab649b87e3dfe5dca003600f567c7bd3d348be7b51372" + }, + { + "href": "./BW20_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220260e8d7feb0a1081332839734db44bbc41a1b0c9e7d7ffb7a1304479905eb7ed" + }, + { + "href": "./BW20_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207240ada807631f7dd418d68e121050248a6c691997893bff6d1161232ecbe709" + }, + { + "href": "./BW20_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a40cedd81b2567cefef417dd0acbaaea4aed4258aca008e096ed1e9ee33340e9" + }, + { + "href": "./BW20_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220444970836ade82b5129cd9f6f88b02222836e7d28284795aedec67bdf6541dfb" + }, + { + "href": "./BW21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a8554f499855f954b722152aee82ace363c38b9b6a5de77d436f4822b81d5df7" + }, + { + "href": "./BW21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085c3282d316210ed7492be70aaf8ca7bf702868fe13ba75cf85af1b72d48d4cb" + }, + { + "href": "./BW21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1502f4362df903db5d947496312a67f5094505c330e4a9150ccd2e0f33033f1" + }, + { + "href": "./BW21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad0f1febfbd9c5c7c27dba53382bae65c2858630027d9bd93c4487749e4b6ff9" + }, + { + "href": "./BW21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f737bd665b862316257737b7a510423e1e7afc1e56a71fb1f4d35524d0b8952" + }, + { + "href": "./BW21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ca56349a3826e4d23c1eed91034281e66605502806213bdbed944f76a33e611" + }, + { + "href": "./BW21_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c421526cbf7abf1f00b6e518bd050c1bd7f6cc3421786ede93095db7f15a011" + }, + { + "href": "./BW21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b690254e5a0d7c4e2f9552c1b610f4f82f292c22f3dde3185279244cf1563b49" + }, + { + "href": "./BW21_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204309a94cc061084f533e68a35eb357b4f93833496a35befafa91513d7490d533" + }, + { + "href": "./BW21_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220466520acbb2dd64efc3c19ef0a844321c56be01af9a9b7369a1151ecf9b882be" + }, + { + "href": "./BW21_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd65d2ba4f58d84bdc5eead074c5f30688d3a1b4053d0c31dd1153b6f2a79b48" + }, + { + "href": "./BW21_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b05ddf7ca762c5a0d1be94b9f558a7b6948bc3b5fb3c2a4a512da1c4d5730435" + }, + { + "href": "./BW21_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f2e34e962c43b76eee2a750f0dce880485d897c5274605a311b23137322162a" + }, + { + "href": "./BW21_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207ad812301aaa57253cd2a76feb3a36a85cfebf4daedd4cc7f913f1bb58d8fab1" + }, + { + "href": "./BW21_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209fdc5fdc43863c74f082b2d364a1e7752a2b85e10d67e82bb8153f458018f32b" + }, + { + "href": "./BW21_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7678a37d525aa6f6024bff3aff8411499e1895d4031a9704009a9434b39524a" + }, + { + "href": "./BW21_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208aa7f9dc6a885a81b31bd92b62a0845e7e5121390af1294f8ebc9ca39a1f9997" + }, + { + "href": "./BW21_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d34ce1adf0c4a292837a56e591cc9687ddea7973c3f8deea55cce0c0cb69c4d" + }, + { + "href": "./BW21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c56bccc6456ec2a6caacaeba1a54ee33e11f41439e70006a8e7cf9033ae5429f" + }, + { + "href": "./BW21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eabcfb7befb63fe886e19471c8bf7eac09bbd0ab33cb91ee426ffff459e2d2ed" + }, + { + "href": "./BW21_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ef13361e7a970abfa42f543be14eeb79cae3148a6235f358c34ba86a44fdbcd6" + }, + { + "href": "./BW21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d850487f2aa8aa3d35408a40513c1a0c1770085329f5810840a813bd04317c32" + }, + { + "href": "./BW21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220df764b42b3e2fe2675b5e905f67d63054113c203e92a512aedb1d84b3708f010" + }, + { + "href": "./BW21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c6e1bb894efbe1b442a79e772b1fdc395f2ad39c909917f2e3aa6d61e72b10b6" + }, + { + "href": "./BW21_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220203042915b1dfc6b6d5a4649672e5cec2527dc0d28cd8475626cff17665926fd" + }, + { + "href": "./BW22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122058f12122004930059a1c8a535c65fa3a6e6f16d8244d49ba4764dc58b3147355" + }, + { + "href": "./BW22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202eea37e8d940d87d3c0c2c8fbb02c03c15fbee395f733374dc11ee82eee072ea" + }, + { + "href": "./BW22_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f23f92c1cca02e1d9ded3f166e11b39d2654592fed66abf1b9886a7906b32a1" + }, + { + "href": "./BW22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201cde1f9719e9b2469cfbd9d41a12bd22c3016d48efedcc9370a1f1bc73080174" + }, + { + "href": "./BW22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080eb6a01f556547424721a01f494ffa495bd9b38cc4c5606d17702cf07e47f59" + }, + { + "href": "./BW22_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203503bb66de708119396e946babae3830bdc1bc1fe3925a000c384bdc142d2461" + }, + { + "href": "./BW22_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d6f8b0f4bd3c4fb62dfd8f69f66d3a98146da2bb34b8469ce552f65a2b369988" + }, + { + "href": "./BW22_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220126c0735b212ab762691fb2398e1c7d93a2fb9f555aa1624587ca9016805ca70" + }, + { + "href": "./BW22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122070e093452c05d1bc992a1af53e64f82a8e0c3a1833d9f5530e1c428fac3ea59a" + }, + { + "href": "./BW22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b347f9a8df21917732b2b06783819c833a44af24582714ad6f7f0262696c77c2" + }, + { + "href": "./BW22_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1d47f4886c017a85bd041898461bdbbbc553c3552538e36a934fe690ab77243" + }, + { + "href": "./BW22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a74552d28614c73e923cd5ce73324c6b994df1ae3b8cbb91c57f71d77ede3d37" + }, + { + "href": "./BW22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220be97b4f890df311b691b37eba038eaa892c74193ac064957aa523297c4e47d60" + }, + { + "href": "./BW22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220890892e9383e3fd96636163993d80ad3fccbd44778a9ed6d8ba4b045e365a7e2" + }, + { + "href": "./BW22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f009b82ee2fef48c1cdee1d58ee5235305b3e1fbf0e2153feab3564c62297ba9" + }, + { + "href": "./BW22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205db116f5bf6ea7efdbe4e2d89e7ca4ba0e3823f3224cac7f4c42fa75c7df4344" + }, + { + "href": "./BW22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a6527452d2239b51b3fed99aa6a03d38105eb454136cf571d963181e262056c" + }, + { + "href": "./BW22_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054b55bc6f4b16de524b17546503c17d7098f32830cf610d96d70666d7912df52" + }, + { + "href": "./BW22_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122028db372ce3c0adcd2da3ca366ea1721621303faeee14cbf2821de186f1615465" + }, + { + "href": "./BW22_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200a205a72de8a787447ad6380740a4fd3a43e97a6a77ec130ace2e9c97be1062e" + }, + { + "href": "./BW22_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee9e656ad2650ff1972e2afd6dec1e5faed2c694312ab2188b872dad1e793492" + }, + { + "href": "./BW22_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122023cdd6ad8a2c12115adcf69eda2b3bfbe6ebc9e6c178028c00a884a7cea33411" + }, + { + "href": "./BW22_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a5493b8842e648dcc71f4d6e16708e2335771e662aeae2a34e01a2f89040ce60" + }, + { + "href": "./BW22_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220407a885f238eb8a292c85d5664cc1f410e7c4559d95672a8010eb96ff3c12cdd" + }, + { + "href": "./BW22_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122084ad62cc23d29735e564f69f2d9b0617723ecc68ec56ac6defe1dabe20025cb6" + }, + { + "href": "./BW23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a30e58aa8afc48f57d4e4e070a148c38ddb9a18fd49e3acb39a1e5963a71c19" + }, + { + "href": "./BW23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ba56e8372f8cae616afd08030a1b07021152118f24b135a634e41761dee1cac" + }, + { + "href": "./BW23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9f1411f96294128e9436e764869b79f261219126c5ec0b84fa01232bc418f5a" + }, + { + "href": "./BW23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201de6e9af78e6e74318bf512b13b1bf2d9455d5afdd3d0bfa7c63989aca364d0e" + }, + { + "href": "./BW23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205572fc41b917b44ca6a439fbd45fb4eea95bdd145ff6e47f4a1448f2550c22ea" + }, + { + "href": "./BW23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a3316f6271f2710cf400eafa8d76a304ac7a737935a6f25a9272fdbca92ec67" + }, + { + "href": "./BW23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079b6f29ebcaa9bc9564f530d38ffd279a5609ef9cee0491dd40754d16a7e5db6" + }, + { + "href": "./BW23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208816a80d4173f5ad77a35d847e7935b1cf9714c6fb1ca33d741de3fe8a42e27c" + }, + { + "href": "./BW23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004ade07dc7fe5a643d03b4cb3f45ccca3256f6640bafd4ed985635fe282a68d5" + }, + { + "href": "./BW23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3a754928a21ef4860d97ecf7e388d907c3848d4eac38e89851769f36f872ab4" + }, + { + "href": "./BW23_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dfdba1a03f6c8ca9dc066da3d6ea175cbbc5c53565f7b40142fe41dcc67fba0b" + }, + { + "href": "./BW23_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220054b6eb4abc394991551e6dc8b025e0efe80231364f02aa5d78589160e1b46d6" + }, + { + "href": "./BW23_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d35da1738dc59052197737a3a9d871bc2dbd43a9c262e2db4cd1199c1d58d30" + }, + { + "href": "./BW23_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed9389fd8bdbb4fb6392719bc10c95e6637183df4077f640a6f709782a51001b" + }, + { + "href": "./BW23_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f91aec8bd2da3d456210e26d4bfcb9a2c68118d72101b93c5089e0f0027776d3" + }, + { + "href": "./BW23_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0d3aa9f96866e54a05f2b4db8be08bc7e3f72f72e52ad864d93f6afcd8da335" + }, + { + "href": "./BW23_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b601fa9789ad983269f5c7c1508cf57f9435c8fa9de41b33882322e32435169f" + }, + { + "href": "./BW23_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122065289b0daa4469f526688e6f0da4549ef02e68ac55c2d28c95f35ad7bd0f1f8c" + }, + { + "href": "./BW23_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208b6b61fb8da643bc4cd4e7948946ff7f4b99f055c6ba892299b414b4a782dcfa" + }, + { + "href": "./BW23_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1f2b1561bae87d35866d6633ff340482afa5a1139b10d3061b416fffcdf5564" + }, + { + "href": "./BW23_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220323f4c8a38ae052794bdfcaacd51dba9fd5ccacb0a958b779ad4eda6aa8e8b5c" + }, + { + "href": "./BW23_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220861bda75ad0e9c9569f7ead91bffc6901cf7ea0dea19555e351f6856d43c410f" + }, + { + "href": "./BW23_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091989f27fab99ccccb534217b6d06fdcb3035b7099a249f832fb6dc45e366e4f" + }, + { + "href": "./BW23_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220196c6cf23302ca35c50699dea64d1f125df06cbdbfb20d37ddd0e36583192d60" + }, + { + "href": "./BW23_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202448dd213937a35138e341b67c9a47784b82d19d0864b5bd5534a0a802506ce8" + }, + { + "href": "./BW24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9e9ee20a509b4fd4b24642345dca0e7909ebfa3a1cdfd6c7c441c4045147975" + }, + { + "href": "./BW24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122069013eef1b9fa8ef6c99b439944e6e751de7ecc96fea3e61169637f1ed393f96" + }, + { + "href": "./BW24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204163bb6f203a3a74588124acfb69f25de92eaa54f459a9c68c90de6d149b602b" + }, + { + "href": "./BW24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209dfaa45387716f839a33624a4016146d1eea8ce95c2038da4777801008741dca" + }, + { + "href": "./BW24_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7fc792f7bda7f06dc7c77124765bd3adde4b89d9fb43dbb668aa988c0403c23" + }, + { + "href": "./BW24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202223baabe44eefd921e38c138e0f0a42af4e0ac65c11b13064916f3133e87500" + }, + { + "href": "./BW24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f52cd328c147475a6e1083291afa564ba8f1d834f05c8368b5b5eb11b8ad5de7" + }, + { + "href": "./BW24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122013d3d28d2fb518e3e54cc0a2409c9ab6e2f0acf59371fb9d8f81361f39534c1e" + }, + { + "href": "./BW24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207331d11dd23ac68b0c24f943512bf74def8b191338ccc05ad020b80f70196965" + }, + { + "href": "./BW24_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220442b56dd7df055b3351d5e3fc189d0b0bc89dfd6c2ab198d0de627c261fb9512" + }, + { + "href": "./BW24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e81345c885643a01bf9439b30d7aaa2287bbcfc07e3bd5c7ec97e1f5744f147c" + }, + { + "href": "./BW24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202100c5d9655d2de42cdae04da0dc44256023b68e2651cdcdabb21544a5437702" + }, + { + "href": "./BW24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122063fa0b23ce4a0e0c5f2ebf61cc8711f58d35fe2a22f7f69612f7b75fab0e1341" + }, + { + "href": "./BW24_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d2efdc4f8ec68f131aa99b6f8c52c2fec6c2f89261c02d04fd5f8368b4aa734" + }, + { + "href": "./BW24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db2c1137079b993c37e72c15c3f19d3c2f42143ec4d647f6908d43f274fb6e12" + }, + { + "href": "./BW24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9ebf47a46bdb188835ccef5fda160e9cec97b1b288018ca87a7332e4070822b" + }, + { + "href": "./BW24_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e65d442d80d3fb28e4008bf335158cdae162127dfe627a5581de102cd4ad8ed5" + }, + { + "href": "./BW24_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a09d1dc8010f72d78aa7be52e588cdc13a1112c2c4370bbd357c4536fbe2e4b1" + }, + { + "href": "./BW24_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e88425af19102e175da91ed6d95267640b4d547dfd68e532e9eda514b5a80b69" + }, + { + "href": "./BW25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2d22f60ceead4bb28ee3e5a5e0d92df71fed44e0c34d6cca12fb4eb12dab439" + }, + { + "href": "./BX17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f3e8a64adfda27895c5f18627cb27b707583140b6fac190c90324b4652e3b561" + }, + { + "href": "./BX17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208acee1589c168fad2f254e60aaee7050a569b4b154d2582a12c11b6a0a3a16d6" + }, + { + "href": "./BX17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bb7e94566d0eb865184cf8c28cce9f7671472887fe18bd43e272e351cbc3dd94" + }, + { + "href": "./BX18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9c8622781b67e21f22ae872c1eaf2f65959dedcb080661dcc3f007cafa450f3" + }, + { + "href": "./BX18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b12c49dd0ac1d13f1c547810a355094d409252b19d12d62a0a0452232f0f0a58" + }, + { + "href": "./BX18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207839e0c0b5d9e7e8a5852f15f82412287e42328642c0cf18a9c3b494c0af227f" + }, + { + "href": "./BX18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b4941a5db9ed9ffe6a13f3f103ed3e91014b95b30aa99c4c51f4d325bf5b2327" + }, + { + "href": "./BX18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209cb8751642b2baadd74b1e101e0ef599c022d2490636a64d516afb613a4dde7b" + }, + { + "href": "./BX18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122024df683c90c1b8b6316cba8160251e6f927a25e52b338cf84ea7fc44a6673f5d" + }, + { + "href": "./BX18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cff22ec18a28d1ebf0f3f50602b14c1dd248bb8fc066b72eab7b7ea51bed7aab" + }, + { + "href": "./BX18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122088d4b64beb431b3cb2cd062e34decd8b5b9b9dfa50053762bb7499c799269972" + }, + { + "href": "./BX18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d5c4d099fdae621b3797163dd63f5ab9701c36ec30f741bf1f27643c5637008" + }, + { + "href": "./BX18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa1ef028c17726f03fd83e06e850158f425f4ad0b87e55d7716c3ebf7ed7c8fd" + }, + { + "href": "./BX18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200f25bf82833e4af29b210042d515d9c6e60eca0af23ec8f274ab80338c08d431" + }, + { + "href": "./BX18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fc88e3e486e79d3750f7d0bcf3d86c91d156b45462bec41d927b4be752467b2d" + }, + { + "href": "./BX18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d25a6ed7f0a10eb757aea240e14f734d666f53fa1e2d06d4bcb65cfe81afa596" + }, + { + "href": "./BX18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce78f2b6454c08076d325fd00752c9ed4aa58a64ad9a508b8e3220e5a552cd80" + }, + { + "href": "./BX18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002ef8d72ba73c30a34e4808000511b300287e6a6620b00a9b57fe584b72b4d04" + }, + { + "href": "./BX19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ab78ed57159737dea7aa7009e5305d0bc468191f481db02d113d85421b35b639" + }, + { + "href": "./BX19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220acabd055f1b969ad3775f4b71d72983071a795b81e7b4ce7ad5b8bbe940b379e" + }, + { + "href": "./BX19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b976769434117a1540db4243cd4637bbd0c21f37f72107a547e5797c781d0476" + }, + { + "href": "./BX19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220773c08d6520a8726972c6aac720a4d356f7c35c1fbc48f0dc4c3967c542b612c" + }, + { + "href": "./BX19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b97b9dddc34892ef221e2514176e7d215beddb57ccebf96f47b148cca1981fc5" + }, + { + "href": "./BX19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d47bbb3f047bb0540fb95af26ec76b15dbad6674512f17185e2cb1a9ea70e19b" + }, + { + "href": "./BX19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220750056a29da9435f2d0ff1e7dd3c1906ebc8ea948d40da54c07f33056bc2f369" + }, + { + "href": "./BX19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207f779c2ec5207eb5b13dd13f30ef68ed9d6e91b52309227f55903e32fb0984e2" + }, + { + "href": "./BX19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b59612f7a2077942686da28c307fce56b0aaa734354460d904084704c97e7a1c" + }, + { + "href": "./BX19_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208587a90a14067f7b510a74c98835a4623da7370d755ebc40e7c4a298b52b05ba" + }, + { + "href": "./BX19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a3cd384b14078076af564ea08f3205370bcf0368bc04b81964781856ac450a60" + }, + { + "href": "./BX19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f54f39234ba0461e8efc2aa40937346268348c723d5fb2f4d11dc748e3c120b4" + }, + { + "href": "./BX19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054ed3fa9d7f892228d4fe48eaba928150540309bd4547ce81cb61109a19bec1c" + }, + { + "href": "./BX19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200009e89d52175ba3f2c81aa8f360aedafd3735178e76bef8af442bc0963a522d" + }, + { + "href": "./BX19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122078e7135f893fd79013e35d102328a57e21a61b3ae05ae3540218b860a7c4a846" + }, + { + "href": "./BX19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122090257488a30debe77f43c23f7c786ab9e0cb544fa2d3775901eba442df372d57" + }, + { + "href": "./BX19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122005004135809797861ae29b21f24b8f2b05ac1a7f207950a6d1b9214ca23069ec" + }, + { + "href": "./BX19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb56e37a8d7c152a52918df639ee22afb543f9459fe422172a22308ba41ca683" + }, + { + "href": "./BX19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f25767c7e02495682cb809ca5f6a06a729aa11d48255b3149209fc31b1960353" + }, + { + "href": "./BX19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c142fd95c23d8365a3a143e4ab6dbb1a7623c42850dd8d1d1e58e83009ce9eb" + }, + { + "href": "./BX19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7ec4ee04c8b84d5e82d9e9f2ac9488cf0437cc6613f3340a18bd364eac28141" + }, + { + "href": "./BX19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b900c58be27f5ab84d7b1331b6b3c6ec1243bd1b010580736cbd7d53e348c9ed" + }, + { + "href": "./BX19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073ff854add161de5af4e448608933d216385a3fb1d72ab85369aae580e173fa3" + }, + { + "href": "./BX19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206a910823f23051d4bb410bb053771409872cc90372bf3d2e9c72fe0385a27075" + }, + { + "href": "./BX19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aff1f3c35e10b4aa33df9a507e68c1384f6c8cb62d929f31697b1fa9e10ec6e8" + }, + { + "href": "./BX20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e38b7f9817902e7bccae6af7563241847588aa27afb129136f4169445bd12b9d" + }, + { + "href": "./BX20_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017b777158be00637a5321a62afdd8342c56756596a5a8301ab6752e8e318989f" + }, + { + "href": "./BX20_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203cbe4d69408d459a42a67507627cb919f2b54522a34e4938d1da3298778ef3b5" + }, + { + "href": "./BX20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220782a0a157b60403cbd73ec259ae0f0c67f32554e4191edf233f4bd0a853208fb" + }, + { + "href": "./BX20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfa678fb496f31060d5a83347e2dca71e64440f31b0bf4c4ff3f1271d0dae073" + }, + { + "href": "./BX20_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206434fbdba4b68ba4ae0cbaf3452e39372cc7c29814ab2f787786926b43561a30" + }, + { + "href": "./BX20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220353774f11b968593fe1bc70645e3cd1ef5962d8be3543c5f4fb562165c177508" + }, + { + "href": "./BX20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220539892014c00f3b038e9b72ff7ce947c396cca38fa3284acd6bb7e49595e5219" + }, + { + "href": "./BX20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1aa8a2a4f117ccff2da1467d6cea33145f00df178cd01d898a3cb3d5e6e3322" + }, + { + "href": "./BX20_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122049c1cab0cb5d2810db93684dfca167c2bbcd158dd2bb23b8d2bd5caf5f0371e2" + }, + { + "href": "./BX20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207d79e11e0e309137ff3385cb5a1f846268a0d3c973d3defa09211d537e4d4f41" + }, + { + "href": "./BX20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043ffd0cacedc57fd2f2212ea5736ad95de5537b59ca8c0392993800cdffd34f8" + }, + { + "href": "./BX20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af21387f9271ca8c8ba11de6d0e8af9f9aee3ff1cdf53b31bd2b525b19e7b668" + }, + { + "href": "./BX20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e1f077b233e00e6a22a561e6df03477f32ab3105c49ad80f4a632c52b82e4a65" + }, + { + "href": "./BX20_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cf1945b678d25839d1a18ae016949d974880573123c2c249265fc4429a57fdf" + }, + { + "href": "./BX20_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fd82c26455caf7fa8263842568de0f9a822d116003a9db1e20486b6cf79b3b7c" + }, + { + "href": "./BX21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b54ae191cb1cbb23ecbb1ae20b7c88be7a63343abff7977dc282088023b6681" + }, + { + "href": "./BX21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ca10b94533122b90186e4e3c72860ef4b03246f51022e5d0e7e26681770836a8" + }, + { + "href": "./BX21_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027d77342b1174abaaeaf74426aa27019bae14b390dd88101861e9ed5a9d28cad" + }, + { + "href": "./BX21_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220310402dd06d4f612e5a45f9d0c14aea5ffb502832b45a18bcd42bb0a32453fb1" + }, + { + "href": "./BX21_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8dbaf3448f7f6817aabc975df3e261021a34c9a65b231ca30107cd0d734214c" + }, + { + "href": "./BX21_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220876f4a56a84a58ad83e688eb66fee4bf728ded1ee89e6bd94f0d2d4a1ffe7899" + }, + { + "href": "./BX21_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122032877529bb3e856a1dca48bdc5e670322180a73bead1e4c0f59b71593850d312" + }, + { + "href": "./BX22_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220265c4d3ae5cdead6608d2b73874cce7cc6d11a5bd8ee7508941dee3cc4245db1" + }, + { + "href": "./BX22_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012a421600aee5cecf9b82bb7451a939623a3d542a0b7af142cbff91aa944ae05" + }, + { + "href": "./BX22_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f53255a835268417d52ee36a016aed9a79c22a0ff743ac741aeb6092a34326bb" + }, + { + "href": "./BX22_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d8e5b52a2127217fc220d83e0841e5854db3314beb2f5a29784fb100f266ef2" + }, + { + "href": "./BX23_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220893ca42a6c1ad3d6590a5feea988af0fdc2b5552493a5e4aa1dd04260e6b3994" + }, + { + "href": "./BX23_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122081d8c9ee431544183273672193f16058bca85ae2ad9e1e2b314ed00d4ea697bf" + }, + { + "href": "./BX23_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094353bb37d3f73199a8a3d49e572594834558766ef4809fc2fa0c53fcd7a1acf" + }, + { + "href": "./BX23_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b35daee0beb524732e05141c5daf6f977bba23593a19285a25c2cb86b5db36d7" + }, + { + "href": "./BX23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200995be07b8eedd0af04041e676a9ed1ea33ca6312ac5610e2e4cf0625f89914b" + }, + { + "href": "./BX24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b8a081c583e48eff27e8a746e57e5e29b2bd7ee4556c3c1990bcadfc11d8ef3" + }, + { + "href": "./BX24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122092495c3deac567ccb3ed4adeb66cc69da7a2771cbd00596cff2c22da6283d90b" + }, + { + "href": "./BX24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122021705919544eb4c9f15cb0cc0b53d85cfaae79c78fe7e402a8405c958de3e1fb" + }, + { + "href": "./BX24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220de9368fbf76f108e373e4905f8c22f354614411172ed46c56a4f269a57c460a7" + }, + { + "href": "./BX24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220461efc9040e661b301f5c16ffb1d473161ab120b9b183894cb138bb958b06087" + }, + { + "href": "./BX24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071ae6fb9d56f5c218d90419eb44ccfac438c9bab68fee0804519d92d5425960c" + }, + { + "href": "./BX24_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122040761b53fd510b3f0d6af0260a6b2b7d24dde800cddcc352c312c18813bf94d9" + }, + { + "href": "./BX24_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed25623d76224e4058765c57c6bb091506d892ca58074942198b48a8e79bad42" + }, + { + "href": "./BX24_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202042988bcbe22108a24ebab4e8908f8a337d4ff3f92415078aa8978c6ac2c455" + }, + { + "href": "./BX24_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b5b39de3a5fce5b6941587cdfdf10076c3ceb413781772bb2957c6225851c4b" + }, + { + "href": "./BX24_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c29acf472701090cda57138bec087ac33281adebab2073c52193974567aaa8bf" + }, + { + "href": "./BX24_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ed1ec8334c466ba5a658a701504823c676c0d4e7e65c552863713cc0d3cfbd71" + }, + { + "href": "./BX24_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208c6c7a5687c58a3b5036cf6b0ab86c0a2b2084c4a41e5fbddd3a233bdce9a305" + }, + { + "href": "./BX24_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad6d2db36267391df441680bc577d487f69395ab3cc8c851912352a0999156ce" + }, + { + "href": "./BX25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c2064f21b8ada4941596c68a25d4a33ed112048919d5c6fe5f971751b1a54fe" + }, + { + "href": "./BX25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf339f1e9ad5382e0b7c051eb2231c4d871c1338a2b6a2beb79dd49dee218488" + }, + { + "href": "./BX25_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a2abb17dca910304d55bcbb55e6cc58cd9a90282e0844152724d8633ec7f7331" + }, + { + "href": "./BX25_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e27056853c83fa93f1a09b033c5a24a53b0abaa6832e27f7cdbded934be6a9c" + }, + { + "href": "./BX25_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ab1bfd8164f82871c3587ce56a6a384907117f64f344fa37766337a45412f90a" + }, + { + "href": "./BX25_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af70f092a36a69d928552b7afa16040878dc7417d4a1b8c92a110e13dc31bf9c" + }, + { + "href": "./BX25_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209f68cb7d05d7040b8f2016a9e8494ebb898b526920fa26782b4f3e1a1815457c" + }, + { + "href": "./BX25_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b2ccde4c0b940367452549b1af29a9a6c354ca4774d59f2e8b8376494c4f9c19" + }, + { + "href": "./BX25_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220399447920a60a8ddbfd4c1128db4137c2c435893af78fec086b5cbdc85b7117c" + }, + { + "href": "./BX25_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d19e1ca4d33f8617388630bb8ca5cdb5e29e0a52a3e14d2338033a72efd55fd" + }, + { + "href": "./BX25_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fafb2ac35448fcb048917e60fd4dcb9d279e1f21d5447bf3630ad7f57e22136c" + }, + { + "href": "./BX25_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122002af17ed7597f6e7e3d03a016d1c93f9e05a501a7e0e1bbc219e38ca98d81ced" + }, + { + "href": "./BY16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220348c29418928208865019f9b886d7889e080449f72050c54fbc5e35002b044c4" + }, + { + "href": "./BY16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8e8bee76f28e801de23f4581b398cefe77d987a93ea45de75bba2c9c5bacd8c" + }, + { + "href": "./BY16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079fbcdeddf059edc48559ff3efcb7b67ab401be8572577d44c59bf5fdd25ebd4" + }, + { + "href": "./BY16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e68608546e44a7de8a43cb4c38c4bc023b25492a70e5949897da30190d1ea94e" + }, + { + "href": "./BY16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220da37a309cc3ce9e6572ef4b0fd61ac8c32ddea2c3b06a299ab4ce029501265a5" + }, + { + "href": "./BY16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe351e6ebc77ce1f7391f67ab5753962391c563bbffa90c49eed568104073b38" + }, + { + "href": "./BY16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208bf5767981911985188f636701273f06bada47384bf5c883640d0eca18f95f95" + }, + { + "href": "./BY16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f129249b574374718d7450b1802e5b40b4877d4fa27ecfbb4ced051771a45d5" + }, + { + "href": "./BY16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3a4a25484ed6608b9eb56cb3bc28dda1fbd3fa6388d8b027f0d8dc3357e2f04" + }, + { + "href": "./BY16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e4c58a46885e3d4e1cb39c34dc0f8e88b8c2e7a14c535aea036d766c36ccc1f" + }, + { + "href": "./BY16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a7bdc660a4ae1de37cc10a0739cc5a3f481944b325211c452fca639b91752f3" + }, + { + "href": "./BY16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fba13034d5ee807c585a28b56b7480ffe9dc7da3b4bfaa47ebd61fa78f94265c" + }, + { + "href": "./BY16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ab7b572dc23f2449aab4bdefcda11ba2c3586f85aa35aaf09d32a7cf7a11d16" + }, + { + "href": "./BY16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ef44b8d41309e7a44f3a7a29fffdfbf717c36a5375f40b46ead2dcd653720e9" + }, + { + "href": "./BY16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cfab7a4dc78bcb88d57beb26266661287e3ccc1bd90eab5d822c748ce67506c7" + }, + { + "href": "./BY16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cfa6a30e43d495f81af3c5284adbc31fe904abdfa4e7f92329ba44bcb35bb0e" + }, + { + "href": "./BY16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206b93497e6657d527f83914dcab87ae55ab1938dc9b63fceb84bac625e2ec85a3" + }, + { + "href": "./BY16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220419dbe828a011858dbd5c4f651713df101a0201e308d5b4df9ba65b468e3e958" + }, + { + "href": "./BY16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc1daa61e5dd81fd57a72824a3770e4b4996a78056684550beb2732c4ab4b538" + }, + { + "href": "./BY16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8b22cca6b4e51714c556278ebb9c682f6c0238235aca207597f4e26bb39cf00" + }, + { + "href": "./BY17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e09990299ed83cf6b22962fb11c05dc4482515c2049b79331539e20934a1032" + }, + { + "href": "./BY17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122086ec4ed6fa63223bbf27546ccaf86c3e38ce0c35b383b79cd30481996c5be88c" + }, + { + "href": "./BY17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201db8118d46dcd35811cd4bf641641832a865f865750ddb4c4344b7b133449709" + }, + { + "href": "./BY17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b055783d80f070b7c405a526f6075fe2bd38dcaed88112821ef733c62b6fbb7a" + }, + { + "href": "./BY17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e43bc5e5ff1fd97c83c3bc3fcba6fb42551a76dc7003cff4c69f7e4032414963" + }, + { + "href": "./BY17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200f33d7fb0f17975cf01c7d67f7a741b90aa3e0c85f2e92dfeebf4dac0ebbb15c" + }, + { + "href": "./BY17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220121ef20eea5055d3aea842b0b6a4eac7ca9751e8dc7f498aff1f74f712d026c8" + }, + { + "href": "./BY17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e472e93b2deae1816a85557f0362712986b2239d50430b32461e74311cd3f1d8" + }, + { + "href": "./BY17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220418355db1c71284a23458a56d0079567aa1438f97c4a23cfe7f1b40cb9ba2aee" + }, + { + "href": "./BY17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a73e8badbd83194d985768c0bf82fef82e1dd3650148013b273020636c3b6c1" + }, + { + "href": "./BY17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ba91cdffe350635e1d1143b362b3baed0618be59fa99536e69683d9af62057f3" + }, + { + "href": "./BY17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c3a09cbac320c5448a8e05bd9c773fa516489fb155ad4be92a776dbd9583a56" + }, + { + "href": "./BY17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209000404118eae72bf7247401aaaad36f09f41b97bb234e2289b4f90583d73cb7" + }, + { + "href": "./BY17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220af86607e1d7401498bc5ae50aeb568550bd61b94a4130b09f1d308448da8487c" + }, + { + "href": "./BY17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207abe0a36d90a233b23410adf404e7ea3c29647c8a44cf0d12b799e94e1e1b8d3" + }, + { + "href": "./BY17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d98f6c06f3dbfc5ddc06a9d8d8f680bf37772432c0e2d0d0451716a4754beeb4" + }, + { + "href": "./BY17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200b852ea05f6c3925ab92cb07a6ed6a83d4b59301e18cc1f3ed1c5849fe1f55fe" + }, + { + "href": "./BY17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220efc848e8297efcac6efb2b09f27db464f143bc50afcf361f5c161807ae1a69df" + }, + { + "href": "./BY17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204908089065ad280463700ed7dd48130ff29dde908f667c9d0b1bb3e7b55ec87c" + }, + { + "href": "./BY18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d882cbe59f660f3ac4453f9db8f5e21337ba904964d964f9409e6733e3a61a1" + }, + { + "href": "./BY18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220464474ba0a1ba1806e61f976c560d0de878a0800f2305b1c49febd6ae832ca3e" + }, + { + "href": "./BY18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200583d1c95fd31f217710fcf2e1c319dd64b8c4455179e3b466097ef3ba05735f" + }, + { + "href": "./BY18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200d75905738e4c870f206a485abfbedd1a693ebfceda4cb603d1111ff86142050" + }, + { + "href": "./BY18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205bab5ae7390dce2985257feb84315c9d31a53489efc4e2d65d9bd9855d33a1d9" + }, + { + "href": "./BY18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d07f8c81af2208fe0a9bed634de78db5a991aee2c38685ca0d467ab3d62f8ba6" + }, + { + "href": "./BY18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aedec9f9a100128b0d4ce400b85b2e25dcc48d0e2182f6bf0331eaa855237119" + }, + { + "href": "./BY18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d75ba2e65f23527343253a0c5926f14365bf7002923a2b10fa32f1d030a8755f" + }, + { + "href": "./BY18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206cd53635ce8765d09655fc195f0d4343388e3744ba9280b44b92c0f05666efce" + }, + { + "href": "./BY18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bee4b2af5f6dc466eb40b8093fd1877188dcdce622bc34356cc87627758e160c" + }, + { + "href": "./BY18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220865c7a3801d4e61601df571bc51b4031f9545e07318ceec21e64ea6850cd16d0" + }, + { + "href": "./BY18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea68b2168321e4943cc989c9ad3051d59cd04bc573b6fa9e09d2bb009f6fe422" + }, + { + "href": "./BY18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064b7f044581e945e4c3284b887e5fb3417e75fe271f4eec59ab6a9deb88ad15e" + }, + { + "href": "./BY18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6e3e05d9b8ebc24332425e9b12fa319b1eed0856970fc3187512ffebdfa660d" + }, + { + "href": "./BY18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220790b5d1568063183ce4a85f293e7bd225e4e1451ad19d6c4004595e7445d73b9" + }, + { + "href": "./BY18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c175a1315d19e2af328ebd384c9254d98c8afc2f2f4602af34986c7301e79d25" + }, + { + "href": "./BY18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052d8d80a690d15297b7be30f0ac308ddbdc2dc2dbc3a60911ac69ce745e0df50" + }, + { + "href": "./BY18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207289dffa9f37f5bc25b16d1b0e0d109ba1da967279a5425104ede39f38faa7ec" + }, + { + "href": "./BY18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200dd68e47f3c5a93cc06b61dade95cf78a1a951fed408dc36d08c4b720c9f7003" + }, + { + "href": "./BY18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d477146521c2075889ae4ebfe7f5360edbcce206e3f5de964cd9cfc3dee26abc" + }, + { + "href": "./BY18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202931e4ee7d1b8def08ecc71164543ddcbecf2f41dafd6a238fe7fe20c543c24d" + }, + { + "href": "./BY18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dd0f77304aee8d20ea76993d166a9b8c31b8445f0b085de8a2a431bb0fb6a13d" + }, + { + "href": "./BY19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200e0701bc48877cc4e3d2ef8563645008ffcc774fcba64bd58110fbd73258a472" + }, + { + "href": "./BY19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220081c8fc74e128c5349b5cde02791837c8f618b6f65488d84ba87417ee60409cf" + }, + { + "href": "./BY19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033ab4eb77e5086976d2e2a7d4366745852e51f8eb9e705ce3387dfb5aa9aa934" + }, + { + "href": "./BY19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122012691a16403e194ca3358d3ae99a65620617c76228428671a27706e467874b85" + }, + { + "href": "./BY19_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce1c922d17597ba27b9a61f6cd000fd48e6f2425006e10df2dd4d679f9484913" + }, + { + "href": "./BY19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f14f2b55e8deb42e7a94d3b831102dc5b5f27742e2ecd6f7d2454b65e0019d32" + }, + { + "href": "./BY19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203678a0dde20cf64e4a2d70221d3d198353a4db5100bd40238f1279fef06fc433" + }, + { + "href": "./BY19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208f482f7634b5a71ad9cd754d48bfdca98d7a145240f5e54b98d145ba337fe5d3" + }, + { + "href": "./BY19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c9685e011206df743dc7b1b1eaf36a0306a3fde330e2a60c1cab05fc66fedc4a" + }, + { + "href": "./BY19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122057fdd0152f5573a6a4c60255382e511ba9f6f312eaeaa240b42bb482bd21e524" + }, + { + "href": "./BY19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d2290fe777cf808834770cd3fb0596c8c3efcd86d8e746971c07cf79ca9d6095" + }, + { + "href": "./BY19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7e4ec06f042ab8636e4b75a5a4ac95b1fea3e01ef3ba1fb854ef1fc30ad803d" + }, + { + "href": "./BY19_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208af01cff94ea36c720675d0a74829f7f5bfe0ad6fa058890244d65d3ca0640cb" + }, + { + "href": "./BY19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f513311395088ad0a0d8e8be5e263e835dfead93ee6d710bc9dbc4d5659e824" + }, + { + "href": "./BY19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122087e97688d3b9b85f1c712acd1e9740ae0e4c8360c57c84363f097f1f1579cec2" + }, + { + "href": "./BY19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f23155238b7e5e36ee28b64f9771ba6f6a38c9fdafc4325e7620ef032dcca4f" + }, + { + "href": "./BY19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a6bbd4d70ccfb6263f5010c7700bc14cbac7aa2e92b507dbacd47603ee1cb973" + }, + { + "href": "./BY19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122080e73b06c1455d7600443c7a36fb5dee69b0c13b72fa3c5f005113aee4e03b8f" + }, + { + "href": "./BY19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201256012792076f1e32880350afc3fdebdee0e8843309b478b81781c06ef0ae47" + }, + { + "href": "./BY20_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ec4b74deb727f6cb6e439f0ebbc65e51e01f1defcc65140aaaea16ad0d5323e" + }, + { + "href": "./BY21_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034433101aac14e8abe08c02788e58ac44b091ca6e178dedc12ed0a6ffb7d79eb" + }, + { + "href": "./BY21_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202b47775798af8a172b7086554d67f139f23ab001a7385d1dd3307c87e5c3d0fd" + }, + { + "href": "./BY21_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e00adabc2804897b1dcd4a791cdcba8ba1a11888343d4f7aef0b793901fe6158" + }, + { + "href": "./BY21_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd57a2c11695ae5e6b23350480e7fe7ea39162e25e81502bfc886734da061a55" + }, + { + "href": "./BY21_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ff32f84785e5f40bfae876581d5027c73596223d6ef4f99a8f55d3611b4ddcaa" + }, + { + "href": "./BY22_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c19d4b5f80f9950f1b89b7dad1c24c7173ac6bff5ac3e7a836601de58dd29482" + }, + { + "href": "./BY22_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a13919804f034b0976af8c2dfd514e4fba3a939189daafc3a8ccfad26320082" + }, + { + "href": "./BY22_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036696bd52568f5cf8d9c3cf4088f830c41e2924d1c8faa05dda9353bd8094cf1" + }, + { + "href": "./BY22_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059ba3a6ada120a35b2c33f7570b96b07fcc93d6228c05681c649df91d38e7b13" + }, + { + "href": "./BY22_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200394102d5b4746ca8bb36054b66ed471b2aacd1211881532a9731cff32a0bf25" + }, + { + "href": "./BY22_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7f62a1fbd88d7426dc014942bcc4e959930994c234affc25bd91220e09d5c6d" + }, + { + "href": "./BY22_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201b74b70b40c40f2605ed93838f47305c93b3d7e614629e9dc5932fcb98627bfb" + }, + { + "href": "./BY22_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017244b20b5fb9505811b6e1fa4bda7e26b385d62c4b6138a7d59fcca0372eddf" + }, + { + "href": "./BY23_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b3a99bbf6833605fb6b4a1e46f53d13ca83acf92eb0121220a1db2f11821c37" + }, + { + "href": "./BY23_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4a933149786dcf1de9690c7ddd15ff8d8ab917be97d5e6bb5bd94201482db6b" + }, + { + "href": "./BY23_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b66fcd1a91c65a20ec729d897bfcaec29ffabbfd4777457d99336a677fcb3251" + }, + { + "href": "./BY23_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202847a5b9051f768def5433a40d7707543fd53be7c1101e83ac25ecc410430ef9" + }, + { + "href": "./BY23_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202999dcdf3e6d9517d07075e47b12c96d850def7b7dd5f474a32a60433b20331f" + }, + { + "href": "./BY23_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a6660f9711607a56ec3275909b8eef0bfe09cd6390b72ceefacee9bce9965267" + }, + { + "href": "./BY24_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e381fee0cb6fb3c9d5e5283a74567bfabcb46071344c24f9cf0851e665b66bb4" + }, + { + "href": "./BY24_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0848adea940cae41086666aecd352c604f9b540f517d739029d826499a01eb6" + }, + { + "href": "./BY24_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064fa12a5d875a37ef94dc77030612bc92dbbe8a90044873d99cbb3ac5be74a41" + }, + { + "href": "./BY24_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e454c65acbb052dee1d958d8888374165fce9e20fc36add16c0dfd44af4672f" + }, + { + "href": "./BY24_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f9913076c4ab2074fbfb118de918437080a270101d707f161480272e3d35fd6" + }, + { + "href": "./BY24_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b4ca98b9364cc7e6fef382c5bff6ee7c4291f4ef3ad55947355fc8fb7f4912f" + }, + { + "href": "./BY24_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122031359755bb85d1884d713caf26b5b906e8e2f04fccf4a04b0f172a2658baac88" + }, + { + "href": "./BY24_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ba90f60aa82c27be59abfc7c9cae084fa9d586d13b340e0536ce48a4a6cbde0" + }, + { + "href": "./BY24_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d97b89afcdbf16944803d067c655702f3bfddc46c7367df5719c3706d30878e5" + }, + { + "href": "./BY25_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb6d5e0c475a31e533d71daa4932781a5c956d4a426ec1dc1fcc54ba85d0fb42" + }, + { + "href": "./BY25_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cc7ea5a113597f3835a846e2d97cdd970e3ff4e6430e54d311bca489fbcdca7a" + }, + { + "href": "./BY25_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220286739a9a2f5caeb2349144e53ee11b03a019d40abfebaa0615eeb4a33395603" + }, + { + "href": "./BY25_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e92072f0a01c8addf768e96097035120d75d8125beead43675ae7d9274b66b75" + }, + { + "href": "./BY25_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122046894e4bcc53f3575570d8112bdfc4c114594a70a3f656ba856c44ba39e7caa4" + }, + { + "href": "./BY25_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb68e1936789ed44af6bab06d2b2a87f86c194dc2e01ae6f372252a202d532b3" + }, + { + "href": "./BY25_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2e52326344376329fa4129ccd9408b617e43ca0039ad5919c83ab099188f83e" + }, + { + "href": "./BY25_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf75073d821788e027da7de8815765e9da68875fb8f4231788abcff7fdf11e59" + }, + { + "href": "./BY25_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220439ba7987af1d920ef4ca06ff5bf57df9e1cf9c20ac08b0e9ff73fb2a0662838" + }, + { + "href": "./BY25_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220663df2767c6d95d1ea9d60defb3c3ae7a6749770c4d820278cd9e7db71ae2104" + }, + { + "href": "./BY25_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d132af19884729ef7bb229ace3d9ce3ea8f8f24b27cc2dce021d5a087515d5c" + }, + { + "href": "./BY25_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203d946c660b7aed660e64fbf6160e81bebf849bfaeda6cb018e91334b351fadb7" + }, + { + "href": "./BZ13_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d50aa6437fc18f4ce1e69be700c8854015ddfbb9bb84ab9ac7b6eeddacdae4d" + }, + { + "href": "./BZ14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e17ab7297e9165497ebd82e39004e23db35e371315b810a1181a898b7f8c29ae" + }, + { + "href": "./BZ14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122034fa2269dbf0f213ab8e54d8cb1c9bb75c59640bec38aa93fdd00c359835827f" + }, + { + "href": "./BZ14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220749f214457850aa74bc73c0048897b1885226411cc420e67f03bcce38b69f8b1" + }, + { + "href": "./BZ14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae7483fca96f10eec70bea5006692aac30c3b16d5594b0c4f056c0047c3232ee" + }, + { + "href": "./BZ14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd88f80349402eb9ce644ebe5e197a28dba2d8c42a69ff57569e066baaa5444c" + }, + { + "href": "./BZ14_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e55ea7f133d377483d85b65c2893d82f056f62fc14f9e59df92f76d0853fbb3c" + }, + { + "href": "./BZ14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203015622b5589714a8e56c9ef4cb2cdeb8e418072310a2d8b919fca718b84d783" + }, + { + "href": "./BZ14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e4807ff65b2ce007a0697a390d4028015eaecaad8ac966d885c479959bb4bc8f" + }, + { + "href": "./BZ14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a6789f374945aba3a41154f23562f4859df5f7235bca5bd9bac11399a4dcde7" + }, + { + "href": "./BZ14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043eb861a673bea7b09549cfabd0b9f0fc8bc59bee233107c883e6582758734be" + }, + { + "href": "./BZ14_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204aba9186d158118a03dc1d504ae328a891aef39b9587116944ff028f2d3af1ee" + }, + { + "href": "./BZ14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122019c0c1c25e80d0507f6d31cd7573635cd9be7b1397cf85ca4288396e524d9c1c" + }, + { + "href": "./BZ14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dacaf51b8be5dacc0b18ec740495831ab872b8f662e2e06866acef746ed54955" + }, + { + "href": "./BZ14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202098c449a9204e83b52e576cf187e3e0748c28a0f15539e242a10b712fc49263" + }, + { + "href": "./BZ14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ac5a0b6475201b59e02dc6b7c924cc34c41d5da51aad016780f183401e35b115" + }, + { + "href": "./BZ14_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220396ba3a5977d6a269e65a92ed907cbf333e94a25634a60f79ab5c4801e689eea" + }, + { + "href": "./BZ14_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220697a57f12ea5cf7da6e001bfa09245be45550c2dbafa1f3c2d89b7921ffb7d10" + }, + { + "href": "./BZ14_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085d0128916b0f1be2b2fa4e5f320caf7d584b9f678eb677d530f2013afc43303" + }, + { + "href": "./BZ14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b88b038a2134006cfce74856e93b53b0f9fd3fc2e3bab82b703d6007c92bad20" + }, + { + "href": "./BZ14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220341f3e734a97dbf7a042292a21fc2e6804ad89f8f9e3f9e3285bd86b1c350fa5" + }, + { + "href": "./BZ15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206af2e3f62668e5f4cc44e73a37f5563144b184d9b5f65fddb9ca7666b6ff5ac7" + }, + { + "href": "./BZ15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f7bf299db20c7abbd222be51d450644e5eb5265fcf263cf46222fce15ba3e11e" + }, + { + "href": "./BZ15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030bc3aa252062934305bec7e1fd36dd2382945d6420dc1ce1f034fab8c819a8d" + }, + { + "href": "./BZ15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f9a6e96c7f0de56411291357cf2966927062d427fe72a5333104a444ed107fb1" + }, + { + "href": "./BZ15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d052017f95508761fd2ee5743e111457a9cff150a91c083e255ae1da250ceefe" + }, + { + "href": "./BZ15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202334487742279e25bafcb0c524c42fb7f8607a75bf7bcebb03214eda6150fd84" + }, + { + "href": "./BZ15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a50bb01bd074cb003b38ded7b2d8d8e61ecde4a292ba58ebf32a9f497c70b71e" + }, + { + "href": "./BZ15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a500a7ff99c59a2fe64c281e518af36c31bc22341b98b736496c98a7a847e8d8" + }, + { + "href": "./BZ15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052cb152f36098040db97a955a9c1219ac86338448f092e264eb9768e81cd8d05" + }, + { + "href": "./BZ15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b18cc9f7bb3ccba2b7f4eb62f449a0bd3bcf6879af28ce44d276389f7acc6a89" + }, + { + "href": "./BZ15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f5bdb26916cd9a0d2ebbb9ca01445d0b35bec1e806a811ac87601d3dbe5464cd" + }, + { + "href": "./BZ15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220835469740a8f427e284a07b4c57cf4ad3c3b3f4ac047f4cc0f24b907b9fa6fcd" + }, + { + "href": "./BZ15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a827506b8c4cb8e15d238a032501e0db11e9bf5bdd782253cfd81558c403a020" + }, + { + "href": "./BZ15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203598d2a8a991e8f084cf59e9581d6a4727dbd67ff575d167b5a08f358ed9bc83" + }, + { + "href": "./BZ15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bef48fedc582d33c29c7569e3d01d9a61093694718938a11a55802ceded01381" + }, + { + "href": "./BZ15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062dcc469d7859c2722d4801aa3e10e21a75d19514742a62ac1507cd00bb272e8" + }, + { + "href": "./BZ16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204939258973e646b2ecff1febf44690b2b1d7292a30bea11f103eff7c4b356569" + }, + { + "href": "./BZ16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051a95edefdfea408123cc7f6f80d4e65223a26e25b7400a3dc6ecdff50974788" + }, + { + "href": "./BZ16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122062c5e1101fee9e2a2e197e58fc9cc8f4fafbaa420cd179c2e459d24639fe5e23" + }, + { + "href": "./BZ16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d10c2691032874ff598f7d053b8c060faf61ee9516255cc02825be4a730b5321" + }, + { + "href": "./BZ16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1777ce05eaae60b39990b839c4ceb4a82ad28f65222740b6da70730b6c59104" + }, + { + "href": "./BZ16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122094ee40c9f1b1640fe64526adc9f05c8c2c540f22d2e24002c498c0dbda942c14" + }, + { + "href": "./BZ16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204611e0fe999dcae7df418657c345bbe15853192d30bf30d6ab4ec54237f49a56" + }, + { + "href": "./BZ16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122046c481dfbb881343c4f8ed436c5d31b44bf57cff7b9ba3d98732f64df8b3378f" + }, + { + "href": "./BZ16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202fbe9d33a2dbc0ccfd15bad919b59723d4c5b805af4f07779401f76693de83b6" + }, + { + "href": "./BZ16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220baf2d1273137e4be4e801edd91ba8d3c4e854ec7b35443cd0bc03f9ebca6bb81" + }, + { + "href": "./BZ16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8e416ec12a8e586af020e0b1a07e4fd822341f8584959639324359c74641fba" + }, + { + "href": "./BZ16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f4b8732635314bfae30fb8d56a747ebdfe5ec57d17a332a94fbee4ecf1b3f0fb" + }, + { + "href": "./BZ16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045cb6545365b1c1fe2cd14db078e90f6f641a4bafc734d8a68deaefb852e2553" + }, + { + "href": "./BZ16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204ca6c2956989872c5f88b8e7d41ac8265881312b0c1585a77b16b47e8bdf7edd" + }, + { + "href": "./BZ17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b33bf3ca3b0b9736e41cb0ea499ed257f1ac0a49b675c44bbffabb2309c26ed7" + }, + { + "href": "./BZ17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067e2e6b67b283effdf98d4c592eb70c3dc9ae5469989d35b3f7b26a2c0bb43e2" + }, + { + "href": "./BZ17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201ceb581ac4abcfd9483aeef382a166ab355b0128dccc7e0d68f707122699d723" + }, + { + "href": "./BZ17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f1dfc5ba7f1a059805af7130ec7d72231d7d1bd755a6af456c1b8c6c33d5e72a" + }, + { + "href": "./BZ17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220320896b039f96c7f0c51288789daab737c7fc778e1c2ee51764b39f7247f408a" + }, + { + "href": "./BZ17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f893d39801c6c658c388559a2a609025134437e042d54456c47267b8ac85d873" + }, + { + "href": "./BZ17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fca282ee5c4390de107a45cb0601fddc58d88191c79074c1102055aa04522050" + }, + { + "href": "./BZ17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bf04020415abf8074c59d0b93a97e8d100d4127029964a5310cc8ef99e525554" + }, + { + "href": "./BZ17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205df91a08ba1b9202d3803e8f12b9d2f64985895e642fd315a64c5e4336368ae3" + }, + { + "href": "./BZ17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208705cd1a98772bbf3617704ed18e2563d8548c64c22a4ab1c9631e09f8fc6c80" + }, + { + "href": "./BZ17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204482c7bdf20a389e7c8347a88873bc3c1a57332b20362d19202383a98053bc4c" + }, + { + "href": "./BZ17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e1718314c5c8eb72d02fba073d48f8e42bf5da88c614b67179aeb96daa54406" + }, + { + "href": "./BZ17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c4780585c84730bf9c93f6ff214ee8e4397958db5c7e9c7111ea9b8772e3270" + }, + { + "href": "./BZ17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220043f1f7c927402331f2fc086cbcddb50c89bea11c5c1b5b3b2f1f85a3819e39d" + }, + { + "href": "./BZ17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205f983adad7c7f05bfd70f3c65514a800fca617c208d989861ba31a36b88693f2" + }, + { + "href": "./BZ17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8dacd35a34d4568996d3fed9f2a10955b96c3135d1df8e5f0208d45d05a7c9d" + }, + { + "href": "./BZ17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ce077bae2c91b20db5f13aa35d63a80f5ddf0842d940741961781e7a7ad6bcf" + }, + { + "href": "./BZ17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220779315026148990318fb89387ebd127251bc5ca564dc004dfdbff27a635002dd" + }, + { + "href": "./BZ17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209a6f727e8117a2eb6ed708783776bb0c90de7db1408a2e3e7c6b8003681c25ca" + }, + { + "href": "./BZ17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206772fbc78f242d4bd126cc12948a2d4931f42b1dde54bc07df6c508b550094b3" + }, + { + "href": "./BZ17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095dc46dbd06b45d50ee58a0491da725b2c4281d3952574fa6365c22d11924cf8" + }, + { + "href": "./BZ17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209ffe70c1f12b208839690bfb7a18e5fc66a7a6b4f2e5512c0e637138eb1b6669" + }, + { + "href": "./BZ17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7f5acf7f53962624a5bac2ab1dd6ea46c6b29696196c6f58e15b6d2f7112b62" + }, + { + "href": "./BZ17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201a37db2d513c0ce622fbd611152f5300cb37716f0ec0afe2a6a4a61df56519ae" + }, + { + "href": "./BZ17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027cb3280c312826fb4bb4a4d93a83feec06659074520df9b79bb387f7f58d184" + }, + { + "href": "./BZ18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079bf3cceb33d88bc2270a3497372a21e16b22977d9e28a1a8c73592272cc8d80" + }, + { + "href": "./BZ18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205cff9b07538994e24580ddc8de69de6ba674a2e1358ec2ed9d60aa00147db9f9" + }, + { + "href": "./BZ18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a23c383f004e342352c4de78f1f6b97c536b1509624ab7d89a8f149bcfd41eec" + }, + { + "href": "./BZ18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d45f82fb6b561e9971fbd150d30220c3cfd64a50a4032682bafdc8e17c145c4a" + }, + { + "href": "./BZ18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2f5157fcdb2d916113219d6377273d63e1237c2af288e0713e05ee51024fcf7" + }, + { + "href": "./BZ18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b24d23cdd0336c2c9c19ba37803a484412fcaf04bfa916a9a22122c51e61c9e3" + }, + { + "href": "./BZ18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d95b5bd0b66717ed4bef46fcc117adbe57c5e710451919f532ce32c0aadef82" + }, + { + "href": "./BZ18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201f14bae6b4aea659947714da7428e273b70fd4d455127e5feb6c91c83783b8bd" + }, + { + "href": "./BZ18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a34037725b0c4cfde523c4bb33b593da671bcef98f837c837fa0a15ecc70476" + }, + { + "href": "./BZ18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201e2fb579be83d856df28254c73636e7eae29d99ca23008bed1e4ff77ffd45b61" + }, + { + "href": "./BZ18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036a88c86eaa99e1631dfa8a7df2ca0a56cb57b60ab47b96c0e89b04bcbbe07cd" + }, + { + "href": "./BZ18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203456f90cafc9a10cc2ec1635e768a881bc8f585b0b1dee8823ad7d266a322beb" + }, + { + "href": "./BZ18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7001d2c85f51fc25d1077e38dfe84c2af70bec0d12cfdf47d14d902e942e116" + }, + { + "href": "./BZ18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220537a776879bfc7e79a7e2801b9461d209d34dfc57164445cb3bbea3e8e3c05d9" + }, + { + "href": "./BZ18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220adf9c87dc8ffaeb7d360659bb5665ed610b05769e4d8dd26932af44c789f3912" + }, + { + "href": "./BZ18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220327857a2b83f813a4440cc6607b2663d786cc3f4e4b2873f34775e05b6853b63" + }, + { + "href": "./BZ19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b0cbea0c907b615d0db6b217c25dcaec0d32a968043a82ca3448ab5e50f5445" + }, + { + "href": "./BZ19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4d5217b8a0a69efe11a862669a09932d0f4e9389f818fb153067c3a222c4ee5" + }, + { + "href": "./BZ19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204649b02bf3af9ef0aa2dae9b45e01e8186ecb0469f86380b76e549f1893c3ffb" + }, + { + "href": "./BZ19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d28425e6ca1b7f26f8eb1c506f5518f8a689715083c1e48b3d7fa8c5d50b81f4" + }, + { + "href": "./BZ19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220194e57b999b3145bac102ab76f7fa59afb837d26112e70d24929ea386027f4d6" + }, + { + "href": "./BZ19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204b3b0550d4cb39bccc04d1f98725f2bf5c3e40c293efacb43269a94c1d988b99" + }, + { + "href": "./BZ19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220eb590c520bd379f528a0f4c230099f1d69aac69e7607ffed0420cdb7593a77d4" + }, + { + "href": "./BZ19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d4251b301407d015793760cc827d680787d8a81de611d523b88e3fda36761cd2" + }, + { + "href": "./BZ19_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083b0b5e8b4f7cf84f287cfec5c7b4fd301ad1e2814d24b4bb5e2c970f4f45d8a" + }, + { + "href": "./BZ19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f073ba728dd7268e85c54783d159252035f41cf786dffc1cd97666292461a8d0" + }, + { + "href": "./BZ19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e80556e2c6e507aa941954485afa933873134d24192dc993b7a8b2573786081" + }, + { + "href": "./BZ19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5c3bb058f6e348d4099c55e4ba1a14f9aa068cdc9efd3221452dd71d7bf0a1d" + }, + { + "href": "./BZ19_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220926cecf5475631a1f9300f9edbc36628aedb3156200069cad30f754dfd53b49b" + }, + { + "href": "./BZ19_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206db33f17beaf349fc8db4c7073df6d23ec6df7cbe0496d998fd53f9a80fd5f66" + }, + { + "href": "./BZ19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cd8e72f86a255a68866e193c15657058dfd36c329c9757684ab4b40c58f69b9f" + }, + { + "href": "./BZ19_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ad8bf1f4196130efe6808e6a32a8cf438e9b57614b5e152bfcce9638d2c98d69" + }, + { + "href": "./BZ19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207c9c91876877a4855081bb822572e056f12546a2061ace31081c3a09945400d3" + }, + { + "href": "./BZ19_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067ccb985b7c37fb470084cf635e31399a42b8b5c624aabc7d9d98da912796809" + }, + { + "href": "./BZ19_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f4c6b036b505eb6d61559d77c0fb9624d80af9a74bb5cc13128baacf7e4a55a" + }, + { + "href": "./BZ20_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208957fd36d495a85c0537095dd53338b98c2cc8126dbe0ebd14d5df282b16b438" + }, + { + "href": "./BZ20_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204d3c3189bc964bbff683ea746d6c109920346b3a3eeb3287d3a618d385d8d511" + }, + { + "href": "./BZ20_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d5be0ff3528552350760f348f36a87220248a21840749c74a66d554acf9bdb7" + }, + { + "href": "./BZ20_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122095e6187bddf2f5ed2d2a81c0bd6f9cfebfa6041c6cf04df91be32cb5406d7f3e" + }, + { + "href": "./BZ20_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122033df0f77ab4de9e742acef3a47b5c6af76b27a9e8ad6d4718d869a1ba120024a" + }, + { + "href": "./BZ20_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcca4572f54e319b797ff3c1518e169dd9ec5237858ad7fba10a568b31a6418b" + }, + { + "href": "./BZ20_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201fd1a63aa3814858eb1effd3818346f5855c0709a76825fdd4ff0d8e35823d53" + }, + { + "href": "./BZ20_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a9d9857774d1ffc69628309cc25f854f9b1cdce45a2ccba78b0ebd3d767fbd2f" + }, + { + "href": "./BZ20_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae23f4d9541f662a48ee0e308affa603cfe7475f17e9bca2ddf9d8f426fedd58" + }, + { + "href": "./BZ21_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220590ce1e16801d9c4115128e5782a3822ba10a710f646c5f8aef7970860543bcd" + }, + { + "href": "./BZ21_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aa0dde227b1429fae733bad36e78bb2244c930af50f5c84f1ddb9b441d11b48d" + }, + { + "href": "./CA14_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122006c1eb2bc52391d32bf1dc7501b9d1b1817645cada84c465167062d5f349f009" + }, + { + "href": "./CA14_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204a653719dafe0d6e0b1f413ed5d3f51cca8bd5cdfb8358d518cdb5553573e12f" + }, + { + "href": "./CA14_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220851ec0bca3db3d4ab86c68e102f51d055e3c4eea573a0446901ad6550647f7ee" + }, + { + "href": "./CA14_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122085c1358506894ebd7fbf66603ad38243c71c48dea3d8ddbd7ef2b284b6e4b157" + }, + { + "href": "./CA14_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122091ecfaf2febccfa291afe1d263af7a6fdee749747ff25c09c92409a3e9e0a74a" + }, + { + "href": "./CA14_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206ddc1f75ccc192d4a89aef0b22e7d1505c4410546332c02533c5c4d99b50fbe4" + }, + { + "href": "./CA14_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bd25f6eff4d5fd4e51072ba37704bb3ac2d52fa84601a3bb34f0db7ecf008c80" + }, + { + "href": "./CA14_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206cd87a38643192bfa90ce1e927f7d0a63ad7e0b4aec5016fd523d25e20c85c5c" + }, + { + "href": "./CA14_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202dc26b28d82ca054e8b4bcf4584a21f88a9e8254917d57b6b3aaedbe584b944c" + }, + { + "href": "./CA14_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f2f744285a6b3b7bed045d39c17ac752ac30ce5ffa61a6cff042a8c1c4305be1" + }, + { + "href": "./CA14_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122004a94d884829d5a49376d1ea8a02a674c4188f0260216bcc03f40993a339d11f" + }, + { + "href": "./CA14_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014ea1d18df8a77a2d438dac6431c84e42b5331563889de8d79198ec8c3b29223" + }, + { + "href": "./CA14_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051ffdd654e02a789e5c285da33ae96fe1eaec18adcd8bd550432b1e22fd1ae1a" + }, + { + "href": "./CA14_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a282845d9be1c1725a65b8086bb607aa6b65629142e5fe4d8137ef68525b0ceb" + }, + { + "href": "./CA14_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208fb88586e60c3e4348828397a109142185ef161c5ab1c8c0016a0c60666f9d1a" + }, + { + "href": "./CA14_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204cc89c59ce1a0cd241dab6b6088570021259b6f57d0fa5457adc0940926935e7" + }, + { + "href": "./CA14_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c3c360466b4cabaacf1f81c9cb19510b55282f551d8888d93e5a59218b1948a8" + }, + { + "href": "./CA14_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206b3a6fa00033937adf4824e5c325d397f708e4b7f2cc51d1c171cc8751febeb5" + }, + { + "href": "./CA14_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b12d59fbdf6762dc0f4bb0918555060b68d7dbcaf970a1b70bc5ec670e5fe4d1" + }, + { + "href": "./CA14_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fb8bc4f768fe6101a197e7456e0b0ad7fd31e360f188f2e543dfc10d4c4cb425" + }, + { + "href": "./CA15_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cae211594e8a525b5da61066b3b6203cd8301335cccef8c2bdac0ba4b3dd2548" + }, + { + "href": "./CA15_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220067cf23d516950b325bc76f778744abd8cdbcec0ebe377b1204852c648ced5cd" + }, + { + "href": "./CA15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202c53b6089d88c794d0bd804d74f35a454703afec43351c9453b5419521fa02a9" + }, + { + "href": "./CA15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a363b760cfeecaac561cf1ca407b0d9fedb8b21c5ac28903bb29735b34c1569" + }, + { + "href": "./CA15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d96c44721df6746586755ed46e3e5d12a0f88fa2482615ca64c7c1d757db80b6" + }, + { + "href": "./CA15_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220870ce608cfb85a04795eb4ef9c30404caa07a575be9ca47caaf741d998927270" + }, + { + "href": "./CA15_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206c7b47273d623acd5e55424206097cd6ee170d64ee397d9282cc92ad5c9e090b" + }, + { + "href": "./CA15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208763d43c5595a4fb94ae40e2975462cf13b196bf12ae618f556929f99dc1bd05" + }, + { + "href": "./CA15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207a34ec01b9f8dfd7c2ccacfeb6526380911b918ac621b4c01dedfa3c460f319d" + }, + { + "href": "./CA15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122036affeecdfeb9c5d77b8a1634ae1733a5369a2522d2e93193e33c664cdc045f0" + }, + { + "href": "./CA15_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122003be25fae24acf861288f0fa47823f52af5931207fdfac7a88bd742959a68fed" + }, + { + "href": "./CA15_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203130d27e7fb67d4ab07c3c62370a2730339d4d83088caa96ad9f0b4c1b0cac17" + }, + { + "href": "./CA15_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122043d0db0fa8d2dea4aa49cac21323211c0b639ad4bc5e1e7c5043e57828856a73" + }, + { + "href": "./CA15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122017c59987dc42fca32874be620c3dcc586941afe4c3cbc4a6e23e8733223b87c7" + }, + { + "href": "./CA15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220760c08bad5dfeb2aa152df3b6f70baa864f7750c0b18ce5c786e4aef09fa1e94" + }, + { + "href": "./CA15_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fdfe85602e3803cc9be54429c902278f5b400ce2ed4b21882accf3331fbabf68" + }, + { + "href": "./CA15_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073df44afb4c7f58d3239f1b5a318708b6ba8adf8a32efe9c9d7aa6fdd8f594f9" + }, + { + "href": "./CA15_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207044ea2520f4f83bf03bb93a1d8a802a130ced8cc7881164aaa58251110b5f73" + }, + { + "href": "./CA15_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e26fd47106bdd0595e0ced1ddc485b48f4f8039dc15f50f5604c422b7011f53" + }, + { + "href": "./CA15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122068e574b1e8263f2637f1157e617288594f665cc430193113382fc8cf7ac7d4d7" + }, + { + "href": "./CA15_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204e6e3fdf6c22b3b5437f49d7faa0fb3abffa6aa903f6b86f9186e72f19a9a115" + }, + { + "href": "./CA15_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207fb6d154306ce551bc539f66f2f3e52081c70e3b913227adff1f8b72e636cfb5" + }, + { + "href": "./CA15_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220870f56d4a534f532a45aa38ad761857b233b024011d1f165eaa5371a8591afb0" + }, + { + "href": "./CA15_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200262c928b205f42c8325caf15535bd90a2356de0c1bc720b8202883bdee4131b" + }, + { + "href": "./CA15_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b8747281f758777ade08fbf92e08a2865c8cb8f58e51c8bc162ea617d6e1c79d" + }, + { + "href": "./CA16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5aa5d54fe43f704574b8e88a8276a02d5b3cbfaa3c94ad55c225ddb0ff599d6" + }, + { + "href": "./CA16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a7be92e5d3c0feefa93143e7944ae727584e58832e3f73ac508bc8686ba7c495" + }, + { + "href": "./CA16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cf4bc73960504344243e37616cbac9d3c344c4a66b977e9938664d93ebaf2ca5" + }, + { + "href": "./CA16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b7dff7f085a7edc4381e7c24051d039c1ee9f8473663ff4d54dd244d36390a81" + }, + { + "href": "./CA16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202cb813e2c8a9e89cbc1b9ec3eaf4aa0f7f02dd356131222941bfabb76bb08ad8" + }, + { + "href": "./CA16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cba7e34d51308aa5eb7c01058c856dd3f40a29d67a25d495b165fbf772a478a0" + }, + { + "href": "./CA16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ee740e1cb503b5e628503eaeb2c6a450e4f6f2a5b697a99a0e582db4a5a7be78" + }, + { + "href": "./CA16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220297d141744b90a21aeb36e5e94a6fb9517480afcd767589e4f207c41801a4836" + }, + { + "href": "./CA16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ea6a7bd8431708edbfab7734675190334657c52df9d5f868a3fb8232e2d2f6cb" + }, + { + "href": "./CA16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209b5805b51e1a3c1b38f91469b44e8bb8d05394a27877b74ae80a4e5ba275b736" + }, + { + "href": "./CA16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205d2ad9d05254f3dd6a850c06b7c065ea77f92f2ef585172ff7fe9899aca8cfa4" + }, + { + "href": "./CA16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bdf2fae0883d05638b5d175753afe4587a6d50c12edf71b7626ff45c61b3230f" + }, + { + "href": "./CA16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa202e4dc8b14d69988ed14fcd327abc6a6e491aa504d194e0aab89f8b61f45a" + }, + { + "href": "./CA16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220460cc17e80afd65c866a088336f5a61776f2ef29e6c8faaf3380fba3f72e931a" + }, + { + "href": "./CA16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206e54f6ab27215291689b58d3252c86f844fa2fb6097afd823f29e662090156a0" + }, + { + "href": "./CA16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ba00c475a4f9e6b1e661c22fd840663aaa057c1335f8912e641392a71e671e3" + }, + { + "href": "./CA16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220acd75cd52de9722113f7d181a013c651f7c7507820ae2774e3c154675f32bba7" + }, + { + "href": "./CA16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a7422fb74a4f6af16fc6db002499f46d4441e8c13496fe2dead5d7f42330006" + }, + { + "href": "./CA16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e138b3b61156991e00202c6e33d91b0bc51e08f17157225bcf33bfb743696409" + }, + { + "href": "./CA16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206868ed0ed904c992b8bf79b53cdace2b55933e820af1a3f37218a07030290508" + }, + { + "href": "./CA16_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fe3c026073ec2e339b23441d6df3632b30ecafa33e6dde360860a7ed895eab16" + }, + { + "href": "./CA16_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bbeafe6e2471d5c8eeaf9304ba3f429336bd76c4599533bf47da4c96be44e569" + }, + { + "href": "./CA16_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027c3dc349766c7c0df624608f897f8354a0efb88d9fb2bc1d1f22411601981bb" + }, + { + "href": "./CA16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a1e57fc7d06401332336fb9dd629799675bd32e8ed06be48f1fcd397d43ef544" + }, + { + "href": "./CA16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122073077735ad9f82f46c473379788006fbab2103f351969a54f5799ae08addcb3d" + }, + { + "href": "./CA17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220390bdab04c2062a3ee18eadcdc8d7e18fb79cd4f597f3ad8dc0f66ea2781c52e" + }, + { + "href": "./CA17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bcc970a29fa9fc16fed4f08a0ee2f1510d66625372d08fa30c9e8e7534d8758a" + }, + { + "href": "./CA17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203a47e0c178a35ae02be8857882587ad7cc6dfd62a90132783c1ac774d5a9e43a" + }, + { + "href": "./CA17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa13fa6523067eccda27bc8750561c899f69d42e9f6b312f4a56b525be213e77" + }, + { + "href": "./CA17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220860f48dd04bec3ba39aa338f8f0b84e7637cdf775d548917634b480dddeb48df" + }, + { + "href": "./CA17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e911fe23f2942e4da3e1da14b6effe95f190b53894bc05410d027cae23c091a" + }, + { + "href": "./CA17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045639b962582037eb11d370b53fc8403ac1c39f7ccbbbd80d8143feeb1649250" + }, + { + "href": "./CA17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ae26fe3f9fb02191408577b32b9d273a225b351a2d71b415940712571621a78c" + }, + { + "href": "./CA17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d7a375fe5b8e362a3677cdc816d47e2096c31a6c5422d69b6809fb4a376f4cd0" + }, + { + "href": "./CA17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205da629c16850b2c210feb3687b368203bb2055acf43a705adc4f33050702407b" + }, + { + "href": "./CA17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c258e5b2661a6d87474c049913889976a3ed219eaae571eb9b03479ee2438699" + }, + { + "href": "./CA17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206bc08ccd1688a9c4b01a4fe09c30ff4345823c486a02d8f94b652ddd367f9f33" + }, + { + "href": "./CA17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209c188e5d022c29665c44cd96561cf61247a2efe176b02558339fd9815f176e39" + }, + { + "href": "./CA17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122063b917e7db8edf08318f9358bfb94df9797c3598a68a0cdd9a0486ce43cc96e3" + }, + { + "href": "./CA17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208745b1539f35befc4383d65c860ae9d4335f69a9ad6114ecae74fdda7f0028ff" + }, + { + "href": "./CA17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203589be19fd4e4dacfda4a0962b8264d26a21ffacc8ecc3b29f406a01e1e20c01" + }, + { + "href": "./CA17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220301f8358c82d5afffcd24fa18773863a61aab4c0d256e7837fd3504824c31e22" + }, + { + "href": "./CA17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2b0204743ce4f3f5a5f006be492f5f3a0a20a8c2a50eb3dca09250638038e25" + }, + { + "href": "./CA17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e789b1dc81f33d8ba18112c67bee1e688f2428424a341edb2932417aaff9e88a" + }, + { + "href": "./CA17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a87d80c0b9eba42aca2bc7ca14a5426c25927264bfdcbbcfc9745ddcb9dab225" + }, + { + "href": "./CA17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fa9b4ffe1c3dd90b90b313cb257f2988b29ebe56e12e12f9620c16b71f592f4e" + }, + { + "href": "./CA17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220381f7ce55c6a470b0ecfc5e9eabd5548f6f9bfc773325dd313a59dcbb005c939" + }, + { + "href": "./CA17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e8a1bd7e345712067fd8ccda55cf4aafe5796955c9a4b24e85dc817e47bc919d" + }, + { + "href": "./CA17_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fef0fa28e01814a4531875b3d10938837306079fb7c5992404cf64ab70df796a" + }, + { + "href": "./CA17_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c7e29f416bd16089457e063425aa7c3489fd8fd08ced2c6c446a24834ddc4c2d" + }, + { + "href": "./CA18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122064cbcd4c7a78274207bd174bab2101a7184cf83693f4fb7cf732d55fd2b8c83b" + }, + { + "href": "./CA18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122015dfe6f379c4da0d111b6e84b93820a9264ebf7f304830d64c8522b15f53d28d" + }, + { + "href": "./CA18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1af4b30561c3a5cd32ae177072b7db15c4453a9e9c528219f6568aa41302f9a" + }, + { + "href": "./CA18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8f1ae3a49b91dedf4019897282bd7c6ac94cbe9b8eab06dec75cae0911ee0d4" + }, + { + "href": "./CA18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079bca33463026b00afc37ed638b183a39f644cf918e414927afe2047ebd7a19f" + }, + { + "href": "./CA18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203bdc36f303edf295335af7fc7e3c549f034452319c7f26abc20f35551d169e1b" + }, + { + "href": "./CA18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122099739e86dfb66272acd460a9c1d9d5f1214d5b924089b41088c8a68ffd601601" + }, + { + "href": "./CA18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205ec7effd2f4193e8e9064b13f5e376e0ae9713d409424214b5240f87ef8c12f8" + }, + { + "href": "./CA18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207978ee1391572c876f321a37bf2bce493b0c652a64e7347b030e00f44b308ad0" + }, + { + "href": "./CA18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c5c450ea9a92aa05c77c19b2a8b4312d1c603b88b1e9edb51a0a50a07ab05460" + }, + { + "href": "./CA18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122010cbd2868d64338109c4aa4c300ba0e549335abc2a6ba73893f9d907a07ca091" + }, + { + "href": "./CA18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220442314d13de445e6274f0770ae114a3027ebc6f3c907a3a5da5bcd0251be5b48" + }, + { + "href": "./CA18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122007e39ee6e0175ea27097ff49fc9d6a01e575ceeb1e0b7ae7fb87637695f48990" + }, + { + "href": "./CA18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220983b426fb1870f5ac7be3a13eb1a0d8ed1330be830a8f052ada82b55e98b6a1b" + }, + { + "href": "./CA18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220f885596331499a7683c70947e23ad54ccef3b74bb0a28d11bf1f5049b2de1e48" + }, + { + "href": "./CA18_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a863f2173ae0e237259c3474d30f7f6f51fb24f5d786065643fb5a911377b215" + }, + { + "href": "./CA18_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d9b4ee366342a00a08c7cab8a81f5bdf2699d84450f9ba402a30ecd3bc33c481" + }, + { + "href": "./CA18_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220173ec244a87e0e610b05c63fbad06f156fcd6a5a53033f5b80b885559dfa6b98" + }, + { + "href": "./CA18_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12206883446946729a3ba63141d68a8351decf0fcd054a4ecb7ff1a46894f9e179ab" + }, + { + "href": "./CA18_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122047d31f983f379432cdb65e25666bc4300f4cb694b5a6b6bff6f6998ccbd0b601" + }, + { + "href": "./CA18_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122059a8ff4645aeea0971420b58755ad74cdb3ee4018572777dc2a0375385002042" + }, + { + "href": "./CA18_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205199cea701b23c2e68fee1b83bd4213ae44d91bc5b8b23f94f719c02192000e5" + }, + { + "href": "./CA18_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e2c23f40014db28a8a24e4b2a7a4928bd38627513814e184b7b531f929c14622" + }, + { + "href": "./CA18_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208ffefccd1f1322f8e69ed508275342e9f3ee7a2e6dadcf1f5364b22584d6b36a" + }, + { + "href": "./CA18_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e3e03e379bc1a583dd4c4b162c482176252bceb5e13ef48b199e99202d434b9e" + }, + { + "href": "./CA19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122037783904cada2d975bc5d51c22c5b2d99c30c5131e7b30610836555e6ea15a04" + }, + { + "href": "./CA19_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220290891c8439ea832c9291fc9aafa08da137c461342dbacb90358840457ff7510" + }, + { + "href": "./CA19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207810f5d0583d438e13989db62a2369980aea04a56a985428844291e597cd6c4f" + }, + { + "href": "./CA19_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220db7d41832ba37ade73ab5961e103f7fd7470399422b11411d9727e51f8924d61" + }, + { + "href": "./CA19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122083ea34453328180a90f5d7e00c559dd2065ef7a57fff1abba3e9b40d9c23867d" + }, + { + "href": "./CA19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c53a48a8f6cdead9c0d2215332d739f4f70d01bcb8931af66a5fa1f36499b42a" + }, + { + "href": "./CA19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220586e39eaf953ef67da195356a530ae7932a0e78a2819d47dac3b4de8f68091ab" + }, + { + "href": "./CA19_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220300eb442636ead0dcde3e668875ee735a7f542e3918ccf5ccfb94b07b2ec438b" + }, + { + "href": "./CA19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061030a56248cc6824937279a427b5726a0e7c29173ced2dc0c221da6938ae061" + }, + { + "href": "./CA19_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220360d2789c9e3afdbe41d430f7229166272c7a8c29181c49500a8f8a5767be964" + }, + { + "href": "./CA19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fddbdd183e1148d9bf54780f8dbf8aab8d5527fef8ef592b0170ee55a28daf7e" + }, + { + "href": "./CA19_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220687e589f4398ec2020f81f322b4a94d92e6d5b56f6893ddb4102f43c0379f2b0" + }, + { + "href": "./CA19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220dfc61901a536d001d186921853fe4927acb57fd666393ed076dad3a1a138f6e6" + }, + { + "href": "./CA19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b497a714a74c6f0e555e445dbd372778fd5d1aa29abafb75f15f712c19917585" + }, + { + "href": "./CA19_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220cb50e9f0b9e5778280e403dcdab53c6276fe88d2f593635fa8bc2fbb5bf50407" + }, + { + "href": "./CA19_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122030c42c1fefa567a04f93b598c22fc2d254de857b85bd54bdbdef990e1264d4cc" + }, + { + "href": "./CB15_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122067253c268f231fb512641c193117f5f49c57c11a2feb61734f0f8ab5d246d28f" + }, + { + "href": "./CB15_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ffe4c1561c3dd361c6bad571d69e227cbd72cb8d66ab36a5b91fceb29ee965c4" + }, + { + "href": "./CB15_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205e875c0b3c8864d754fdeafac7a05d7be4146e7dc3486e8046a3ed44bf6abf35" + }, + { + "href": "./CB15_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4ff30577cff4bc1323e3baab8bda7e0679c5ddaa337e0d26e55aa73ccc6b210" + }, + { + "href": "./CB15_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ce7a4214a6a5965e57200113bd9e17709adab8b62b21ece700f2729c6a5cb653" + }, + { + "href": "./CB15_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c8f663bd6e9f5e733666a5642eb41562480d4686390b52569fb43acc8a39d827" + }, + { + "href": "./CB15_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122038e61e7416e1f875df8311c195fb3cc560a22960043ccc86b8c2f5ab7fb3f7cb" + }, + { + "href": "./CB15_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fdad78dfd61e84090474c60c8e84dc119e4b1660a06f4e54a8dea157b667b6a5" + }, + { + "href": "./CB15_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e6b17f8aed18d28050ed057aca2a81c4ab7e23314adea492c17112a714d708f9" + }, + { + "href": "./CB16_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220137e2cb9a9214aa938caf2eeee02976db901c24c808ef99e3fb271725fe25e26" + }, + { + "href": "./CB16_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202f0a2b384cbc084418b63fe295934fe07ccb14a06888888ad9a0724f67f0b09e" + }, + { + "href": "./CB16_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12201d30f95ab5730935e916154e9e968f9cc8555169c3a28ae8af22b587bd5372b3" + }, + { + "href": "./CB16_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209043c19ef74706e376261eb54e41176f83e5566d25ce1d7d7a3ef3efb2f8bc4b" + }, + { + "href": "./CB16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220112bf71e0ddb50b42fa03e3060b67303a119163ae540d453a4587e07efb3e43d" + }, + { + "href": "./CB16_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d14e766de337df188f9736d23f83237de98e2c3bab1bc6477c2c1493b3692dfc" + }, + { + "href": "./CB16_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c4904ce3403deec332baf3d8702f645f433ddc67583b4ff0476575e0a76a1dfe" + }, + { + "href": "./CB16_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a49069b340b4141852c462716b9065a56661034c12068fcda8bb74a3603f1026" + }, + { + "href": "./CB16_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a1d9dc9921652f59ed57e663287bdac67634d83b19a551c3d0cbc3a81ac1c296" + }, + { + "href": "./CB16_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220aceee159e4a8b1806929c863c12f4dbcc9d5a9e4bb94d8c7e4221f7ccf752189" + }, + { + "href": "./CB16_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122052cba91db8bd02e7e5230ed28022a48f1b299afbe6da589ad54d6f98b94b4eca" + }, + { + "href": "./CB16_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e5dc39235a042698e1cdbae18571822044a870ec1eae6cc3ccd5f9c63bb7389b" + }, + { + "href": "./CB16_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209d832e19fb4fb532115361d8754501e0174c4bda4508d69707c673cb126b7c33" + }, + { + "href": "./CB16_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220509b897600c41c627f9d2ce35d8de38f84d4c274d0e9623d8e466ce3c4a7d0fa" + }, + { + "href": "./CB16_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b6f07c85a8878633bbf0fab1eb7683c25f32b701c1f51deb728dc32bcb6c5cad" + }, + { + "href": "./CB16_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e12b3784a779d68159c46e3dc31244da8aac1a266f3262fca06490ccc20ee42d" + }, + { + "href": "./CB16_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220759c2a4caeb34ca719167c331369afaba23d5346f44f892e4a0c01b52f914639" + }, + { + "href": "./CB16_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122079cddf32320f356b35a13cb3e70a1c67e7e9400c05efbcb99e7c04069a4c93c7" + }, + { + "href": "./CB16_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209196214305a69fe28f19fe5d9d46622d5ab59ccfcb449b107560f4dac1916417" + }, + { + "href": "./CB16_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c35776d896620d4fd420ebb03775b87f673c1c5af52e14194876e2486529e424" + }, + { + "href": "./CB16_10000_0504.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208d9e03590af18b99c6039f795916395d1dfb29a8a609b3f237ca5913403e1b06" + }, + { + "href": "./CB16_10000_0505.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220fab2c8aabaea79a6b8c599bbced66b2dc006d7d43df9f0f94dd5bcecd77d4e99" + }, + { + "href": "./CB17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122049387f640ed6761baf21ac6dd9da314fa401528b22587be51cbcb3267aba01e3" + }, + { + "href": "./CB17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122027752e6f6401b35b5d4b8b518dc9aad8fa76600e2d0dd84e537ddf2958fdf7bd" + }, + { + "href": "./CB17_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abc5d690ba89e4ea0719f4c243f091ec5d7c4496107f3dfe05b25d4562f1b4f1" + }, + { + "href": "./CB17_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d5f88c1e97f0a840c95badfb13d8fe92e456b06f48a6542512b490c9c4efbbb5" + }, + { + "href": "./CB17_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200becf0a77c47f8eefdd7ae1f0993f7147ee99be11a61f70086c4255b1999f771" + }, + { + "href": "./CB17_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220883d3c6acbfe9d25766b68d7b9378ef70c2d8008edfd47f9623089c282c94b45" + }, + { + "href": "./CB17_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e7c9ad4c4d576e830307ccdbca9253314bd6ae6b093b4a170f8cf722df0c73f9" + }, + { + "href": "./CB17_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122045e31cb26e351c3b62abf7b765e92f03d4194728667b0b5251d52e688b504d5c" + }, + { + "href": "./CB17_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122061cbf6f111c1bbd708fd51305a532aeedf68bcc55cabf6ea93cc5eb8f491a433" + }, + { + "href": "./CB17_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12205c1470f7c1879501924d3a9d9ff14b9dffd2cef269ca92d4ba209c8f18f3dbf1" + }, + { + "href": "./CB17_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207bce32d282430d9787367ea595cb5576b4993c52aeca4d51f0810764ded5fc8a" + }, + { + "href": "./CB17_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122014d185e5afc3af68124241dfab3e595d7a01e7ede19b8d381b2efb8e7c04f3a8" + }, + { + "href": "./CB17_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12200c9ce919e4f5d4d652a5f972e0acf58ce626f994e02dd31dcfa000b17ae85960" + }, + { + "href": "./CB17_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b303f13468a80eba6ada1b1f0392efc084e7bfa71ac8ac09825abf7b4d957b77" + }, + { + "href": "./CB17_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204fe369ff2afad732bc2479de2256f4cc963509e4a4a5334de10278ae0a5ef553" + }, + { + "href": "./CB17_10000_0401.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202d71b60bfa474a47e6af86fc6cc872f0d4dc999e2db3cf78ee29831e525b24fb" + }, + { + "href": "./CB17_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202ace039e3a461eac88b0ac1b578240e7415fb6078ae1079459ab94ad8fff5a81" + }, + { + "href": "./CB17_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122000424ce0972ebf2070bee476bf3c9035dbf6dae4871a90c936a5ef2200d378ed" + }, + { + "href": "./CB17_10000_0404.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204198fe2e3b7fafab612661b7e7911a4f44e93ba6f2c874eb36f2b217c2e91879" + }, + { + "href": "./CB17_10000_0405.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035465d4fd0b507d1a150a7187e59e46d20520fdfd565331f14c39c386d1ba8f3" + }, + { + "href": "./CB17_10000_0501.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122035dc8fe7d794861a5218de58eee5a7fd6fbddc0b388b0aa0d51771e43524c156" + }, + { + "href": "./CB17_10000_0502.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122009828707167cd4533ab36f21f58af68ac2ff36f52cf91bedfc64a3847925f1da" + }, + { + "href": "./CB17_10000_0503.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051ae2b7fcb8e460db7775fc5541b73f523849ca39646fb82da166a0814051f2b" + }, + { + "href": "./CB18_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a4608fe1ed2fb6da75510e080a7146c9d1080b63c6726cbe6463a8ccac57f892" + }, + { + "href": "./CB18_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12207e62e18edcd7149069a3836e9d8e70ebfa0c163e0613fb41d8a86d82c8c9306f" + }, + { + "href": "./CB18_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c551cc5f4344521b92c4763c19a23e44c5243bf5a631768f3ac9f8f6af6fddcd" + }, + { + "href": "./CB18_10000_0104.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220295757681e6bc2d5810ffbf4d2fb3e05f2848a715e52e89497c28eb3c7d496fe" + }, + { + "href": "./CB18_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e0702d9469fccb392c45eb6f59bfcd1ce812276c76cac5da4f46034681d625c7" + }, + { + "href": "./CB18_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122071c0b835d994590bde781d25e5b6a136af79fbbac1cb814f005ed34f392c3900" + }, + { + "href": "./CB18_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220d1dcb1b59b54d510b73dcb371a6930dfe3714a81d4a28679e549cb88b52735d1" + }, + { + "href": "./CB18_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12203caf0a45213b59e53dd0506366ea4a7a121d1713375197bc13b67143ad62288e" + }, + { + "href": "./CB18_10000_0204.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122076032ce4a13bc509de0b5696cb0e617abde9e02d2e607ab10914a33078c00faf" + }, + { + "href": "./CB18_10000_0205.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12202a0f5e645ee287c28f521d19cddb4ea8204eb8da412fab631fc4f13651c70c88" + }, + { + "href": "./CB18_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a759c1b03d06f909ad874fbc86eb5d6fd02f501e20736b257b5e152c8c069afd" + }, + { + "href": "./CB18_10000_0302.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12208147a7a6e0c34a27cb5b7a6ab3b629eaf91af8baf7f6a53f2b2562bdad408be6" + }, + { + "href": "./CB18_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220606a38cd78b904de7b539c4529140dffc00b2ff71bc35028881162cb58e0be1e" + }, + { + "href": "./CB18_10000_0304.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220275c314b0643069b0a321e30fadf32a54efcff8a62fc4980012020daddbc10cb" + }, + { + "href": "./CB18_10000_0305.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12204764679d11c26c84567164c1c109c29ea4047b85690afae3586480860128c61a" + }, + { + "href": "./CB19_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b46c752f3666254d1918523acecd8c0b53fd278d05f2fe9a7153167e4c1bef45" + }, + { + "href": "./CB19_10000_0103.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220a358419216973700fd7bce9ca4f81555362b5bb8966d82d28344374f0d306454" + }, + { + "href": "./CB19_10000_0201.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220abc3bb10b9b29ae606aa94207832fb9f0be71d164b3bfd3422acf05fe8e788a1" + }, + { + "href": "./CB19_10000_0202.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220e431cd2c7e310d5e0f90de7778dabc5e89014667ec477fb1053ab8e1e792d6b4" + }, + { + "href": "./CB19_10000_0203.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122051662d8eefd17301cf3d3499696ef4923c56927f8c7cb27e55263abdfd2b2ba1" + }, + { + "href": "./CB19_10000_0301.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122081d091d94c80214744628a0a32a563433de48a5c64e44c3a1ad4f4df52336d2b" + }, + { + "href": "./CB19_10000_0303.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220c060e8e63355e7716b2b9949cdad12da510c2b13b5ff400499f1668c6e867ab8" + }, + { + "href": "./CB19_10000_0402.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220bc4821906a907175e88316e44ef4c8cfb7d4e8609207598dfedbae298b0b2da9" + }, + { + "href": "./CB19_10000_0403.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220ddcc3def385b1062ea8002c9d929b30735a5c291ba928b637386044132a3efa9" + }, + { + "href": "./CC16_10000_0105.json", + "rel": "item", + "type": "application/json", + "file:checksum": "12209182f5fea12a89c001589208539c81d76863cffa0425781160872759c4a62508" + }, + { + "href": "./CC17_10000_0101.json", + "rel": "item", + "type": "application/json", + "file:checksum": "122054897eec9a91b83f8204926cc934cc4eae0e5bdac1a10fc7eb529bd7a9f04777" + }, + { + "href": "./CC17_10000_0102.json", + "rel": "item", + "type": "application/json", + "file:checksum": "1220b45dd8ae84862b8cc40ed6fd7b81f1c11763dac0e75b5bbce6253daf75b94442" + } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "created": "2024-09-16T23:45:44Z", + "updated": "2024-09-16T23:45:44Z", + "extent": { + "spatial": { "bbox": [[169.4839839, -45.1015354, 174.0724206, -41.8817418]] }, + "temporal": { "interval": [["2020-04-30T12:00:00Z", "2023-04-27T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122098efb60103ecf74f84e1d192007e624cfcc63f917935b1cf0624623b12284cb6", + "file:size": 131656 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/cheviot_2015/dem_1m/2193/collection.json b/stac/canterbury/cheviot_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..5d32c6e7 --- /dev/null +++ b/stac/canterbury/cheviot_2015/dem_1m/2193/collection.json @@ -0,0 +1,46 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQS7W3T1D5D5R04QTCG7TGG8", + "title": "Canterbury - Cheviot LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Cheviot", + "extent": { + "spatial": { "bbox": [[173.1465831, -42.8592009, 173.3231548, -42.7292537]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220538d0a5ce6ded156608353c917ef1e0bb29ef5d322e6c9543fde49f058dfb4dc", + "file:size": 3180 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/cheviot_2015/dsm_1m/2193/collection.json b/stac/canterbury/cheviot_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..0264ed55 --- /dev/null +++ b/stac/canterbury/cheviot_2015/dsm_1m/2193/collection.json @@ -0,0 +1,46 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCYC10HABGXCQP9SADPS0V", + "title": "Canterbury - Cheviot LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Cheviot", + "extent": { + "spatial": { "bbox": [[173.1465831, -42.8592009, 173.3231548, -42.7292537]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f7ed46f0b17ae95eb5fa52559c46fb00e23c235f5dc7688fd22377eebe000478", + "file:size": 3183 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..5e6cc9e9 --- /dev/null +++ b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9MYMB02Q08R7DMZM9JC45", + "title": "Canterbury - Christchurch and Ashley River LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Ashley River", + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.1818868]] }, + "temporal": { "interval": [["2018-07-19T12:00:00Z", "2019-02-28T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12208d2a42956525a4d71ed3a296cdb62181d76127140f235f8ab9211e521ea53b10", + "file:size": 6876 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..8a73da46 --- /dev/null +++ b/stac/canterbury/christchurch-and-ashley-river_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9QP6RXGNJTPDK3GFV0HBQ", + "title": "Canterbury - Christchurch and Ashley River LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Canterbury region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Ashley River", + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.1818868]] }, + "temporal": { "interval": [["2018-07-19T12:00:00Z", "2019-02-28T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f874cb39914819aae3f04acf4026558ca96faf5474fde1343c0b57c9bdb15ca6", + "file:size": 7546 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json b/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..d5509c7c --- /dev/null +++ b/stac/canterbury/christchurch-and-selwyn_2015/dem_1m/2193/collection.json @@ -0,0 +1,131 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HR6DAH3HJ7F47WHV84E2MY4K", + "title": "Canterbury - Christchurch and Selwyn LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.8513887, -43.2425921]] }, + "temporal": { "interval": [["2015-10-04T11:00:00Z", "2015-10-06T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122004392b58b698322f87840f9126029543c16dda7f9e7116c76935e618471e1e9a", + "file:size": 216762 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json b/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f17af9ab --- /dev/null +++ b/stac/canterbury/christchurch-and-selwyn_2015/dsm_1m/2193/collection.json @@ -0,0 +1,131 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HR6EQY08SCPSHK796KNY036F", + "title": "Canterbury - Christchurch and Selwyn LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch and Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.8513887, -43.2425921]] }, + "temporal": { "interval": [["2015-10-04T11:00:00Z", "2015-10-06T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f554d3516483406eaaa8360f80bb475e5845c601ba4082d27a201606d173b213", + "file:size": 277257 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..b9b08869 --- /dev/null +++ b/stac/canterbury/christchurch_2020-2021/dem_1m/2193/collection.json @@ -0,0 +1,69 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREEBV79GH7Y7YGR103KRGT", + "title": "Canterbury - Christchurch LiDAR 1m DEM (2020-2021)", + "description": "Digital Elevation Model within the Canterbury region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Christchurch City Council", "roles": ["licensor"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch", + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.376959]] }, + "temporal": { "interval": [["2020-12-17T11:00:00Z", "2021-02-16T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220cdf1eb5ca45af0a9480bd187022948b9be59f812addd4078d2fb2fd399e899c4", + "file:size": 27016 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..c77f1a59 --- /dev/null +++ b/stac/canterbury/christchurch_2020-2021/dsm_1m/2193/collection.json @@ -0,0 +1,69 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREEBVAAMKESB7STV9DG2Z7", + "title": "Canterbury - Christchurch LiDAR 1m DSM (2020-2021)", + "description": "Digital Surface Model within the Canterbury region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Christchurch City Council", "roles": ["licensor"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Christchurch", + "extent": { + "spatial": { "bbox": [[172.3758499, -43.7020304, 172.8513887, -43.376959]] }, + "temporal": { "interval": [["2020-12-17T11:00:00Z", "2021-02-16T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e9d6043db97b09d4c5b0cde1db706f14bc31e151ad572a3ab78e307f07a11e5e", + "file:size": 20851 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/hawarden_2015/dem_1m/2193/collection.json b/stac/canterbury/hawarden_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..1735d08e --- /dev/null +++ b/stac/canterbury/hawarden_2015/dem_1m/2193/collection.json @@ -0,0 +1,45 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSA6GBJRQSZ3K569B1EMBPE", + "title": "Canterbury - Hawarden LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hawarden", + "extent": { + "spatial": { "bbox": [[172.6172892, -42.988754, 172.7356, -42.8587487]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204bc4521c8027f45f64130b005578e1317e28ced6aa60fa2e8b7373a161b0fd25", + "file:size": 4652 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/hawarden_2015/dsm_1m/2193/collection.json b/stac/canterbury/hawarden_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3f212515 --- /dev/null +++ b/stac/canterbury/hawarden_2015/dsm_1m/2193/collection.json @@ -0,0 +1,45 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSA6GBES7MBX0AHDZB2N2JP", + "title": "Canterbury - Hawarden LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hawarden", + "extent": { + "spatial": { "bbox": [[172.6172892, -42.988754, 172.7356, -42.8587487]] }, + "temporal": { "interval": [["2015-03-31T11:00:00Z", "2015-03-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122011edbc6c32de3e32a774fe15676fe3c31480726c05532dce6f632f26806304d9", + "file:size": 4652 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/hurunui-rivers_2013/dem_1m/2193/collection.json b/stac/canterbury/hurunui-rivers_2013/dem_1m/2193/collection.json new file mode 100644 index 00000000..b8eac04d --- /dev/null +++ b/stac/canterbury/hurunui-rivers_2013/dem_1m/2193/collection.json @@ -0,0 +1,94 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSC6G0451BBQS5TT5WYQRE7", + "title": "Canterbury - Hurunui Rivers LiDAR 1m DEM (2013)", + "description": "Digital Elevation Model within the Canterbury region captured in 2013.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hurunui Rivers", + "extent": { + "spatial": { "bbox": [[172.500061, -42.9241895, 173.3815101, -42.4698929]] }, + "temporal": { "interval": [["2013-05-11T12:00:00Z", "2013-05-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204ffae81bb77943dfe3560f765a6f1df0741925ce676aba622d242c8ce1c68b73", + "file:size": 18982 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/hurunui-rivers_2013/dsm_1m/2193/collection.json b/stac/canterbury/hurunui-rivers_2013/dsm_1m/2193/collection.json new file mode 100644 index 00000000..4274160f --- /dev/null +++ b/stac/canterbury/hurunui-rivers_2013/dsm_1m/2193/collection.json @@ -0,0 +1,94 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSC72NE9Y0BE4AE0C1Z355G", + "title": "Canterbury - Hurunui Rivers LiDAR 1m DSM (2013)", + "description": "Digital Surface Model within the Canterbury region captured in 2013.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BU23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hurunui Rivers", + "extent": { + "spatial": { "bbox": [[172.500061, -42.9241895, 173.3815101, -42.4698929]] }, + "temporal": { "interval": [["2013-05-11T12:00:00Z", "2013-05-29T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205a5faa0702b16bbfe8182a2036981110f73da7f2a40fbd9c00c5559170dace33", + "file:size": 23465 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/kaikoura-and-waimakariri_2022/dem_1m/2193/collection.json b/stac/canterbury/kaikoura-and-waimakariri_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..95bcf88d --- /dev/null +++ b/stac/canterbury/kaikoura-and-waimakariri_2022/dem_1m/2193/collection.json @@ -0,0 +1,75 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPR6PJ7KSZNPJF752QBTVAQ", + "title": "Canterbury - Kaikōura and Waimakariri LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Canterbury region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura and Waimakariri", + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 173.9594288, -42.0772793]] }, + "temporal": { "interval": [["2022-05-01T12:00:00Z", "2022-09-14T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122015f4164f6579dc27b12488ab9a6aeb7c40fa629ed3028f6cd46e3f5056874936", + "file:size": 8154 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/kaikoura-and-waimakariri_2022/dsm_1m/2193/collection.json b/stac/canterbury/kaikoura-and-waimakariri_2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a713b881 --- /dev/null +++ b/stac/canterbury/kaikoura-and-waimakariri_2022/dsm_1m/2193/collection.json @@ -0,0 +1,75 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPR7ZHFCAJ9H1P1MM608J8M", + "title": "Canterbury - Kaikōura and Waimakariri LiDAR 1m DSM (2022)", + "description": "Digital Surface Model within the Canterbury region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura and Waimakariri", + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 173.9594288, -42.0772793]] }, + "temporal": { "interval": [["2022-05-01T12:00:00Z", "2022-09-14T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122015f4164f6579dc27b12488ab9a6aeb7c40fa629ed3028f6cd46e3f5056874936", + "file:size": 8154 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/kaikoura_2012/dem_1m/2193/collection.json b/stac/canterbury/kaikoura_2012/dem_1m/2193/collection.json new file mode 100644 index 00000000..66ebc85e --- /dev/null +++ b/stac/canterbury/kaikoura_2012/dem_1m/2193/collection.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSAYZWQ4MJJMTB1D8YYRXH9", + "title": "Canterbury - Kaikōura LiDAR 1m DEM (2012)", + "description": "Digital Elevation Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura", + "extent": { + "spatial": { "bbox": [[173.2056449, -42.9240384, 174.0724206, -41.9465794]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122064a47d80d5efaa0ea4c55108a8d463692315b45e4ffc7d7bc01aac9d01903913", + "file:size": 15629 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/kaikoura_2012/dsm_1m/2193/collection.json b/stac/canterbury/kaikoura_2012/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3de4ef9f --- /dev/null +++ b/stac/canterbury/kaikoura_2012/dsm_1m/2193/collection.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSAY20KENXSZ9MNMTQ2NMDE", + "title": "Canterbury - Kaikōura LiDAR 1m DSM (2012)", + "description": "Digital Surface Model within the Canterbury region captured in 2012.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV26_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura", + "extent": { + "spatial": { "bbox": [[173.2056449, -42.9240384, 174.0724206, -41.9465794]] }, + "temporal": { "interval": [["2012-07-09T12:00:00Z", "2012-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200ed534b48a8878f47415308f410e282c6a597d77c800d3c3a0eb115a80ed046f", + "file:size": 17391 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/kaikoura_2016-2017/dem_1m/2193/collection.json b/stac/canterbury/kaikoura_2016-2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..b8dfecb6 --- /dev/null +++ b/stac/canterbury/kaikoura_2016-2017/dem_1m/2193/collection.json @@ -0,0 +1,155 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRF0R1M1RWZJZCMFAQZJVWD", + "title": "Canterbury - Kaikōura LiDAR 1m DEM (2016-2017)", + "description": "Digital Elevation Model within the Canterbury region captured in 2016-2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU27_10000_0301.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kaikōura", + "extent": { + "spatial": { "bbox": [[172.8534169, -42.7942424, 174.3002884, -41.4927001]] }, + "temporal": { "interval": [["2016-12-01T11:00:00Z", "2017-01-05T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207e3c797095ff919b97a68c5f2f6efee62def9853e5c5223b1792f41cb70fbc2e", + "file:size": 537370 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..0ec65fd0 --- /dev/null +++ b/stac/canterbury/mackenzie_2015/dem_1m/2193/collection.json @@ -0,0 +1,84 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQM3VFGWXGMJDH3XQE0YZFGT", + "title": "Canterbury - Mackenzie LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Mackenzie", + "extent": { + "spatial": { "bbox": [[169.9006493, -44.5118652, 170.5154636, -43.9938781]] }, + "temporal": { "interval": [["2015-02-09T11:00:00Z", "2015-02-10T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d4d3463394f6e8f7917d5aed08f82cd11705f012bf5b0c284aedae01afa92856", + "file:size": 52996 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..8dcd2685 --- /dev/null +++ b/stac/canterbury/mackenzie_2015/dsm_1m/2193/collection.json @@ -0,0 +1,84 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQM8KTDJ4NTX0TSBQ59M58N6", + "title": "Canterbury - Mackenzie LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Canterbury region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CA16_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Mackenzie", + "extent": { + "spatial": { "bbox": [[169.9006493, -44.5118652, 170.5154636, -43.9938781]] }, + "temporal": { "interval": [["2015-02-09T11:00:00Z", "2015-02-10T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204ce9621accd67b824480f351309531088541f5edaecea92347bdc7ec956b0e14", + "file:size": 54581 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/rangiora_2014/dem_1m/2193/collection.json b/stac/canterbury/rangiora_2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..b34a200b --- /dev/null +++ b/stac/canterbury/rangiora_2014/dem_1m/2193/collection.json @@ -0,0 +1,73 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSD25FVDMA2GQV4AYB96ESZ", + "title": "Canterbury - Rangiora LiDAR 1m DEM (2014)", + "description": "Digital Elevation Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waimakariri District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Rangiora", + "extent": { + "spatial": { "bbox": [[172.1408607, -43.5070798, 172.7932703, -43.1821917]] }, + "temporal": { "interval": [["2014-03-13T11:00:00Z", "2014-06-22T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bc4fe6ce1d17af21db343d758f951200b256e457089a6c38c4b7e70ce5d9ce78", + "file:size": 4437 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/rangiora_2014/dsm_1m/2193/collection.json b/stac/canterbury/rangiora_2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f2269f14 --- /dev/null +++ b/stac/canterbury/rangiora_2014/dsm_1m/2193/collection.json @@ -0,0 +1,73 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSCTZ39VYA7MB0KJ2NZHS9W", + "title": "Canterbury - Rangiora LiDAR 1m DSM (2014)", + "description": "Digital Surface Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waimakariri District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Rangiora", + "extent": { + "spatial": { "bbox": [[172.1408607, -43.5070798, 172.7932703, -43.1821917]] }, + "temporal": { "interval": [["2014-03-13T11:00:00Z", "2014-06-22T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122058366fdf40e712341a5941166f57df64f11e40d5af35e427bf5ad5834d20d533", + "file:size": 4345 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/selwyn_2023/dem_1m/2193/collection.json b/stac/canterbury/selwyn_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..1e336aca --- /dev/null +++ b/stac/canterbury/selwyn_2023/dem_1m/2193/collection.json @@ -0,0 +1,143 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRK2MSMGYPSNKGWSWQNJDDY", + "title": "Canterbury - Selwyn LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.6730573, -43.2425921]] }, + "temporal": { "interval": [["2023-03-23T11:00:00Z", "2023-05-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220feaa32a589b7657eefdf7e51e155e528c8bde12aee0270a94d9b749bf3860695", + "file:size": 40937 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/selwyn_2023/dsm_1m/2193/collection.json b/stac/canterbury/selwyn_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..c9283368 --- /dev/null +++ b/stac/canterbury/selwyn_2023/dsm_1m/2193/collection.json @@ -0,0 +1,143 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRKKNZVGJKT4AHS5D5P0F7K", + "title": "Canterbury - Selwyn LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX20_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX21_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY24_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Selwyn", + "extent": { + "spatial": { "bbox": [[171.6032562, -43.959082, 172.6730573, -43.2425921]] }, + "temporal": { "interval": [["2023-03-23T11:00:00Z", "2023-05-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220feaa32a589b7657eefdf7e51e155e528c8bde12aee0270a94d9b749bf3860695", + "file:size": 40937 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/timaru-rivers_2014/dem_1m/2193/collection.json b/stac/canterbury/timaru-rivers_2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..f0817700 --- /dev/null +++ b/stac/canterbury/timaru-rivers_2014/dem_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSBRG4DAHXQZHSZ85MEHTVQ", + "title": "Canterbury - Timaru Rivers LiDAR 1m DEM (2014)", + "description": "Digital Elevation Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Timaru Rivers", + "extent": { + "spatial": { "bbox": [[171.1055033, -44.3393238, 171.5311798, -43.8821696]] }, + "temporal": { "interval": [["2014-07-06T12:00:00Z", "2014-08-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202fad12a26fe84c99f847508f11e3aca46f0f8d05e1cd9f2ec32a93639c913b06", + "file:size": 5598 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/timaru-rivers_2014/dsm_1m/2193/collection.json b/stac/canterbury/timaru-rivers_2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a2234f2e --- /dev/null +++ b/stac/canterbury/timaru-rivers_2014/dsm_1m/2193/collection.json @@ -0,0 +1,77 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSBQZA7WGW8Y9MX09EDZAMJ", + "title": "Canterbury - Timaru Rivers LiDAR 1m DSM (2014)", + "description": "Digital Surface Model within the Canterbury region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ20_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Timaru Rivers", + "extent": { + "spatial": { "bbox": [[171.1055033, -44.3393238, 171.5311798, -43.8821696]] }, + "temporal": { "interval": [["2014-07-06T12:00:00Z", "2014-08-03T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203fc17c4236b679b89b40b0f4a1986b3f543a6192abde77384911c9b73d874dc8", + "file:size": 7391 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/waimakariri_2023/dem_1m/2193/collection.json b/stac/canterbury/waimakariri_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..d9a5f4fe --- /dev/null +++ b/stac/canterbury/waimakariri_2023/dem_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRHS1506DS75K2RRZCH0YHC", + "title": "Canterbury - Waimakariri LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimakariri", + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 172.7333572, -43.3090661]] }, + "temporal": { "interval": [["2023-06-13T12:00:00Z", "2023-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207faa642c46168e9d0488c1072fe4afa1bb818d43eb37f55e775e6cd6e0809bb0", + "file:size": 3878 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/canterbury/waimakariri_2023/dsm_1m/2193/collection.json b/stac/canterbury/waimakariri_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e0eef380 --- /dev/null +++ b/stac/canterbury/waimakariri_2023/dsm_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRHZFPDNBW416DPVBGNYDJH", + "title": "Canterbury - Waimakariri LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Canterbury region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX23_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Canterbury", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "canterbury", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimakariri", + "extent": { + "spatial": { "bbox": [[172.0213315, -43.506864, 172.7333572, -43.3090661]] }, + "temporal": { "interval": [["2023-06-13T12:00:00Z", "2023-07-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207faa642c46168e9d0488c1072fe4afa1bb818d43eb37f55e775e6cd6e0809bb0", + "file:size": 3878 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json b/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..92e254f4 --- /dev/null +++ b/stac/gisborne/gisborne_2018-2020/dem_1m/2193/collection.json @@ -0,0 +1,345 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPFS47XJEWC1PYV4EGVXEPW", + "title": "Gisborne LiDAR 1m DEM (2018-2020)", + "description": "Digital Elevation Model within the Gisborne region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD46_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Gisborne District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.6355576, -37.4863429]] }, + "temporal": { "interval": [["2018-12-30T11:00:00Z", "2020-10-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202c655ed16c76f4efd71660102e1345e7f4d7c2073eb6278f618c528cc37cb8e7", + "file:size": 23704 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json b/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..9bd02eec --- /dev/null +++ b/stac/gisborne/gisborne_2018-2020/dsm_1m/2193/collection.json @@ -0,0 +1,345 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPGG0W0NC0HV3R2YFTRS0CX", + "title": "Gisborne LiDAR 1m DSM (2018-2020)", + "description": "Digital Surface Model within the Gisborne region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD46_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Gisborne District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.6355576, -37.4863429]] }, + "temporal": { "interval": [["2018-12-30T11:00:00Z", "2020-10-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122030cc7dcbe933c720eb02335f9359443042b75efea20d733b65106aa846b282a1", + "file:size": 24627 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..3fd6e99b --- /dev/null +++ b/stac/gisborne/gisborne_2023/dem_1m/2193/collection.json @@ -0,0 +1,345 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDFKQ68GXZAZNG4SQ0401C", + "title": "Gisborne LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Gisborne region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD45_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD46_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BE45_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF45_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.6355576, -37.4863429]] }, + "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-12-15T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203d26fc48f5ab8be755782e2f58ef8f9eca88e7834a5e62d29b41eff0b16bd370", + "file:size": 23640 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..19375b55 --- /dev/null +++ b/stac/gisborne/gisborne_2023/dsm_1m/2193/collection.json @@ -0,0 +1,183 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDFZP3KT8EFJK778REJJR1", + "title": "Gisborne LiDAR 1m DSM (2023) - Draft", + "description": "Digital Surface Model within the Gisborne region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG44_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dsm", + "linz:region": "gisborne", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[177.1042804, -38.9989083, 178.3620224, -38.3263176]] }, + "temporal": { "interval": [["2023-09-10T12:00:00Z", "2023-11-12T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12208da51d526b20e7f47089fc920692ca235aa56afffff59ae4b0a40f7ab61726aa", + "file:size": 10127812 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dem_1m/2193/collection.json b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..7593f41d --- /dev/null +++ b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dem_1m/2193/collection.json @@ -0,0 +1,170 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRNZW7PKPYY1MPMNQS1JBW", + "title": "Gisborne and Hawke's Bay - Cyclone Gabrielle River Flood LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Hawke's Bay and Gisborne regions captured in 2023, published as a record of the Cyclone Gabrielle event.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Christchurch Helicopters", "roles": ["producer"] }, + { "name": "University of Canterbury", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "linz:event_name": "Cyclone Gabrielle", + "linz:geographic_description": "Gisborne and Hawke's Bay Cyclone Gabrielle River Flood", + "extent": { + "spatial": { "bbox": [[176.4556302, -40.019003, 178.3620224, -38.0678855]] }, + "temporal": { "interval": [["2023-02-25T11:00:00Z", "2023-03-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220b384673a31ec5cdcd972e5fc326f4d1e839de175a34cdf845b40a96a9502702d", + "file:size": 221173 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dsm_1m/2193/collection.json b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..bdbf79cd --- /dev/null +++ b/stac/hawkes-bay/gisborne-and-hawkes-bay-cyclone-gabrielle-river-flood_2023/dsm_1m/2193/collection.json @@ -0,0 +1,170 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRZF3K0Y1A1V5R4ND8G48V", + "title": "Gisborne and Hawke's Bay - Cyclone Gabrielle River Flood LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Hawke's Bay and Gisborne regions captured in 2023, published as a record of the Cyclone Gabrielle event.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BF43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF44_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Christchurch Helicopters", "roles": ["producer"] }, + { "name": "University of Canterbury", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "linz:event_name": "Cyclone Gabrielle", + "linz:geographic_description": "Gisborne and Hawke's Bay Cyclone Gabrielle River Flood", + "extent": { + "spatial": { "bbox": [[176.4556302, -40.019003, 178.3620224, -38.0678855]] }, + "temporal": { "interval": [["2023-02-25T11:00:00Z", "2023-03-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122011b892c26825aef200fa20a36ede1993cae68971513194ef3a602cc67fc7e22d", + "file:size": 214249 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..0a33a7da --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2020-2021/dem_1m/2193/collection.json @@ -0,0 +1,511 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRKWAJPZEDENJPH4Q6HPXZ", + "title": "Hawke's Bay LiDAR 1m DEM (2020-2021)", + "description": "Digital Elevation Model within the Hawke's Bay region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Hawke's Bay Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.5592701]] }, + "temporal": { "interval": [["2020-11-10T11:00:00Z", "2021-01-23T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200c1514fc96b7e69d3b26ab5aa7a57d887c098bcfecead71f661025a3dcec4a92", + "file:size": 30658 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/hawkes-bay/hawkes-bay_2020-2021/dsm_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2020-2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..dc766d5b --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2020-2021/dsm_1m/2193/collection.json @@ -0,0 +1,511 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPRNN2M56N08D9DXW3S272J", + "title": "Hawke's Bay LiDAR 1m DSM (2020-2021)", + "description": "Digital Surface Model within the Hawke's Bay region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG41_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG42_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH40_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH41_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH42_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH43_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ40_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ42_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ43_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK39_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK40_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL38_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL39_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM37_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM38_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM39_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Hawke's Bay Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.5592701]] }, + "temporal": { "interval": [["2020-11-10T11:00:00Z", "2021-01-23T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200c1514fc96b7e69d3b26ab5aa7a57d887c098bcfecead71f661025a3dcec4a92", + "file:size": 30658 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..9594388c --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2023/dem_1m/2193/collection.json @@ -0,0 +1,2395 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HYCJ3EXF37J4A9130AH7Q2RF", + "title": "Hawke's Bay LiDAR 1m DEM (2023-2024) - Draft", + "description": "Digital Elevation Model within the Hawke's Bay region captured in 2023-2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BG41_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086bd743c7304e563163fd91bdb54f006eb1692837cfbd47dc7c7262845cc9228" + }, + { + "href": "./BG41_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef77b75969297ba17a5c5fcf4743a9b3ff92fb7c40590e89df58a5592312a487" + }, + { + "href": "./BG41_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021c4d5e8db1e57729eb648de1b1e5f86000793f86d5f2a848159a90b560d6fea" + }, + { + "href": "./BG41_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a99f2bd7035b91bef10fed6d1ec0c9a349bf5c2adaca8a0f8174527e30299b6e" + }, + { + "href": "./BG42_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209fd97cb9d3c509a6c7969af7b44aefdb489f9ebb87f1a72215a1c393c6169e6e" + }, + { + "href": "./BH36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bf86916adce3ad93da2c40e1edf4f37c1dda5cb47edc592841d0bee6af6cac3" + }, + { + "href": "./BH36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033236a5c9ddc7716643c629b6159b7134a824ee54c17fa9ff988688d6036155a" + }, + { + "href": "./BH36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209dd530a782546ba14f9bd53d30bba15984cbea998b5838785e538b6d2af6eb6d" + }, + { + "href": "./BH36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022b3fc7120aaa59047dfedec20f934f922ac77779880b8058924ad80c35cb297" + }, + { + "href": "./BH36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220569df008b456a9be77a697bb190b63f3fbf71ba4f98b67a8b128dc0045e8de88" + }, + { + "href": "./BH37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e69f6fd026d98165046d2709e9d54deaee57558f69c0639883a0b26992d0606" + }, + { + "href": "./BH37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a61ee004afd0d05c4715794c1651cba92ca8e7947b866ec1625c42034039ac46" + }, + { + "href": "./BH38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f32cad088ad13515fc1851cef8d35fd36cefdac2927b0dcf8bb08015078f751" + }, + { + "href": "./BH38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220283ebf20aaf06a2fb1bd5159daee482c8b071ba357ff78e469073ec745ffdfe1" + }, + { + "href": "./BH38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062521f9d16feb13179cb1daadd397386c2e64341cd9c7038e22f3a4b396dc23d" + }, + { + "href": "./BH38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220609954339ad7d6c19f4d1de66c0d851c4cfcac713fad3bbaab6c98a3cced2564" + }, + { + "href": "./BH38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060cc6522d4aeb4490a22dc1d946a6a4903368013c506cebf21ab1a0bb9cee1bd" + }, + { + "href": "./BH38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219ff69c9e00d49404ba8da3a05cdda2e4cf52b37a5f40a4829c1052c07d7dfd" + }, + { + "href": "./BH38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b126e05d75e827f521c919db42c1b7d3bdce412e87ce1151249e862c7c2391f" + }, + { + "href": "./BH38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1816e5dc7bc0ea4f169074c594f2e5857b395c3708b0af56bb37ceff84110e9" + }, + { + "href": "./BH39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f040fac1c8c37027d2472c2243c9ab995afa8711832813489ce7188844f5a5d2" + }, + { + "href": "./BH39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208e34cac12dfd625c63fa7b92b7389ac8a8058a1f472b0258f7f336762f616f33" + }, + { + "href": "./BH39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056ac621f2dada9bb52eecf90dd2f3a5222f8b6d088d53f641da147d68aaf8d53" + }, + { + "href": "./BH39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b2cf22f3c02aadb175470f26b093069c1caf4a86165bccb183571a71a632f453" + }, + { + "href": "./BH39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8c0e18fa3306ad48a6bf1e5c7dd30eceaaa07372e32dc16212a7372caa9d2d7" + }, + { + "href": "./BH39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200d40bcaad0b8705bad0ac593a7d83481522f6a2ce462afaa9d952d4e62433488" + }, + { + "href": "./BH39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016697c83302f28bc6e6711634afea1e073c9c697dcae747810fb6eda91fe1d55" + }, + { + "href": "./BH39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be0476162d1330dca43d1450de5d255bd903b1ff743b60b979d6ee7298e50758" + }, + { + "href": "./BH39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122026badb9c4b3defabe059e8df9a8cd2162507942e1ec54448f86fd308a204f36b" + }, + { + "href": "./BH39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a838c273004d841f573e007064157a0bfd851c427c28267a051757db81d1bc07" + }, + { + "href": "./BH39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e8eaab71f44b8a449b48de49d80d9d665b4efbd90276e41ffed5088b4731c66" + }, + { + "href": "./BH39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de4181465e7c744acbcf774c0754e7de7c2d3b1daf8395e4d1fa86f07ec1d01c" + }, + { + "href": "./BH39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200cac4e6852e6c6a0dc005830eee14853c1963c7d5dac5b94b64d8ecebb1d48f8" + }, + { + "href": "./BH39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b8e5f3aaf1d8816dcf6b435c8e69b51cc5bd32ed16b108430aca3eaa57fcb39" + }, + { + "href": "./BH39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f82cae323f43f84963ca9fce8ab00a0e72ee2e03f35bed37fd830146aa22c1e5" + }, + { + "href": "./BH40_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb0251775310fab2994102c790bcf2b81687cc15dcf50e5370c4739d88b9f2e2" + }, + { + "href": "./BH40_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023217402f9ee564b5241f757b820c6f46633d6598cc2b314b947bf384302e751" + }, + { + "href": "./BH40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ecbbf635dee99be2c85c698ed28e7afa8469bdf2fe2f23aa0a4ada7e04ff0993" + }, + { + "href": "./BH40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046fc1cd7f519332d7b1d8fff5bf68b14c1a4fdea749dc8d914d3b68de65dcfd7" + }, + { + "href": "./BH40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ce96a21016bd137754a9a84bc65bfa60b5ac5977df1ab9e96a5ae7a96a78d26" + }, + { + "href": "./BH40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220071d135fdde19547a2ad3cc36536c669dea76b0dfaec05dad9003d4acd1a0393" + }, + { + "href": "./BH40_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220795cb3c9636f0f5d744771fc177dfb3f992c1996f5566c2deee3f51742461cf6" + }, + { + "href": "./BH40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062f1f8c6422308da1b93fb6630e23db932833ed9a497658c81603f6023c59b67" + }, + { + "href": "./BH40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f87ec972e583ccdb3205b6207be0c6d404767ed23811ef76bc97f54fde7d4864" + }, + { + "href": "./BH40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220930e0e1cb660ac8f3bbb9f6f13363b36c6d25cf2acdcee639e3eeea7f2fb4e77" + }, + { + "href": "./BH40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067d94f82e186dc5dc87df7c06c8a104ee59034a9e3717f1dc4e2dc3c7593b406" + }, + { + "href": "./BH40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208fab787ac888fbe75373e4c8104d3285ef2b0015be046b00b50e54bb1b96ae0a" + }, + { + "href": "./BH40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da34e03d7d6a269bc96ef13c72e17fe790b802dfb66fcb96f5f660c595b3c3de" + }, + { + "href": "./BH40_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c1badaf209bce61e751e15c42d7904db5430b859d0dd2581511b2cf8e0b754b" + }, + { + "href": "./BH40_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c56141bbb051434eab3c5d0ff485fc9d068a9e54c0389dce8b07c6404ce7e99e" + }, + { + "href": "./BH40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e8737e6e8ee1caf4d52c00b1216daed91ed5a5cacb58b54e2c4de750e4c27a5" + }, + { + "href": "./BH40_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cc5495208d9040e348e0eb23afee205799f5de82c245c417f7e573b80a7b0d0" + }, + { + "href": "./BH40_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f09ca9295398e5578eb15a30760c15a223ffe6c7131c4ccfa887272daaceb68f" + }, + { + "href": "./BH40_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204026adcdf00ae0f69ac4609f7c5f530755416901c2e8731f6069dbd77acf4477" + }, + { + "href": "./BH40_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c34f471bbc127fc67a2505d3e7c775fb2498c23bebfaaacc8e389a12b3391f09" + }, + { + "href": "./BH40_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cc8c5eb9109d5a0ff998938adf2be5072d07c797a6167fe36e98646bbe95ef4" + }, + { + "href": "./BH40_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048620f6cd9d3026a8a0210d20146916270b67fa93a5d54373a74ae3f987aab98" + }, + { + "href": "./BH41_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d395072e43068ba178ecdd0b6292bd406c4ee9854019a0371e0c4da4a7bed42" + }, + { + "href": "./BH41_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200308cc7d8ef0d50a561249dd2f21a79dc224991738d18e13ddc4ef0ce9c56de9" + }, + { + "href": "./BH41_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204648e4b2dcdc0ab1ed032523d0dd900c4a1556394ac67d4618ed007e98e5caa8" + }, + { + "href": "./BH41_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cbd5f903d963563bd23de446dfa267186f1be075935bcddd8e7f66f2efdc8224" + }, + { + "href": "./BH41_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209841a1c6854d8d593af8a4dbd264913b2ca2931f0753d33ff1e4a6689b813734" + }, + { + "href": "./BH41_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d63c8a867ff9c73a65c1feda56f4be96af1bcdf7171fc065beb28117b263becf" + }, + { + "href": "./BH41_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbed3272b3bdc34a3ea311887527f64922c0b68040d31d182a01ae1b21e1132e" + }, + { + "href": "./BH41_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207646d1a0d7892f0876807cb89a2cae336871d79230c0bb9687a90b4e871ef775" + }, + { + "href": "./BH41_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a377b4863d0be5fc603b19411422fa1ab08349d6dc1fea8102a6ad457e5a47eb" + }, + { + "href": "./BH41_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e53f60a6ddcce6a8ab9f665710df4a42ecd9f31a039fb8fc775ec361f1db054b" + }, + { + "href": "./BH41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a0d80e8441d21324a85d782be82315533591120b573e218063e5f02876e3539" + }, + { + "href": "./BH41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001cf21331c4a05b2a6d138f3514262cf057afefa619243fe9dc4bc81cca49f76" + }, + { + "href": "./BH41_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1cd7b2f8bd1f185ff847b2295a177697ed5a3425dc33d8f9ee053a1f67521c7" + }, + { + "href": "./BH41_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060b0664acbd8f36f425a0276147dfa51e68d6c9715537fc18eb6c4919f3c64ee" + }, + { + "href": "./BH41_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c27b20a516d0ccee52a0d3c4aefda69beae3c795f9cabb9f54b65c91a3dd8f4f" + }, + { + "href": "./BH41_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc35143cf4aa11d3bf23e1da090146e1a8d67be60e244aab07faa732ecaf1537" + }, + { + "href": "./BH41_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122045a3ca6a9396487f55111d3d5972882f535d3bfa57dd7e4cda3805aa58d13acc" + }, + { + "href": "./BH41_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201319c353e13a6d834db74b4d1f432b12e4212a18f2b1a29dee21e7ac6869fbe0" + }, + { + "href": "./BH41_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043b8e20f98792eda5fdb667601b574822426f55aebb63e56a5133d6d43a2ce82" + }, + { + "href": "./BH41_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220847e230e9216f7db91e6ff9a29f258d897fb01f9bacf16ea392fe770b003e150" + }, + { + "href": "./BH41_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064f4b6245e062b5146c5de6741f21172c4d2415db79361bb0e42636ecc63a8c6" + }, + { + "href": "./BH42_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee26faf65d2d9783b849656e74f6cc202ccd876ae3cde0a61d3c5306c440244c" + }, + { + "href": "./BH42_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbd32ae01e7c43667170e51641e340d3b47300662cf60684cf7a3443338aba9a" + }, + { + "href": "./BH42_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c54aa252ca90e37afc3d2660fd4372c9fe46a612e9b1e4ad353caae52f569bdf" + }, + { + "href": "./BH42_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa7895e28cce6f8128032dcca01f1d48e528552c2157f830cae87d1ad1459164" + }, + { + "href": "./BH42_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2a1ae1ed2e7939811aee8a3601c3b454af83bbef6f8308f1f999c2b7e92bc41" + }, + { + "href": "./BH42_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202697cd11598cd5484f872afc7b28271dad1c31bb3617e93a3318af964d97b6c2" + }, + { + "href": "./BH42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220780a85f36578dcd9086e8c971526fa23aa4f23e892d5b0ead75d31b3c8a7e6d4" + }, + { + "href": "./BH42_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043d2b6830a5b53b9d25aff7e749cc67e4879fc276a6f6d2c89769e0c1945e70f" + }, + { + "href": "./BH42_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011e47f7657772ecf42631e5ecf4599c576139fdae87ea80b9afe723418c7bb29" + }, + { + "href": "./BH42_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003eb3a66b803b576129c049ae77cf09633cea32cd3b16ac7519d6fc206e90479" + }, + { + "href": "./BH42_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201004f2c2f0585faa643ca3164ee8eb3c5aa64ce6861b5429add29132b081aa7e" + }, + { + "href": "./BH42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220679fa35a4b00057f0ca8aed5c8b4709e256644efa72cc6f4a37e017c4c610b72" + }, + { + "href": "./BH42_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220892eb4cf6c2dc9f6dfb96cd6cbe4eb6ea7d78b46cdf4748fef6fa15e1aa1c09d" + }, + { + "href": "./BH42_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1f5f62c52770ea5804cc830871e7c13ae3f4b126c207a2bb0172b38080102fa" + }, + { + "href": "./BH42_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e4b4ea6bc54dea8f4c7de19efd57cb08a943de0aaf959b6715ccb5aaec0e6795" + }, + { + "href": "./BH42_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205bdba8666224ed1b77c4b4ef3d68f0456eb826a4190408d131fc12031d497ed6" + }, + { + "href": "./BH42_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce58b02fa6edf2e69d4d1afe76bfcba81e71db8d320ecec6e05f98fb5a47dadd" + }, + { + "href": "./BH42_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220753c2e88de9ea4dda659aca15514672ae5512feab813cec4841de8d6c4e138c6" + }, + { + "href": "./BH42_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3d816d9fb66238f67a6d1d8dea12da0774470237f6a920daea1677871fb457a" + }, + { + "href": "./BH43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032abc4572da55bc0b32422e12a023ecad4002e2acfa3bbe3433eaf5937673227" + }, + { + "href": "./BH43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab294e155b7ccbd212d39f7b3645672ea42c3113d58b9accf87efb9d512295d9" + }, + { + "href": "./BH43_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0a20a76a31b5edd1ff796b99909b0c4f6eba55c0f82c0d1942225e5e87c6021" + }, + { + "href": "./BH43_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbb8fde50bb085695f4735927236f54f6992e1b1ac259f88fdcfbf59b22319b0" + }, + { + "href": "./BH43_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f233e994bd2377a92e958b65aa20e160e7c61f2cbcd10f2b6a1309959491577" + }, + { + "href": "./BH43_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f97575bc4b3f4e38cba0b905d286fce14202d42b037081b4c2716c35038764d6" + }, + { + "href": "./BJ36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f68c28bd89f646bbef7162e2bf88be9ec9d689c6d78baf375e0c695f5fb252cb" + }, + { + "href": "./BJ36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084e16fc80a197e77a46a619a0013cddec1a4e358aff715a08eb4c6b5b3c42fb7" + }, + { + "href": "./BJ36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdf16dc818b82c13d6493643df24336fbbc15dd16ca9eec82739ebb0554eafe4" + }, + { + "href": "./BJ36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122087e5f9561dbe92617c400c28f64452fdc4cc178b975117a80058a72ec0aedcd4" + }, + { + "href": "./BJ36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202442d6a19a0ff932b3695996345f733230dce7c8e27e69d7f052ccdccd9e1889" + }, + { + "href": "./BJ36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220badc8dce4bd7dcc8ac126a808c6e52f65c74a89c0ff476a4e8d5f0ab935743c9" + }, + { + "href": "./BJ36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220491f37a4c32633c4ae8867787bd126c5623ffe1ff8178af971372f7d24933ee1" + }, + { + "href": "./BJ36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041494a2126bd510462d56d782ff554d074664f9b4d420a1a8e4565b3e2723fcf" + }, + { + "href": "./BJ36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d05eb2e280adb9062194d1ca836694a841bfda7dc0aeb4ae5188c9ba829bcb31" + }, + { + "href": "./BJ36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e935289a772d10ef633e514b74581fa4e68c4b44d131ee8fbfffdec5e99a8088" + }, + { + "href": "./BJ36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b58c641f64dfa34e78fd25d70e1344b651bda90d5da95310fe95597434857e9a" + }, + { + "href": "./BJ36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220acb7441ffe4e51cec100b201a38dea612c27e7d2f5c79e113f2a758f1a4ebf9a" + }, + { + "href": "./BJ36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a2c97933e31ba0c3a1bd9adbed980164b427e5e675a8f3402e6f37df0fccdc9" + }, + { + "href": "./BJ36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b9ab39112bc1a2b44b61b2a99f45bd2938653d9ee68bcae957714d63610ec8c6" + }, + { + "href": "./BJ37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022e271722321e63902de66d39e86d5db07cc0e2007a53cf48e9a4a58d2417a9a" + }, + { + "href": "./BJ37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f69d0a66b6160a6546d06de4d8399cbec2ebd478effa0fafe7c0d1eb3f038543" + }, + { + "href": "./BJ37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6ddf85bb871768159ca824bfee77bd820fa27ce594626596635546fddc390cd" + }, + { + "href": "./BJ37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220969900a0e92b7e9243cc3cd9b8f1e85eca6c53ea7b0936040df20ed656d0f7f9" + }, + { + "href": "./BJ37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023b4b4b3ec5e11069076664f0dcabd077b3809bfb8c94af57bbeb4b6ca97fa47" + }, + { + "href": "./BJ37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c3c7d46dde065379c8c7b25ebba3b2ad1e17b96dbeb4d7ad7cbacf9ab35dc2b1" + }, + { + "href": "./BJ37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220612ac779e731566ae8df3555dc4cc86027423bf182a8da20b9ec6aef9f4ada99" + }, + { + "href": "./BJ37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b4883b31dc31ea7d752bf66d5c9c23777a51382f1672b1a39183d80e7d0d3d0" + }, + { + "href": "./BJ37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019704df46fe485dd20d3fd584d60ab4d62bbbbc351dd290d4e3a3ffd56d46c31" + }, + { + "href": "./BJ37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205db24cd30d1b30a4eb65cfbd555fec9e645fb4971b0bf99bb38ea83bdcb708e2" + }, + { + "href": "./BJ37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220016e7e4d9fc7caf0ad339b0b27c6e26cc7cc514eb9fbdb982e9a4c3ad13bf87c" + }, + { + "href": "./BJ37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0307e298e357fb0924b5830bb8d8a7b8bae35e2ebf6d63abea0c3af42a7aa8e" + }, + { + "href": "./BJ37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203364269d8f52c8a3987e072840f891cc798c2275776705b4a11df7b7cf1cd18f" + }, + { + "href": "./BJ37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f83d9a85dc44bb5131f978347393199ba7787892d0659bfe9def35833772ddf" + }, + { + "href": "./BJ37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220054536c5fa4c67d13a72ae7af3301a5fd68b5615c0504ae6a3e4ed824c1829a9" + }, + { + "href": "./BJ37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208019d0d7f4ae185df67d775b987f7cb68ff876750e98adb378a8622a0f89bc64" + }, + { + "href": "./BJ37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206da4f0e72add6cafed64d33d20e4c9ccc170a4cacf06c3597fd8a90418941abe" + }, + { + "href": "./BJ37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202eaa21e59c764cb76ef350ba28b428ee67a999e7107c138298952b4c72f1baa2" + }, + { + "href": "./BJ37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d70cae37383c84976201e4b8577c40e3be2463e4164452bb179b1b87b57b481" + }, + { + "href": "./BJ37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f9584359722b702f70dbc950e705a852be7fd7884975827489a1da67d1e955be" + }, + { + "href": "./BJ37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6d89ce166fbebf8f454405cdb1ca5c6b00723d3a0c16b4b178c83783dabd6e6" + }, + { + "href": "./BJ37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c4375ce4916821ecf448711196997ef31fd5d40a82cc7f3c1d37b669a1a0fa8" + }, + { + "href": "./BJ37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e97584f643b6819f4c525cb62e8271acedb0e71b9842053f08193c1243717276" + }, + { + "href": "./BJ37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209031428ce9d7ff0306349a43b820a32bc907465deee1a3bfd35b2844b4759ef4" + }, + { + "href": "./BJ38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aec17171424363b8724399473f483752f1e7a57446c414c7f70880187643f1ab" + }, + { + "href": "./BJ38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220579362e3d0cc1602b89f780c04ccbc3796d7532fe6ecb43f1884448b5600d29f" + }, + { + "href": "./BJ38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003119f0e1ddb32d87528493ab23c0fd8be1c37d31f426afa32774ebce8228414" + }, + { + "href": "./BJ38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad4e15fc7d520848c9ac080b4f0d1401a36d441eac0486a9abbb0696edb7c334" + }, + { + "href": "./BJ38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1bb2580a4c67047a0ab112f8b9e6c0fddde6a5e5ce16f87a5d326745d953e16" + }, + { + "href": "./BJ38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205eead481efc5ed389b5223bf6fd8b754d5a116249b729368832fd04d002b2b70" + }, + { + "href": "./BJ38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202846574fbb589eb0387b48798651c7e18050c3eafd1f99dee8d625c762bbd20d" + }, + { + "href": "./BJ38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8bb51b11bf57d3a9f969962899854a5cbbe45ec425f7837eaac35770de9c5bf" + }, + { + "href": "./BJ38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220270a473b0ed29778bac4136a93d146b211925ac37877c06fa5838302644dc44a" + }, + { + "href": "./BJ38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a20f2125fb573b26d7cb57614510639c054a7073d6a8aca46a65b7ac372ff507" + }, + { + "href": "./BJ38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200dc73535682bc1a2daf1f35688e4c814ed3d4caf0bea55913d4d080b27a941ff" + }, + { + "href": "./BJ38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206184572540f7434ea64aed44a24b25dc3bbac0737c6eda46712d89b6d89d5bb3" + }, + { + "href": "./BJ38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d68a51de6d6868059880a3f3b2e53eef4bddce1f436cf3ef00428769ca36bf25" + }, + { + "href": "./BJ38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dd788874d3f27c50316f78937bcf29f6f6f6c20f5337d70536dc7c6e5fc915dd" + }, + { + "href": "./BJ38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220172f450e8f4af223f80a1b5d511657557c9134322bc02abe1e7eb84fac9cefa5" + }, + { + "href": "./BJ38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df90b30169b28e6eee99c525ff2c1172282490f710b122626295db8c77dfc13b" + }, + { + "href": "./BJ38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e65a4d4c2beed8ac72316a87b541095abbcef4f3dea59ee2971f2b6a9b93d411" + }, + { + "href": "./BJ38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065f4e1048bd37919eb3e2ebd128ab4b98882f664d0dc2bd27cc46c193ef65cab" + }, + { + "href": "./BJ38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206465f06972b59be5db5c2857764a55b29908ace6b4715b861a55f87e91ae7379" + }, + { + "href": "./BJ38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122012f2519e39c5eecfab3613a066c19f4d9f91ac59175cbb0b8f91a5fd374d64be" + }, + { + "href": "./BJ38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fd0fd8695b7ea52dda63a92b777013c44b916f576c3fac7baf0a27ead29d779" + }, + { + "href": "./BJ38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220daac41b0fc90edb8e6a75a6ee8ab6565936eac05d60fbc587e663ea9ef915ec5" + }, + { + "href": "./BJ38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f64882575222a4596a19a27aca978f31cd8d1665a99593bf8dba079204d86ed" + }, + { + "href": "./BJ38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076e72b23ab03582d9f83bcfccec79543d7f2540aec686f85bb3f27d545b1b684" + }, + { + "href": "./BJ38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae4905fcffe2fc4ccec7f286bc222cf65a5fc6a1a064b3b6b7d56197cda7c69f" + }, + { + "href": "./BJ39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db773877a06adbcc5387d20ce4ce2cc33abe413fba92dd8bad8adb3e1949bed1" + }, + { + "href": "./BJ39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d3faee6a64ae6d3d5c8bff066e3c102931115a3b071acb6ace112b3254748da" + }, + { + "href": "./BJ39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdaf980d8b4441b3333bf870689514244f78d092db5a3be203df56e6d2d680e5" + }, + { + "href": "./BJ39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1f4ebdf3e180199f97e152fc6618067fe47a24426a091f52e9e4919e8ac62aa" + }, + { + "href": "./BJ39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f11f057a96768352a4399ceb27617d839da89a0423a517f2705ae3cf1d93c567" + }, + { + "href": "./BJ39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fdec6b84122c94ffca0d38007d886913286f77a6d95944ca32a17488170ff58f" + }, + { + "href": "./BJ39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e185b2f92e9443f9b73a8722d6924e1f9cbad5a774cb8a704103a291289780ee" + }, + { + "href": "./BJ39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ee3f43895acd31f0a3abd74d31f7e38f6b861a7e3cbf0249ce4e6400eac8e97" + }, + { + "href": "./BJ39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7efd407fa4c17ff5ea840bdc71ec49b25e232d85ec484e1ab00a33988e11dbe" + }, + { + "href": "./BJ39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fbad195d57f326d315c8174ad41ab8645990e38e6b0076353acf88308413c93" + }, + { + "href": "./BJ39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f31c57ded95a9c016c3b6dd072ccd9f5d72cbcffd4d2f24fd388f9484f7e1aa" + }, + { + "href": "./BJ39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a1796d8c270bfb4554f877eb85c9a41ec28dae1833dabfc4115a6947c15c3e9f" + }, + { + "href": "./BJ39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046f29a9e332c11549818bcf8f9d8933911a605ca1827a111347bb8263f167ce4" + }, + { + "href": "./BJ39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071b608cf7d1d305c168de133e46459c6a38b1069a9e906d27924d1ce51c55f58" + }, + { + "href": "./BJ39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e88994946121ad8e5ea922d2bc9b8758bbe6d428fd07ddc812d6e8efdd09924" + }, + { + "href": "./BJ39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064707a465d32b451fd0359a399076cc852aa1fc3468181a5c15f218e82c58198" + }, + { + "href": "./BJ39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208301dd702a84e9b7c24f1698d288abaac4a09f6c1e68006a90c38961dda95e4d" + }, + { + "href": "./BJ39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fba322f74bb0fd4f402455aede57a0ac2b7c25f4f737d0f51c86644df8af300" + }, + { + "href": "./BJ39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6c898b2d35b8eee35e2a3be79e7d9e0dee5496941ca544410e6480ed89437e0" + }, + { + "href": "./BJ39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dec1847317901061c91d9916e4eb45be14fa435ea24749ce799c1642faa48010" + }, + { + "href": "./BJ39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7de62729cf0f8a67c2d99783e3620dfffbb4e9418d523f88263f282ede77b07" + }, + { + "href": "./BJ40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203aefd6a7c16cbf86a2756da31cc2b8f1813319daed6470f276f70b264bb528d2" + }, + { + "href": "./BJ40_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4cbea381c5d18d0cb44e42ba907b8b478f7d967346c81d83104d09bcc77ca97" + }, + { + "href": "./BJ40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fad616d10cbc9d4fff527e77b7a32e2bdc3490b44425108a122fe436ca1ce7aa" + }, + { + "href": "./BJ42_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016c173e1731636620dd51e661dcde1afa085341f294ab5678d482d389446a506" + }, + { + "href": "./BJ42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4f182a0dccaef7f6368fd9dc1c810d3d0fce76e159f810dd8c5e53d6b4166ea" + }, + { + "href": "./BJ42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a55ab912838191a4b1163a5407895b044b5b7354ffe3290db8b8b0a478b5124" + }, + { + "href": "./BJ43_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073fc2b748b0a219b10fef95b157cdbc910a13e1ed3f1153f5b3a090e52c92811" + }, + { + "href": "./BJ43_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205bc91fb156108d6ff4ac85e0470e93eddf3d48cc77c18398278ce9db3885eeb7" + }, + { + "href": "./BJ43_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b8f7fb6b78c05c8df0b57346bba60e61ee37021c5125704c4a63bd3f56bd71a" + }, + { + "href": "./BJ43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007630d38fc57e40069b4e3e9c5179282fcfa24efb9717fa08a7c836d3d1a8cf6" + }, + { + "href": "./BJ43_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bfe41540276ef4ec7cc68b012380d9fe70577bec9ba6d76912bbd277caa0bf7d" + }, + { + "href": "./BJ43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220330a42866755f2dc4849f6438bd42e03e50e057f46af6d6951a388148bf211e4" + }, + { + "href": "./BK36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d181ba603d44d43cdae341baf5fce32023aa83386e7aee6cd5c589c93bac45c0" + }, + { + "href": "./BK36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6066673dc16535bdbbc6993b1134099bd88682be156da2986b3133a580adbb8" + }, + { + "href": "./BK36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb6fe3591e31c97ab2de4e80940be1175ba4ee476529f08fbf322fff5df51240" + }, + { + "href": "./BK36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071557cc387f9b053d225a0ca8a4cb0abee3a1d768079864c7f4db9d4e4e7ae46" + }, + { + "href": "./BK36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088251f033908fda0b506c860ac48bb58c40d87edef406ee3eb512f3ea00d01fe" + }, + { + "href": "./BK36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d2bf31fe5484f90a265446bf00578cdee3fef9242338b1b272bba6bdb280a0c" + }, + { + "href": "./BK36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b433315570f2f5f0b10bc30f536043a2bc7b1374abb745bacc1b601e496c7e6d" + }, + { + "href": "./BK36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201bac5828f8701842d9e0fe8871155344c5cf7359d4d753b2a7eb1356460030e9" + }, + { + "href": "./BK36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e36f9a6f1f69a53deb4319bdb94b39e10ef29fbbc346467ff43e933dd23dfbef" + }, + { + "href": "./BK37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c820b8dff56e9c501cdd8d5dbf81e51044b9d3898dd7f8f2e8a5345311c74710" + }, + { + "href": "./BK37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1ca64fd257278f19753ec9941ff636e2ebd8385eb58b30dd9cfd57a62b3a137" + }, + { + "href": "./BK37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209669171ada68b621814a1c105778402b98f8c17fa899db098f77d0a8d2b18910" + }, + { + "href": "./BK37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122036ef81a19380dfd1ada60df493bf80d7255523dd59c9b3197115a3bd84bb58b2" + }, + { + "href": "./BK37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205fa28f5ee60b1dcbf5ff12cba6704e0d9f77ee3eed8109b43730c5e5324be578" + }, + { + "href": "./BK37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1e50e9dc475646cf03aee9050b2867ce0372055de5f46858e384e68273229ec" + }, + { + "href": "./BK37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbaab20083e5b7e040a1f66de7cc47bb84100c3382d35ce69f092f3ecc118a3d" + }, + { + "href": "./BK37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f9c76fb50da601109131cff69183d23d5606bdd3a6bc88307a4429b1250da29" + }, + { + "href": "./BK37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf2dd1081b5ad60c4792b40307c858db49fb3e37da12c5cbe82eff020b4436e3" + }, + { + "href": "./BK37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dce72d11f37f51c68af0e7a4ad8ab88e1a58fff077c84afd3c9bd95e04185267" + }, + { + "href": "./BK37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204df2c76d7d0c4a12e925540d07a4bb240ab9726ccad618aa760784d806724d09" + }, + { + "href": "./BK37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201fe3abc50e55944cc9c978cb24fc7571478ecf3259169e7caaae9ed5be658dcc" + }, + { + "href": "./BK37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d10d7cfd24a263331f32c1c92f01c6d5dc59c03393dc89228dc52fa5d315cee" + }, + { + "href": "./BK37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1ea33024c9e299c8d6acea75955b4c400f0438bcba75c75b0948e54a79286f9" + }, + { + "href": "./BK37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad8ef1a063e51314e2e11294cd765889d6fd02757b0d50e5d0605a33d5d672a4" + }, + { + "href": "./BK37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9275224fd6a8fb39ab60fd72957a17ab8dcf128d68a97bdfc6d07898eef0175" + }, + { + "href": "./BK37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b193e2350f138949952c07987496f5035f084644a051ee44291a3b6c87059293" + }, + { + "href": "./BK37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f8304a7c4697cea27e179b7b9987409b9649fba5520a6a06fb70a70cb1ef31e5" + }, + { + "href": "./BK37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b944ddf44406240e52fd8321322c2e738dc5cf47e83613df21d1ce86a54c569" + }, + { + "href": "./BK37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a0bfac9c97e9c80ba459d4175d6417ff7b90dfbc88bd8d5828fd0e03a6e1d8a8" + }, + { + "href": "./BK37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220893d3bb3615dbe08c0c8d1a5c6d3a22f1e76349176c2448afec5a31b683ef3c4" + }, + { + "href": "./BK37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d57830e92b8bdc9f76a043b6acd65e3fb82075580dd21841e4f6928281ac39ea" + }, + { + "href": "./BK37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7980103dad6c24227ffb5c987d72c893c0c0555d9b4c29ae042d324d6edeefe" + }, + { + "href": "./BK37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203fc57fde9d1582abbfd3f01808a33adf76202bb7b29c4af62273f664fa03491b" + }, + { + "href": "./BK37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffd3182fbd6cbbd2a80b369ad94f1e99389da8c742477d1d2daa21d628eb3d03" + }, + { + "href": "./BK38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a5e9137ace787907359ae003f5be9188a4c0a380d939f9d19ce110523b5b091b" + }, + { + "href": "./BK38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f081ab466baaf23b226816c45669b40b3285befd47f9c5cb76c59e86a2b00676" + }, + { + "href": "./BK38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c7c2aab83ad0742ebeab8462c4002b0a26bea358fd11aff5b92411a69cb39c3" + }, + { + "href": "./BK38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083d0200828cd002c8a267accf7fa991c5e3c26f58c47f1ef080e7a87ecbd870d" + }, + { + "href": "./BK38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c4552cc889cff1d99bd424499b3791ae0f47ed4f06f496b922daed6f9c1a7f38" + }, + { + "href": "./BK38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092f01f52b276ff8264314ab0ee8b85b9924560400da6d0064c5ce4bbeee3d6f3" + }, + { + "href": "./BK38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220136dcccceeabf262f8e210d815454e2dbfa74e1e69980cc5c6cef5fea6fedf50" + }, + { + "href": "./BK38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b7fa8bdd89a32b09c06623948512da29415cc67dbb88b72b9de3e5d17793b63" + }, + { + "href": "./BK38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220699fc16aba732980e311761dc6cf8fb763cf07397e801c6dc8a4016439723907" + }, + { + "href": "./BK38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed70c147d24f116325558c81272891b3dbe25bbf255ddfaf19b500e92daa4028" + }, + { + "href": "./BK38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b48013afeb2b076961a216c66110a9b47f3b652dcfb667ba25b6410c70e3ef5" + }, + { + "href": "./BK38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b760346569c0590596fe7d4f49a233d6d66409fbaa0e03724e6faeed9fe9fe41" + }, + { + "href": "./BK38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047cd66e91253af729b4bb9f32b78b7e0be0b515fab9c493f770ccda1689cb869" + }, + { + "href": "./BK38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c86bfb394a9dc1a63a4222cf1328843fafc4fbac5d6abf8246efaf0034106f9" + }, + { + "href": "./BK38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5d3baa01519483f09872922652aeb270ac22668e4ee05c556715da3c2b2e547" + }, + { + "href": "./BK38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220370787deeea44a176b69980d1b14bf2a503aed9cc4f4216f7ee336d0646f8ec0" + }, + { + "href": "./BK38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4d43dd6fb2f8adc14523952aa0c3236a66a36ad066dde7ff532ce3992afc104" + }, + { + "href": "./BK38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f2072d6d226ad8a124f9e87a174746b15128509bf0c2a746234d7e9398bc3ede" + }, + { + "href": "./BK38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081bbdb0f074af52cea9abfd00182a461ce646e0b91698e0bd612e5b7d4a86e27" + }, + { + "href": "./BK38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4e911a8668df68ec5ba5a7f6cc2bc23a87f4e8852e04eff6f19c188809bd62d" + }, + { + "href": "./BK38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee85f1b5ad2f3deba613bcc098020f9fd0103b221229362b756d41e8d688f83f" + }, + { + "href": "./BK38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c07e01a827839f71ee07ca95af869ad8a9312a2ceaaeaaedc3ffccbb7339fa84" + }, + { + "href": "./BK38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204088dbfd571aed51f7fbe9b51dabf3cb32513086408969a00f292c3b50fa3505" + }, + { + "href": "./BK38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206298248606dc1b7108cc123656052e8af44640bd110fb2483c3f37e9a533dc1c" + }, + { + "href": "./BK38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052cb4404156c0f9f4aa061058dc76723f04bdd3cc07e1150ab8beaecd63eba46" + }, + { + "href": "./BK39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e2a85a8acd8bbc06c29c3998c58d95744e9efb74a6037d494e03045998600dc" + }, + { + "href": "./BK39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207614773d3a9c474b5fb03e7cd3401a683cc9648434a8206ac05e348de77ee6fc" + }, + { + "href": "./BK39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9ef9e27da8aedb2368178a3845156cba61b472e48dca13f96375002a237acd9" + }, + { + "href": "./BK39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbe7531f6f9d5f2182ab4b4f2b3673bab37afeb8c914f2eeb362160664f29f7a" + }, + { + "href": "./BK39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4cb64eae1dd2a9ad7efef44119033ecd88e15b618a8b3e9e4f2f45619431716" + }, + { + "href": "./BK39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6ae8cabf94a80ed36b6970e1adbef99f5a783ca09a6c497e874031b21014e3b" + }, + { + "href": "./BK39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028769fb1936b7275cb5c3fd817dc29f8a44c15ed1260e8675faa77cdd02bcbf7" + }, + { + "href": "./BK39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f912da3ddd675b23a5d489bb27e25fca0c9ec53f314000d1e9bcd3b7393e7b8a" + }, + { + "href": "./BK39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1040c9a24c419ccf645dd76d208b717561da64529dd3035f6cb6891473fd8ca" + }, + { + "href": "./BK39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201509d9744bfcac2a21e67abb8acc75afdf351b58ce8ce6b17fa1f4d4c6a84850" + }, + { + "href": "./BK39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec38dd7fd39a50dea1a21843037f993877f07098c5c76f12290d18d8c8cebf17" + }, + { + "href": "./BK39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220789f48fc7a8ca7bf3d08fba5b6d910bb6c38ba68fac228b72a89e8087c7500c4" + }, + { + "href": "./BK39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220539d57a9963804400d6ca529bd0e84f4ef3e3ffe5ade9e83f1ac17de496d1cf9" + }, + { + "href": "./BK39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a63c5d425eb68cd46969076bbb82b6c2bc66cac1394a4da597e211a813cddd10" + }, + { + "href": "./BK39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c46fe6e6f406a96db510d2ec66d6d810261837e250908b2292f1937d83410014" + }, + { + "href": "./BK39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064b4a1fedd0fb66f7c40bc49fa6920bce502d1877e0c1a8dfc55ed29aaeacc9f" + }, + { + "href": "./BK39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4a5244132ca65fdc503ee73baff6f21173f273c7f7197858be95022e429b9b1" + }, + { + "href": "./BK39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034381be37a941176973d75657eb8c567c40efb66a7683d0ddd7392b1b5c7c93d" + }, + { + "href": "./BK39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041083d82a82c4bf7db7d36cf7bb9f6c963e925903489b172c45875fb4115516f" + }, + { + "href": "./BK39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209fc68dd7fdce667ed42ff26ba0055184930c7dbcdff857c8e03685f6ade26fc6" + }, + { + "href": "./BK39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043b52e102a75dbea048334dd8674c1d2225c6053c99190d9a5ac5b1de90ca67c" + }, + { + "href": "./BK39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd192c997a072a5b356027eaf4c2d3138156fd9fdb24c21829c9531d9794624c" + }, + { + "href": "./BK40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e806695acf64a1135f25032c844085ffbf1f0715b67a2ffea01984100864499" + }, + { + "href": "./BK40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1b3db0e6747995942bb5ca8b7869435eccdd50cdd7d0454ff8fbd192131c5d4" + }, + { + "href": "./BL36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060883fdaf9b293a4039f32142fc092e0b1f92bb8acaa55751a5e4b8fa1af1b3f" + }, + { + "href": "./BL36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6383537a0f33b72f242ea4ec698bcf842438f976edf75f296f4cd293ff2155b" + }, + { + "href": "./BL36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204636503bd238a5100902e56e6c999df095a1a78894270a8fd62c2d61911fbdfa" + }, + { + "href": "./BL36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd2f47eb523b2bc0391e10b1d45e42c38120a203f1b6f8670ee14e0eb77500db" + }, + { + "href": "./BL36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f9efb711b9d25fede203abe72f4fa7d3418a5156bdc62b8727d75aaf29d2353" + }, + { + "href": "./BL36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d5b10b97854d29e3a662f2a997aa03609ce189789e67393255e6b6b2413ce3a" + }, + { + "href": "./BL36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220089569ea5e4d6d72a96dd1eb0527e196394de61f7819246028d6e49c3d101a55" + }, + { + "href": "./BL36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024f9cd56eb337bce49ac07eea10797ddd65b37c5c84cfcffeffacdd97eba971d" + }, + { + "href": "./BL36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4d9d3c9e4d06319c367c4cba96be7b8af5eddb1af125a8602a816353936a13c" + }, + { + "href": "./BL36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200deff732c9eaeb3608808d5520c08deee4a1abff6740b9a5900e2bc9137a379f" + }, + { + "href": "./BL37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a92b00f76eaf7f52fabc57a88441fa323df54f796de113d9732cdc558a9a37a" + }, + { + "href": "./BL37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093576de0d779ae0681bb2fd9c4be212e6e4a1e80480eb461177ab97a989d05be" + }, + { + "href": "./BL37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f06feda0bee2acdab21c818aba6fe0341560b5fce03c6ce132af620dc2e24016" + }, + { + "href": "./BL37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd89fb6a49dc856c02d31ef8a8943d852efa2d3de01388338c1c3813a9e5b3a0" + }, + { + "href": "./BL37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2bddbe41c3f8ee236494d3aae37e6fa5e2e096960ef5e8aea7a4ee864e1e3f1" + }, + { + "href": "./BL37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220607efbce0e0ad414926c0e1eb3546d2f2beafd920a0fc670974dca407bad3525" + }, + { + "href": "./BL37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220098058d133e5d3afc722545a6bfb29bcdbd7524b8d673d6dd8691c84c0783c97" + }, + { + "href": "./BL37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d159f6245634dd4a40d2308b0f361d951dc0dc099c772ce952f9abb381c5c0e" + }, + { + "href": "./BL37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ffe7a3ed86f9c46184db9bd6ca60f6935f9727531d4661aac645664a0232617" + }, + { + "href": "./BL37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040c17673d189eba1ec3d976d628de6a9685b62b3bd1c9e165538f80952486fb5" + }, + { + "href": "./BL37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c49560010f744c0e706e4f42501a141c57b96f44513bbe5614e14d37879cf5d2" + }, + { + "href": "./BL37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b85c2494acbb1eb41f3be204fedc9877803802c7cc964723a2c2f4a3fba2f9ac" + }, + { + "href": "./BL37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122097354983267f52e592889882db08b86355549f4a318001d3dc7fa5e076237587" + }, + { + "href": "./BL37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098cb232480afe6a7e32d4bfb1622462be6818df8d6e926703ea71f8416f976c0" + }, + { + "href": "./BL37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a4487b42d7bc85c57ca50ed481aa0c7dd9d9fea45a3e7e9ac2b37e41521a2ed" + }, + { + "href": "./BL37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a77e24b74abad8184bd75ef4eac543b264be2969c39f21058ebf61fc86196b7c" + }, + { + "href": "./BL37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d7c7402002f78c6e0d1839235654818a2ffdc6f2d224782c521fc7a8523aefa" + }, + { + "href": "./BL37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c2d4a66d9e00cb313f5cd6236f81407ab945b2d509ab32ed3d83717621bc37c" + }, + { + "href": "./BL37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a5187c19041a3c4f57bc5d51c22669f45b7e5bd9dd99d67805826357cce7d29" + }, + { + "href": "./BL37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206007f32d1eb0a125b8c7c5c57bf40cd2e89cbfb14ecaea7596397f22d8e70f1b" + }, + { + "href": "./BL37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220098966cc68c37b44fbe6dcc641bef234b48916b660d5ea8b4d1c8968ef7936ba" + }, + { + "href": "./BL37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4d20dea4db4138d67f34becdfa77882edc95897571ff6351adcfc4cc3ddb5f5" + }, + { + "href": "./BL37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb0fbeba5ff087675a512ca03ce876a307f887cf7faf1bdd1294167daf79b0c0" + }, + { + "href": "./BL37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220233270472a257952f6f189396aa2ea93121774a0f630500b46585b557fd0f2b3" + }, + { + "href": "./BL38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122096a6aeae77367fb6cfd3c7ea59b869b873fc15ee4f92fc26a7d3967ea4c0689a" + }, + { + "href": "./BL38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000df81d598d055ce35db4d318b796194c3515cb2edc9f70a45af9327fda71162" + }, + { + "href": "./BL38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220397d38299016275fda99e8390ef8ffc8a9e028a698cee7166ac2b71782764120" + }, + { + "href": "./BL38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207670bd96266dd7e818a2e6909e936cc0525e3f1533223219f121ea07320017f9" + }, + { + "href": "./BL38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d846954f564aabaf773a8314d45910568f503be5b27e48ee5145c443814a959d" + }, + { + "href": "./BL38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122042c5743cc061a70f069717f3793cfc9e29030009d64738584769851e0c993aa9" + }, + { + "href": "./BL38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202830713c3b2003ce799bfc6377c2dfdfefd388c05e2f2ccf30c6fb3f1a8bde20" + }, + { + "href": "./BL38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b1890cb220ad6befca16ea123c7b85309686d77db831c6a90f85327587f6901" + }, + { + "href": "./BL38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220988ce00395847ba07ea0ba816558e192bfa81c664966cd53a23b195584565ebf" + }, + { + "href": "./BL38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4a10ca6bd8a4261ff1820aba4ff154d17e91a6b88db226c12e95294f14ec5ff" + }, + { + "href": "./BL38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b5f95df7dfd77bb46881dbd94dfbefdba36474eaae3de651f7ee473ff3d4227" + }, + { + "href": "./BL38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7c5b87807b980fcc641f517b0a60f74ba13e5fa1c5fae96af674c74ae0a9fb0" + }, + { + "href": "./BL38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f2848f52040dc16b8ccac55028553a1dfcb09dfd09e455971d733a8c0787aa6" + }, + { + "href": "./BL38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220819337b84ffbfdd2db24b89213382bef611d90c74d83ede2d1efc97ef70c926c" + }, + { + "href": "./BL38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014411734d6b90e66d3bb8e9dd5435bebfd40a2ef038bb046c1bbd3332a5b8718" + }, + { + "href": "./BL38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a11241968e066717109bb2d9c99125251945bad459727baca24043b77838904" + }, + { + "href": "./BL38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ebd2e7563b9a927cdf24cb3423e59bc2dce133256c612a8a352d31725bcca773" + }, + { + "href": "./BL38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ac85d88304775a765cfcaabba33ad45569ab06aee7d06a67636bfe29c07e67c" + }, + { + "href": "./BL38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d8cc09439b1611fc7eac03345c19584371b059edacfd6bc4f51d24b2601fde4" + }, + { + "href": "./BL38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d113b5639b8866d6e5d86f42078e7d1716a9612a12c327c82c9331c72e8c5993" + }, + { + "href": "./BL38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a7a656e62587a6aaf3328fc317be63f58d6ef1de0c16da64215ef8c8e8d465d" + }, + { + "href": "./BL38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063c12b2c751874e7874c03b37a57a7cd4540f388166164cba7fe850305a893ed" + }, + { + "href": "./BL38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e35f5838e05210e0629086db72c959144562f03497df278bebf13acf5166990c" + }, + { + "href": "./BL38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cc34906acdff7cd2074c884a0989e5fc88cd97d1bee48c7286f927d4ab66ec6" + }, + { + "href": "./BL38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078b3c404ca4a9b6d5ecc3a8e35576b586dc8a9391d8a7b62c2e55fc95c39316e" + }, + { + "href": "./BL39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077832d19f01c6227962a04103d2fb129f8c9a3ac614a70cdcadda6c66004dc63" + }, + { + "href": "./BL39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024f6df720081744ef42a66c2a8c1d911ab1f6221f5a1422789c2da796b6acdb9" + }, + { + "href": "./BL39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005e2ce97017a36bb8bffdf14273ad62624a17950d953ea36ca05d75ce01d1ed2" + }, + { + "href": "./BL39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce587ffe0af19e40c28f259a288036a3565ab339d1d80ad67a044d596581c462" + }, + { + "href": "./BL39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a77127ab1fd3f062acc237471658872dfd3f9e71bcb657aa920a5ed7b69eb07" + }, + { + "href": "./BL39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c16bb87d2a4889ce12a319d6d6ce905a3aab5bf8f214eb0ef9d31d1846bfb11f" + }, + { + "href": "./BL39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017d3cc8da771acf4bd5d7fd3d1b9dfa0f443686268dea6c26223de5940d2040c" + }, + { + "href": "./BL39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d1babc360a1fc5613dd1af02fb85e81775c710e2d86340d9ced3478c2500ede" + }, + { + "href": "./BL39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ce5339e03739a0c01a8553af51121a47bc5aa8af303a8c1970a98cc315b5bdd" + }, + { + "href": "./BL39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027557577196edf453a7fec089bca18f63503929f04aac0ce6fab8136f71fb2b3" + }, + { + "href": "./BL39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055046704cfc1fd35f12c6b394c57410c518344200e2aa12adc815aab7f443833" + }, + { + "href": "./BL39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df996585b954427b2cb384e4003382c384873b33a19e8d1bb9591d1a66687624" + }, + { + "href": "./BL39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220faaa9a7a109c1c60cd545a90a34a431c8caae8cacf3c5270bef42b8e4149366e" + }, + { + "href": "./BL39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b488811713765e312f3a12ac20f8c3a98cc98e45149a8e0d1cf233bb7e07c9ae" + }, + { + "href": "./BL39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4739fea5171c74451df34749d5c46d766c9518bf85ac3af02f7639d75be9de9" + }, + { + "href": "./BL39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e1f7744ee47a8ebae5f834532548e24b06e422f3f768196f69a6dbd3e31adef" + }, + { + "href": "./BM37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122036f3649710ae661fd2776bd3b0d9b718bc2066a37908ed8164f8d3353a906054" + }, + { + "href": "./BM37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a299b670579633bd650521b942ad2e466fb5aff843d10ccbc90b477b61ff157b" + }, + { + "href": "./BM37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206042d2df4183c4f4f374baba30621be73db0e445d5b95ce82cc63df9bca5a87c" + }, + { + "href": "./BM37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207873526007c37875d858c47c0572a2bedc691495a8394e56db7ba8f5a7845451" + }, + { + "href": "./BM37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6a7d2cbe15812292dc1baa101c86298add1ab3ef338f7f4ffa37909fb905bc6" + }, + { + "href": "./BM37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c4b12c3ed8ab329951ee436bcb70d8fffd2cd93e74d6f7dd370ecaa8d851c482" + }, + { + "href": "./BM37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220daa5a206855205eef5f67e931ffad545529dd558c574bcf030c813bf3cf22b6d" + }, + { + "href": "./BM37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220624e809dc2666e8abb96f255d9eeedd3814ce5fd3d13a73f4a447606b3058633" + }, + { + "href": "./BM37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a467153e2db79e91c875c3ed2cc41713c7d59e18f21501042a6dbe7d0cd5be9b" + }, + { + "href": "./BM37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a7acd144c9706670f9764e6c07de3104f0428aeafd4af3f0e4cb41d7a8e4985" + }, + { + "href": "./BM37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d42732db306e92124d83103a43142710b49473aa5444552a8137ddd6d7b6b8d3" + }, + { + "href": "./BM37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075c28b43159f47f418c26898bc1c4b8e9b67bad647826c64724c3e45f00d3427" + }, + { + "href": "./BM37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fda872a916b0415f442fea7108ea2eeafe779b66be613c2104aa44ca612a86a5" + }, + { + "href": "./BM37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207118579012d0d4d9913389f56f3654f1b0afe42f30fc135804e974316f5c228d" + }, + { + "href": "./BM37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b128e5496b84279be4588fdd32084398252c00b0a62ba78314b799df3dc9909" + }, + { + "href": "./BM38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d00539363a1c613c39d9a9343175a5afd0e35ec32b9104f800cb57ee4a0f8a51" + }, + { + "href": "./BM38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058b645f697765fdbb7731f5e1fb79ea0545b3368987d53c2805031613958867f" + }, + { + "href": "./BM38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7c49d7c724ac9bdc27670febd70b186e057b7faaa4acf1e23a9035875d1fa60" + }, + { + "href": "./BM38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220500a724eed91e9a24152cb6cacab201994262320414f4fb4b8ebf7131a756cde" + }, + { + "href": "./BM38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a077d08d685fff1ab93076246c74d2a9559e72b0212fbf076eeb7ff06d2027e" + }, + { + "href": "./BM38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c86c255c8311e3e4c93736466b9cc3405c3d5a2ffce21d1d16c69278f187cf4c" + }, + { + "href": "./BM38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c413ecea41f8d1f6b7ad1a413aba4698c19dd314a2cb1f45dfe2c9855997773" + }, + { + "href": "./BM38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010b624c22b1b965b3ae2e449b98e798e97c479800b5cd0a622c980721ad6d82a" + }, + { + "href": "./BM38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090d5291bfe7fd68404cbccfc6f8319688bf5070334779b5be36c3f1025a39379" + }, + { + "href": "./BM38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220127424ed7d7e3aa2146fa55f1fe459ebaa46a8c16484d4d2168dc8a942b9eed3" + }, + { + "href": "./BM38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d0ceb3d5040603d7b9bc0463108e78b7d97ba430724fb80531bd11b9ad30c38" + }, + { + "href": "./BM38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205dc3b6413260e820242b09b0dbd814fbf0921a02c9f1f2682b8e9084a5c21f34" + }, + { + "href": "./BM38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a46b0d3bf07b1c2193600feafb70d5d3e726c2d93868eb6ec358a4763407b6f" + }, + { + "href": "./BM38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220164669a273d266e020b544afc34023e959ecde065a4a15c6e8381d6a593357cc" + }, + { + "href": "./BM38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c677f73c9e7294a8c364d15aa355aa8ce218d1d68c994f6f40c4648abe6b69ad" + }, + { + "href": "./BM38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220525efa1afe766736eb066be4d6bef790f55d0076bc761e50b368ac4f6616168c" + }, + { + "href": "./BM38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220480470866e45b1e080c2971e44b44229a5700a931f05b977606ac6a40daf4325" + }, + { + "href": "./BM38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aee2967bfefc359f60c406a9384d6ed94a52df897827f91f97b42be3c2bd8d00" + }, + { + "href": "./BM39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122082837db78b06d9637f722f00fd6934040714c85a36c2afabd74ae25c7eb1dbb2" + }, + { + "href": "./BM39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050cfb3686c5a84d12622159cddf2fd34faac23e8f5000b227c255d75b377b6d5" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dem", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "created": "2024-10-21T00:03:35Z", + "updated": "2024-10-21T00:03:35Z", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, + "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220cea2956d16191c3859caad951dcb291f6984275bb2b371437f63d1540a9c5607", + "file:size": 664508 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json b/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..5e235402 --- /dev/null +++ b/stac/hawkes-bay/hawkes-bay_2023/dsm_1m/2193/collection.json @@ -0,0 +1,2395 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HYCKM9WF7ZWQ4DPCFFCF8H40", + "title": "Hawke's Bay LiDAR 1m DSM (2023-2024) - Draft", + "description": "Digital Surface Model within the Hawke's Bay region captured in 2023-2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BG41_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3047cd25732854a5f3b64dcb5edb8dff94764b0aed2ec56ef006fee7b00b990" + }, + { + "href": "./BG41_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b68819f6dbf49d48b5b2dd3baef678236bc167b43e71989021a1c8fb034fe7bd" + }, + { + "href": "./BG41_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201414c7dccc7c28cb88572ad2252725cf0d40f6468c8f13fb5c84dc0640036759" + }, + { + "href": "./BG41_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b7a151a8193f841fe98c48dbc238c428e6a2b2c85cc44b2186e0dfc709b2e9b" + }, + { + "href": "./BG42_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077a5b4cebddde0519b429edcb9188a97e90504f85c101f6be20242208dacd71b" + }, + { + "href": "./BH36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c65a07b083f9ca6c367966ec5e6ed9da5a7573353d0570d3f143a47a8b6ae8b9" + }, + { + "href": "./BH36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc1c15f9bb5b1148d1ecdb0116a482403cd5d4c0c730a82d1429c7cf148373bc" + }, + { + "href": "./BH36_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cea35799915eb88a7b5a249a0e9fcf706ecbe18697190cab8350fa0626672bc4" + }, + { + "href": "./BH36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac6449d26e660ffb5591ce2cc9538655f96eee68d061c8c2275eac27661603de" + }, + { + "href": "./BH36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e06f81078d514c960d66dc0d075c6417b3525cca60e91a57569134a500fd620" + }, + { + "href": "./BH37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdb5345700b4825ce245351060724059086a534e7da543e9cb5301c2feb1ea64" + }, + { + "href": "./BH37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f704112aff5bb77ef081034113927dca79ce2e1ed3f72ef81104f02654c27f1" + }, + { + "href": "./BH38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220736a83f51ebd31bf94032c3953de306e93998a82b414561521b7426d57992b3b" + }, + { + "href": "./BH38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4edaefa7908c8558203bc43f1f2bb1fb5f4827ef84356b8579cce2d693590e3" + }, + { + "href": "./BH38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043bd5cc7d31232351dfe68e1438ff4481ac65069e44cae7dc1727c7e76aaaea5" + }, + { + "href": "./BH38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122035d1e43df9bee48858c42804350d05fd8d52160682d1c3d5f22ff5105a9d5d91" + }, + { + "href": "./BH38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208530ba714e9558766f149ca0b7cbd2bbea497a13544916f72300d1fc42dc6eaa" + }, + { + "href": "./BH38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a07774f005429f166aa1e6fadb076bfd9ff225a5612911efc999eccbc3a075f6" + }, + { + "href": "./BH38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208f10498dff310deb5e4e49470f83c26864badac64c073f806a4c93e40e659f37" + }, + { + "href": "./BH38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008c39ca55528a8b89265ffce1bd69555394445d568008e9302f56ea5668b7e71" + }, + { + "href": "./BH39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204985c394ecadb409d5eef554091bb611421809774f587cd61cc38c12a508bb74" + }, + { + "href": "./BH39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033b698271030d9a5170072b5cd2018e1289bc8ce257528a6c3b737f2f1e05065" + }, + { + "href": "./BH39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202832585dd3d3c02e16c2d0381af22009d561bb5f2255652a0e757fb3aeee3003" + }, + { + "href": "./BH39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0db838489d4d077fc91dde466f846ba96ec41f62b2af079547d730448ec57e8" + }, + { + "href": "./BH39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fb67c81468133ac7765111fa1539993227f9c786deb2fa6508e990669d26a9a" + }, + { + "href": "./BH39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024c454629ad6479dbe2db2e146ff52f51559bb70877a931a7d1ab66208f9ea1f" + }, + { + "href": "./BH39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056523fc3e0f69d775ce34cac4aa116889d94291be859bb780f1a4fc99e03c724" + }, + { + "href": "./BH39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb07efb799050ef9a47331a1f05b00cee051d134b4813f35adc5a2c9bae970ac" + }, + { + "href": "./BH39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cda6ecf5f7c7118aef3efd317d079f2b30cc36b8b664e95ce13ffa52e526fd2" + }, + { + "href": "./BH39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040df70a66d2d49556f8aa90af1443b52b05e36ad109c3a3f568a51af352ac267" + }, + { + "href": "./BH39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da6cf7ebfc31068775976093239485def3f30a1e57af285f939f8f953d0b904e" + }, + { + "href": "./BH39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064c030a37172a7ce63f72432beedd86683fc764b2737cf6417d87cefcbec9910" + }, + { + "href": "./BH39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3a0e79f2da911c7b2ad4e5b734b2b9e0e3204346efc47d49ab6dc53499ef28e" + }, + { + "href": "./BH39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006c891df905edee154dcd9e16373658d31e8adc16e773792c15f9c15df006df6" + }, + { + "href": "./BH39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c0d232bc3486d0ab985b8ef945cab89359f2e0b1713462941e0942e0c00443b" + }, + { + "href": "./BH40_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f25ccbcc1361e8c59b2ef53c00a905ecd69463a7b3ce7ace191fb83a2e634a46" + }, + { + "href": "./BH40_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098fd279f901502f84ff2270dcddf6da2041dfdab11764ed0810097e91e03c4be" + }, + { + "href": "./BH40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d3242c11e3ab429588c1a6390508ed04b473bc1a380ed256ad023411ddb67b7" + }, + { + "href": "./BH40_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eeb04a8a84cf3fc2fc15a55e69f1094994c78102b4727872223ef96495806db6" + }, + { + "href": "./BH40_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d82daf184d71cafe81a249fe5675e4621fc1c15962ae6ccb97cfcac7f6367444" + }, + { + "href": "./BH40_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b26d24c50fc52eec7c63a9584904eabe83a972b818d2a5601c2ba60703e69ae1" + }, + { + "href": "./BH40_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084f75c5d2a1c8111a2281962cdca198482066acd8eb5a09c27d5898f6624b54d" + }, + { + "href": "./BH40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205dd07cc96da1cb1afb61a5f261786bf19c295da507b11b55f86b1a846c7aeeff" + }, + { + "href": "./BH40_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095c44227d06e6006e70df34bf9d0f5a072c7fc87c394605c6ddc6d9da8181773" + }, + { + "href": "./BH40_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209629bd42c4547ba432adf1fc84745b414f566600daf9720959de24aa38025ba9" + }, + { + "href": "./BH40_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7b552cfa80eb1884e800b220156c382f70db5337447b4d5ec93fadc15680253" + }, + { + "href": "./BH40_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220308e99f0aebcc19ff4e408575ffe03607d174b5fb39eeb33010b369c975977d3" + }, + { + "href": "./BH40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbe348329be838569b4a34c2577444893cd9c0ce22e681d481ab06bb429ce197" + }, + { + "href": "./BH40_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc10c24dc5a2c49f91f9654b684ed7fa9fc0e91a573752f5543f3cd93dbe1606" + }, + { + "href": "./BH40_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220792b41270c7aed8dc707f405dd2ca1b5431b9e99f8eef76c971c63510a512830" + }, + { + "href": "./BH40_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c4edb3ef02ebef97937bc72ed6b6df85cb8b090601e52287ebeac9f0bb63c63" + }, + { + "href": "./BH40_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f55284b66c50d95f927a335f05ddf9698336f24aecd3270ce05159335a7c97f" + }, + { + "href": "./BH40_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201de663990582ac517963487072d3f8b9dc80a173b4408d2d90a55610203445db" + }, + { + "href": "./BH40_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c74d747372a76567828e2a97bc1555a48a76702c601253f8cb7fcd3b0e9bbeb7" + }, + { + "href": "./BH40_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d83182155ad35f4bf2021bfad94aff1d552cb0dbe0f69bddbd6d056597b64562" + }, + { + "href": "./BH40_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077634f6d5b6a49e25b1ff1dcbf50c36a2ebd9103ec0dbd1f7667c34f80f46e78" + }, + { + "href": "./BH40_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057c270594ae2faf3910b77eb0de46c067024a11adc2f2c450238056d2370d268" + }, + { + "href": "./BH41_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220802c9fed30ceb73a333d2ff08401d85e832fcd7d88fc449c05d2b00e103e6087" + }, + { + "href": "./BH41_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fdcad9c1a6bcd175cebee78c8771d29967fe670453735a5b1cbcf2d58b9f50c" + }, + { + "href": "./BH41_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b9703d687e03c80cbb786fdfb829a1ae1bf81a23fbfd847fb9769ebb165c164" + }, + { + "href": "./BH41_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220104985b90293c60ed7113e3638b74a8a136c255c7af8716106ca45d08c4f5397" + }, + { + "href": "./BH41_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbf8c9d8da0e1cd5481d2c8be1ee0f98d03f29ddab3a4fed132a66d277a2444e" + }, + { + "href": "./BH41_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220076dae2e84ef0ab8368ac62960ba809a712085cf7726406d55980ffc0a14d9c7" + }, + { + "href": "./BH41_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e78f7f70f025a8f8be815681fc7a8d2bc8aeda331b5ae700283d3ecf3211259" + }, + { + "href": "./BH41_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220379242f521e6824555ae1caa2b3a971eef1d6864d9c11f58300bf493d22c6064" + }, + { + "href": "./BH41_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cba026fa4edc32d0ea2fbe4390165e81750c26bb4eea64cb2d8591b560ea2ba" + }, + { + "href": "./BH41_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdaa4845b97667ff6ea10bdd3bc2fb4d963e0a9f70afe479d350863f65a2b8c8" + }, + { + "href": "./BH41_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1873e00874354bd9d6ab3748b795347dc8d4f083a27356bf48ef99625715a0f" + }, + { + "href": "./BH41_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e9d1a766e93c461d1fe76fc952ff3daf159f898b915ae456e149739be3fc176" + }, + { + "href": "./BH41_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ca3d5f72f10be86347d63cbd89a8ee2d363667c4c1078885d07c99cae843d99d" + }, + { + "href": "./BH41_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b15a5e429bd7d562f9e9770e49d5312cc077b153c698d0c5171b7091da70417" + }, + { + "href": "./BH41_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075dd79f62dadb3354ecfa23f3c345df883a9f2e9b6450ede2d4fca0981f123c4" + }, + { + "href": "./BH41_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013557598e31f149852845a34b1acd5e46b01f7a1dee46de3707563a41eda779e" + }, + { + "href": "./BH41_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a86aed5ec2d8e86ba64c05b0f21a782acaf6291942ed1243aa5704d7bb4fae8" + }, + { + "href": "./BH41_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206835de1589ba48d2be7b1aaa354eacb3c8526e34f1283fa37aa97beb06798447" + }, + { + "href": "./BH41_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a08abdfc8b5b1bd4e9cd1c7258a92d8e4cb2ebf97b2dd7f1e2fb70793d31bcde" + }, + { + "href": "./BH41_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a686242c675242bcd4b933bfb81b8e195c0196874553b0b0cce59787cce7fe5d" + }, + { + "href": "./BH41_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c8c1a8404d08b7362ac4d12a02084dab750c243414c3923e1f374d50c77ed13" + }, + { + "href": "./BH42_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f8b3e4d46fb23c7dad0ff0105c3d15686128fa3b7d06a5506e10a8ea4c7f7eb" + }, + { + "href": "./BH42_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6dd812782baf3435a8fe83b84766d99887bf420506808a26131bd4bf87b2557" + }, + { + "href": "./BH42_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205522b1eb5cbd6c84bf50f58553223ac9cad004c7e2c267ee485ce089f18d5b4c" + }, + { + "href": "./BH42_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e47785338f41eb9ce9358e44d43602379800b60f398354c6cb08db4a3c050468" + }, + { + "href": "./BH42_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220027d2362c5094f362d282b64fbf4bfd5418de21ff86c7e1074642b7d5229a104" + }, + { + "href": "./BH42_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098e88fae1cea45fd6c1282bce2226141db09a0755310939178ddd41509319874" + }, + { + "href": "./BH42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208366f30a82356c8b3f6f62ada686a9b9bfce4465fa088754c5f4520641604109" + }, + { + "href": "./BH42_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfaba705b92d1761803c8007cad5692fc71fcf946a45d41fcfb080c61e9cf516" + }, + { + "href": "./BH42_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220807d262b73af80fcdaf481c7dc037942213a93fd62fac94b625d9758725c8ce6" + }, + { + "href": "./BH42_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041a7933c0cda867d469946f567bfd61aa16d07151b66ea8e7529e18a6e096359" + }, + { + "href": "./BH42_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208a8c46dea28f7d8c33a545f53cb636a9828eb2a7cde7ef54e6e34a10f51b6da9" + }, + { + "href": "./BH42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b275839b6ecf6f72e6e4e5d989cad1ec21268dbd518f15464c6f444f285ddc07" + }, + { + "href": "./BH42_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cd68c132c69ea5def138e2348826d058557406d88862edca59396831401f925" + }, + { + "href": "./BH42_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd2d1ad8f641b711b15767983bdeee44e1d94ca7fdb65166e85ccf6273bfc721" + }, + { + "href": "./BH42_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e32bbd9a5dfb693d4d58c681b1c36e724b35ebe0b29e88b72f96b5f64a854118" + }, + { + "href": "./BH42_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a80b1fd1c226f1035ad000e953b040c65ef1a807f59f07e9bfe1bae0fc4a4ff" + }, + { + "href": "./BH42_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122089581c8bb668d7899f27e5bf062ddc254ddbd52f5d8c56c07a49a6edac10ad0a" + }, + { + "href": "./BH42_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219aa62cae974d711f7dde98d108d817798114da8198e8b2afdbdb9396e0d71c" + }, + { + "href": "./BH42_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ae2c3281e6a5bd1c4df9fb79426d622ac17038fb916f578f06d657f7d770edb" + }, + { + "href": "./BH43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db4acb35d4e41d1d739f3b129bfe63965172944f89b7d734f7a4dbe6b25e7d5d" + }, + { + "href": "./BH43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cf041115087c4f864ed298d78e6e973f1cafc8f0fc6b0223afbca72e58ffc52" + }, + { + "href": "./BH43_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122096fd2bbd72d54ad43cc64e15328edf19285e52724f8defd309919ff6511e044c" + }, + { + "href": "./BH43_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bdff37e6de78878fbb0f1b384c8a10869cdea02f90c303231ecb8db4c8d1aa5" + }, + { + "href": "./BH43_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4a1171b2408da227e608028674822016d2f0deef8403cdcd82ca981b91adf6c" + }, + { + "href": "./BH43_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbcaf2288a244cefc9f48a663e51193519683ad6df964ea37b29bff5ee67892b" + }, + { + "href": "./BJ36_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fde4d2861370adaf8b7894d4006298a53f8186d192fa7a73f83984f91c52fd8" + }, + { + "href": "./BJ36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa5420b939837d413712db68b6472c959850bcf2a8d626b791149d8f91742379" + }, + { + "href": "./BJ36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7d25da025071c59ed1015d995687965563fe8d837661ed36dabe3ba0b0ce23d" + }, + { + "href": "./BJ36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043a375209dc5b4e9c5ec360ade50276855028c84fa6fdfcf493a5326f4e3ded3" + }, + { + "href": "./BJ36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb4cde02188a098707280c87ff008c63d15e4c3c79f9e949db56eacaf7b78e9e" + }, + { + "href": "./BJ36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204dd20a2f8e55eed183700fe0de50d8df7de7a5006444c89b279ded3992fcda8c" + }, + { + "href": "./BJ36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122082af0093aab856a3f1af4c0c86d5eb50c41b799d46bfa737c7513d5eb6b40175" + }, + { + "href": "./BJ36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2d3195868e5e80f71bd66f96f37e7b69cb87b6769638121d04d859ce943db0d" + }, + { + "href": "./BJ36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e01b164118fbd345a06538aae6f795ecb259c8e5cc85a9420b3f25ae9953444" + }, + { + "href": "./BJ36_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7717a46c2e26730e8d2251f9d82f861e3812fd7173e6193e1154eda5be5b7bd" + }, + { + "href": "./BJ36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ed3042c134b9220897b819bb16533e2b40abc0cb933ec06e44c380365615ed8" + }, + { + "href": "./BJ36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d0405e8a508778fabdb4e51106cef99810c21894dfe3d01d09fb155527e17f2" + }, + { + "href": "./BJ36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfd1d776f966e8fe512af324f1f0d8920c685ec7d69c979775c2610abaeb6acc" + }, + { + "href": "./BJ36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eddbc20a84d4bc071d938f49cb3a1816e47fa2d59d7ff2fb190e3cc98a544e0d" + }, + { + "href": "./BJ37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220329db4d86ddfd2b165184a48b28531cea2c0a04b805e48cb3ea977c1633c9d51" + }, + { + "href": "./BJ37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220395f67223cd69ab73260f39e4ad30c5e0ef0ca0172cc20ebf6c87143bdb5aeb5" + }, + { + "href": "./BJ37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ec0458e10958341d4dbbb42b2aebfb7458a3d9e1ab9a608c1b4fb4c1d700de2" + }, + { + "href": "./BJ37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122031a3e4947d1cf45586229b08d2e698a1a0cb9471922725e80ab81626f2140b51" + }, + { + "href": "./BJ37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a1fa12738b9aea2fc109076eca03941991796508e18ec2994f206840192f75b" + }, + { + "href": "./BJ37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c6eaf596cbdb10f273088d22e0585b510e8c3d2c34db336e9fde9a4fbc9164c" + }, + { + "href": "./BJ37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030fbea9e6408a19d85a49d57985b086a119c5c0dc9cff42c8f726bed6ca21509" + }, + { + "href": "./BJ37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9394e7b4c35bd27eb103c360861c82ef3dacf9203d4a3354aa5cd030682e052" + }, + { + "href": "./BJ37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027754c74f66634487a6f17dfa777cc38010d027c56910290d9291f640ace205c" + }, + { + "href": "./BJ37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bad3049b04014ebc7fe237e3167514913019edb89230ed0529be7ae4b82a3305" + }, + { + "href": "./BJ37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b59e07f8642e14117e154cd5c8bdd18e03f7bac09565d1e8f779883bb6502560" + }, + { + "href": "./BJ37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a518d7c96f0cb52f619bcfb1aebd703538a87529aaa077b1f28811507685caf0" + }, + { + "href": "./BJ37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205492770ca2ad9ca622d913decadbf1048cbc19f2fe1a87c5c63330a4e9492e90" + }, + { + "href": "./BJ37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bae6982ae88ce9128d8c51ac5fbebb70a19131e78a8ea789ee184b92fca1c9d" + }, + { + "href": "./BJ37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b207c4085ffe3178f3ba5f7d1064b89f67073fd49051655923ffd03d1977543" + }, + { + "href": "./BJ37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207747a57523bd0bdd7f3a852786f7618c5deb421f04c738a59726bad4fcbac76e" + }, + { + "href": "./BJ37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c522b056145aa88de9540b3163498f11811cee64fae39950a258dce30cef0690" + }, + { + "href": "./BJ37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220027eef706ba54a1b4bcaffa84160d2a0c1c0b64459d3bdf215a19e02bc315b0f" + }, + { + "href": "./BJ37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122044eb9a8ef8dc6f1d3a7c91a18200c69b7e639fbc592b75dd345c86d3b0fc28c1" + }, + { + "href": "./BJ37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be8f72c7b504b820b11eb267a62e1c179fc629e55cb2563bf48de7558a4cf723" + }, + { + "href": "./BJ37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203fed032340160cc4a9028b727e3527d71b74d7fd1470c1b1ebcdbaa456e7825a" + }, + { + "href": "./BJ37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f99cfc8e6871a4fab9454207be712a4408b51cc8ed3bc0250eee05256a914ff7" + }, + { + "href": "./BJ37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec2a591e2c1f3ea5e8addd4895ea5f5e9d29986f1b30df87db87820520cf6cac" + }, + { + "href": "./BJ37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220345280ac40e56bbd02a634824c6c1856c2833f37cd684297ee64599b771ee4fe" + }, + { + "href": "./BJ38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206590a95f9cb75388eb3a36ea2a9bce9fbe4ee1ed76fccd7e72901dede1fe5c6b" + }, + { + "href": "./BJ38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df9bafc93edc0889ca50e7b59924938d237ce86c4b8d11b9c81f8cda7862700f" + }, + { + "href": "./BJ38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5d23606c76033f135bdf6ff7ddda89fb16fe5c0e509531c46eebaead65d71f4" + }, + { + "href": "./BJ38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220465c16199dd6a70e14346ce6794df8dd3b6b8f2f52a9f03c80ef034ddda1821c" + }, + { + "href": "./BJ38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220839de273fc54f6e655f71839684b153786415cb68fa7775466fd30da31d77896" + }, + { + "href": "./BJ38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e64ed03bac1eddb15c0b6e68ee206ecdb5037e08d63b41609304bc9ed34e0787" + }, + { + "href": "./BJ38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220630e4cdfe6b1e992af9b7fe987e09a5a50b1104f0d557b9ee6270d714ca6700a" + }, + { + "href": "./BJ38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b1521e5e614565286b24253b46ed77c2b7369303e138fff1a193f60ba8190d9" + }, + { + "href": "./BJ38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df050c53fd77814cf5da99bb85adfdf2289b84ffd9061d44effba07014053957" + }, + { + "href": "./BJ38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203913cd842b57d5e52a9181dd25ff10e4a7f13957bb03c9e76530388d9f1afb5b" + }, + { + "href": "./BJ38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027ff35e2585b53aacacb2414e86cc83002e53ccec17c998bb00f23023958d839" + }, + { + "href": "./BJ38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1960befe2b8eaeb8db02eaf0c3f36abe9e9833b484a04598818c089ea30423c" + }, + { + "href": "./BJ38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a2b58e990fee0778fb46b3c97d8b7d0660ead002907008a62bb71376ad320c7" + }, + { + "href": "./BJ38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c90e4a7d7aece55c99c671e9d08204cbd6cb3c80f2e03abc80d057a2e9e28947" + }, + { + "href": "./BJ38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209967fd9374a33065e871dfc65ab490de50dbe732625086fb13e4a7c64fecc3d1" + }, + { + "href": "./BJ38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076ad9b26a9867434073502c067caa89cf4bc07c7f67982f15a76bed5798e1422" + }, + { + "href": "./BJ38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed4fdc77dfe52b73859182e8c7e893b5a0efd3b90c08835f47d5aa1e00e01fd7" + }, + { + "href": "./BJ38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb7f74da6af409d90b7934321ae361b3eea529eaefe89e017a8e6995ca253e6b" + }, + { + "href": "./BJ38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a22ddb59880108f5b327ce16ba3a050fe09a9129983f8cc0f8b515be673bd8ca" + }, + { + "href": "./BJ38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c3ca5234b1a0282b88d9a530ffa6278746f2db2811636fbc3ff78f8017d1073" + }, + { + "href": "./BJ38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000722317320c783fa25e561de989ce6b80dfbada48f308a68fc33ded774d6445" + }, + { + "href": "./BJ38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f2359fdeeaf62e44c2c68df0bfb1017f729ce4f017b989d9f678f6783c4e3eb4" + }, + { + "href": "./BJ38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010b0eba82fd0647f97304fdc7aa9c7935e97cb584e48f919c0af1c28bbfca11e" + }, + { + "href": "./BJ38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e48cd9918a824fd2feb16c2c5e8177ecb295b04d54770314c0b3eec6ad654bf0" + }, + { + "href": "./BJ38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022a7610215fa81c48b5a8b544985c891a7272b244b11ddcd4ac8c546df9ed139" + }, + { + "href": "./BJ39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209142666220eb872e2f4e1c2e524d5df05a8f983e077a6eba28583f1bcf6df748" + }, + { + "href": "./BJ39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078b45b6572ef3125c378cc872e486add31732cc53007543efec74677626aeee1" + }, + { + "href": "./BJ39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018f9beb98da7000d32b31270d704e66950048eb0e86042544e54e3925dc022aa" + }, + { + "href": "./BJ39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd65cad1a829d442eb0677fe84d3b25d5e5528ce44ffa2a0d24134e580103083" + }, + { + "href": "./BJ39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220332ca1ff3bd4c37ed239667b215b094029c235fd15c7d199f4903cf4f41fd9e9" + }, + { + "href": "./BJ39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4be2e23a4df374e2caa53601b88e19d1d9b2ebe1e09979f792c13c551741f72" + }, + { + "href": "./BJ39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a62ac3e48cc210d4e3885ae41b53bc8cb9be00df7bf23783c1fba1875d0f5661" + }, + { + "href": "./BJ39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6c388504809025a98784b882fe57153e542d8322f78784718425709a59a96c7" + }, + { + "href": "./BJ39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027ed6d7c94faf1580b2e0c8b93a422aba112facaacf9445055e7c9f8cafece46" + }, + { + "href": "./BJ39_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5d1d913116556cb960ae6b7b5a03a96e367c0dda0d9a4fe6df62f083d79f6be" + }, + { + "href": "./BJ39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d3fefd29f268f99243cce6f16a846962edcf81d798b400c683c88ebd15b1999" + }, + { + "href": "./BJ39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075f0a1f906914a7e42071b2556b9e2a01decc4da00f2a7332133dbeb7920051c" + }, + { + "href": "./BJ39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c6a7389e07438142ac4ba9d7703cf23144288c5af9eeec46468f76b564bd5e5" + }, + { + "href": "./BJ39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7f3a00729d8c4d01f41f58a26f87c0ce6344d0b633e3496f0fcdbf5874404eb" + }, + { + "href": "./BJ39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209482e86bf1055aa71c4af863e74643a9d9cffee59082af95d5c853057e8f1e18" + }, + { + "href": "./BJ39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064a8b2f44349bbadbcecff7d7a07ab8c5458863081fe28ac1aa811436954ace5" + }, + { + "href": "./BJ39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbbcb80955da8fa43e1e6dbe0704b8bae3abc72a5292ea3131cca990c265f434" + }, + { + "href": "./BJ39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033fa7ca5219d4230aa19545ff2068435dd456a16855b807228560f7484605251" + }, + { + "href": "./BJ39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ad3bf79fa9ce7d08dd37c06de82bdf632edfccc3ab31f0c126069af80ce3ee0" + }, + { + "href": "./BJ39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079cf02e5a1d0c8bf729b5bc189dd68389f2062a6ac6f494b806e0390d04ad6c4" + }, + { + "href": "./BJ39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220242cb8e1853cd144ca6823ac9d17181656c1c2fdf1c2d7d99f42cf31f260c26e" + }, + { + "href": "./BJ40_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220910fee66be94b7e8598e1d0d7edef9a78ee237f051bab03d7800b8842b458cc7" + }, + { + "href": "./BJ40_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bd5ffd3c9ecbbf3f23bfa8ecf6a4a0007d09ca61dbda34f369a27c2302c7487" + }, + { + "href": "./BJ40_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d94ed004dec6aabc9fab0e3e05c29c61d47563bfc04e679cd1cebbbcf1b2954" + }, + { + "href": "./BJ42_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025825c25a381dc1cdb7fe47045fd8d3c4139fd51b101096ae5a2f60b0e1758e8" + }, + { + "href": "./BJ42_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ca4a65eb6811ce14d0fc70b378d08944db455e139b0921d38393596e240985d" + }, + { + "href": "./BJ42_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5af5d7dcf7bb62df4ce540f32fcbb125c2dbf379bd90e874f6b3401f6261dab" + }, + { + "href": "./BJ43_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c62ff0915b08e90a76228c18a2bb75e142eff85ae4311b356aad6755b9d9024f" + }, + { + "href": "./BJ43_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0cd02eaa6475f8579ac0ee0edec44d9afa3b7a814872128fddfcdd5f3c44014" + }, + { + "href": "./BJ43_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be16288e596756d51f4e94d20216dd3fbc33c14142101aa13fe3f3563bf9e44d" + }, + { + "href": "./BJ43_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f132ec29597f0eb4b9d87b7863e59c8aabc71fe2b809ffb23ee1fc9e2e14173" + }, + { + "href": "./BJ43_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf1a1c9ca6b598d6d661f402289a523915870e499f1700f241cef373968a61a6" + }, + { + "href": "./BJ43_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c99f424f8269671623ba4c5b314659bebff5b543751a159d4eae931dacdb0ed" + }, + { + "href": "./BK36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf6a013b0e8047090bf82045bfbf77fd081c5c9aa90322314e8af58b38024be2" + }, + { + "href": "./BK36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220589a9f1c53a1ee87058b9125f7b7f6c4087c6005cb0cc669f5558c3aedf4cfbe" + }, + { + "href": "./BK36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203f39b16e7c36806684c7c6aa0fdced87985123a76450c0dcb1c158eb664de077" + }, + { + "href": "./BK36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064dea1c5c50f821c79e6e03890b8f3991abb80a0eb70bc2cc58f8e5f3a816bd7" + }, + { + "href": "./BK36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a8c4117e5c8f5ddc4e59d4cd50eff7a8fa19734563c13a7dc1adf73b36824b97" + }, + { + "href": "./BK36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a907e9a03ad8bed7553e5ec8514e2c8441298277b6fed6471004a63dca240d7" + }, + { + "href": "./BK36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220865357d519e9346fb7ed85d04622efabc0a448fd8994f39b4050c2aca4336eb3" + }, + { + "href": "./BK36_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c2f006878171f402af18087b070708610d92737536a0d5af96212a8b3c601c28" + }, + { + "href": "./BK36_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f2fee0295c6089cb6648a9f69db9876af9893ae72d193a3ad15e95dc3d44a33" + }, + { + "href": "./BK37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083cb0dcf49470ff15046062537dc2dcd06da120acaa0e1cc782bc2d9d4ffbbd2" + }, + { + "href": "./BK37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3fe38c7239737c32bb0c135944ebef6b2f289c1a320bcd1207b591959f65c1c" + }, + { + "href": "./BK37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202808e4c607e0b6e56a70f695cec8e435de2a35d183fb4ac32b8362473fb4445f" + }, + { + "href": "./BK37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa9a6389010b0defef83dd6bddcb0998cb158218ad54ef2e2a508c0f4ac38815" + }, + { + "href": "./BK37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220830ec08831aff9b865c99ac484627e6eb84fc0de2ec1efc74fa2ddc2c0fb0b6e" + }, + { + "href": "./BK37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c99d77dcf2738856528784a0e659b0aea95bb31f5a8d2c8cd7b4732fdb8a7c9b" + }, + { + "href": "./BK37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201372fb3dfa5bfe88e9d6038abcaeb144c7c190180213a92c28fb0a022d6705dc" + }, + { + "href": "./BK37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5a5fa1098e480b81906107c0e0b26662f045d2dc6a32e3716f93e616a0c9a35" + }, + { + "href": "./BK37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e9b967d073e419db96a40f71887bfdaf10ca55acfa2f245fac41023f8992823" + }, + { + "href": "./BK37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a77cb1b70c73d16ee1866a3ea6d9560e493bf1afa8c4aaf0c0efd35389687b57" + }, + { + "href": "./BK37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d143d6d41f7c659bc9d5b2b756a2dfc1f6a508d62af80cb1e9cfec2b53e4f4d6" + }, + { + "href": "./BK37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f083cf0a974795222d3d4b4a242a02f6c27a99847bdcd343b2dd783d91e63c3" + }, + { + "href": "./BK37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085ad4714414e0974317ab675a82a087bb20597b53005be80904726594ce72b52" + }, + { + "href": "./BK37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001c997d9ed991085f67a9081006ac8c70ba6bede3722dd49f63071fccc5e5dd9" + }, + { + "href": "./BK37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122066ec0d2fc515258f11873ec4459d8d9960aab296952e127780e4708711e8d9dd" + }, + { + "href": "./BK37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003a37454d212aea54279c79a2f6a8d92b10cc12ce2da656738bc91cc77188951" + }, + { + "href": "./BK37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b25e93e4b76d0ffb73d6fc3edb3dcea066b254a8125239c2787fb1c995f25a2" + }, + { + "href": "./BK37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075956886ea18c057198f839b8fb8af4de7d0c63e8218ebfcab9919c828e361c3" + }, + { + "href": "./BK37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201cf2832f9490109b1ddcabf94edd99199f884a4d2961ad74c7cf6da4df34f80e" + }, + { + "href": "./BK37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b60e0cb119bda7c9d220869b520d917feb173582bbe4bb1ae8ff26caff5b7503" + }, + { + "href": "./BK37_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2f4d263a24797cc1b84184cb9c5a0503bb072afe9bc9d81553add0646fed14d" + }, + { + "href": "./BK37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017e236aa58fafa5f713f02a6c78a14227d8d7d620f3da8bbc397a31caeb197af" + }, + { + "href": "./BK37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b6e242bf7131b480cae8f34d45da6de5b9c7ba99c57aa3cbad4c464f877b4ae" + }, + { + "href": "./BK37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df943950514c1b7879e5372aa53b7a2bf8495724e0782d5ee816b0f1c0b0b389" + }, + { + "href": "./BK37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5b388c99b80b33fffb8bf2241a054a5c681bb8b80616921407071980c1e2847" + }, + { + "href": "./BK38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d653209a3ec2e679938079f33cc18d55dedbf01e8371cae5e6ed48bdc5afd6d1" + }, + { + "href": "./BK38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be01b522beb6f20dd4f3a0df1c0210ac5c2630e948ef99229dcb40724cbd02fa" + }, + { + "href": "./BK38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dad73ee1420d66790ecb01d342297640df0f48fd992768fa9670a428872ca03c" + }, + { + "href": "./BK38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6297f92bacf0e7f2f74a8cfa864be7c18be5d762600c4c1a037b10b6567d510" + }, + { + "href": "./BK38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220112b629b629bcfb7409ee0b56612d66c4fa231a09719e5e25608ce2fe093a35e" + }, + { + "href": "./BK38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011f6ac6c91d8ed31ddf76fbb47a7acd4e2abb27fd2db3a72f7852fe8b3044385" + }, + { + "href": "./BK38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a6b6e2fb9629126eb7909336024c2161247129e7d0c264bfee1077706e62499" + }, + { + "href": "./BK38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e964b2d0a26c6c1ce7c9607929dca66afb6a65a806b8eb5b558d2c80a7b76414" + }, + { + "href": "./BK38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201b208e60fd4122886e77d30f58546d3dab4325f191a37d6058e186d638342236" + }, + { + "href": "./BK38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f02c10779669ad612c714c5f2d180e02287faba0ff98d162ce53e4e7b0a6f227" + }, + { + "href": "./BK38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032588d4e530ef2ce556409abacabf287e0cd9f324b6968fcc7a38c5ba8b47cc6" + }, + { + "href": "./BK38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220774b8d9290ceacdd6004caed80fd3f806ff93a893baf805935c9565da5b53a5d" + }, + { + "href": "./BK38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ca51a029b4edb450b2baa2f237d108d5dd260ae58ededbbef555073857c2045" + }, + { + "href": "./BK38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030b22a17a345988ee7164eea33e84986c4fafab32237c7ce4699c8d3e740c618" + }, + { + "href": "./BK38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220738df18ec2dec7ea16d8c62645f7cfb411d615a28c3da33239764f2c68b4de89" + }, + { + "href": "./BK38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220246bc13c454766c2086a18e06654279d8ed487c3631153754f68b1721443b966" + }, + { + "href": "./BK38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122051b9fbac39cac674ce38078265685a2fe2f20a356d60cce4c918e9fb25f23e8a" + }, + { + "href": "./BK38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c2a5218b94098f7c4253e1f6775cd6e92dd46926aa52247e58693cdd67c5629" + }, + { + "href": "./BK38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220243542cff5b574df4189d52b5f48a118a4f59538cded68f63707033f5a2faac6" + }, + { + "href": "./BK38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056c90be3e3e82b1f536bb94fd793db987ca64d0b997f503665ec2fa2aa4a14d5" + }, + { + "href": "./BK38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220622cbe70eddcb4f54a6e2530b60b4a289309b9e6bc0cd0d44657aa018315fdaf" + }, + { + "href": "./BK38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049f0960eb9e2f6df543bb28250dd3ed0ca2f5f4dcc675aeb6d4252cf6851ab7d" + }, + { + "href": "./BK38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf4208516415c190a75e0630600a8df277ad0946a6dae9124239d273dbf2aea1" + }, + { + "href": "./BK38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e99a04f6e993545cbb907c255aeea8cdb3a3a34ea6ddaa94fb98928297573d3" + }, + { + "href": "./BK38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb35dd4e9fded45ed80679d396c6040e68b9d5fe251dae3bfa849f6dcb25803d" + }, + { + "href": "./BK39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a9b1cc4ca294a730499cb28450b2a53437a2849e4e021ee9f9e1c528855dc52" + }, + { + "href": "./BK39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220667da1a09235591b1d12b278ad252d065e8695a5290e1f5b3a6cf1f70e1b1d8b" + }, + { + "href": "./BK39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060269813d32e457cc69735f18926f7fc2bf3d07f3494da30a8c545eac989da9a" + }, + { + "href": "./BK39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e21babe0356211c63db9855e7c61989761d05ddc20c213f1953b82930a46e38d" + }, + { + "href": "./BK39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b7339d6234d4f313aac14b04cb9eba1a517c8dccd31058474e9091c0827eebd" + }, + { + "href": "./BK39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd9830478435d375bf327ff0bebb26abf370d23e407921b3e6eee52995b6c142" + }, + { + "href": "./BK39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc9aeda40bd19588834d0f529d7871793eecfd4fdc55b18955e97d17400b5b8c" + }, + { + "href": "./BK39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d9a0004818d00b0fab8c4e4ca4c291a5a2d5459e9d6e9b51f926e8063ec4be6" + }, + { + "href": "./BK39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c11db104f850be7ff0f5cac4d1eefa8000de146b29f8e221987e2a6aa1546536" + }, + { + "href": "./BK39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e10fa7b7d7a6383b910bf668965d683c7ba3221e6a550ac066d89421d1c8ae80" + }, + { + "href": "./BK39_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da8b743a48e2f9e22b62c4a169c12b66decc774ab3881929d39403e38f342206" + }, + { + "href": "./BK39_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bdbc96eb8be66b211f90a5c445f5f15fc4ecd4e4c2471232710f125983c126e6" + }, + { + "href": "./BK39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207ddbac0814f3d607c5672e982e9546922ae31dec2e08b44c968b440c36f482e8" + }, + { + "href": "./BK39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209bc454d936e0385f07117b3d0bdc22f9c19a060d6d08f54918030a671a0db0fb" + }, + { + "href": "./BK39_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d019441625281bfad368cbfbb4cbc9d20d0b6f56cd44984e4a91444f1f67cc8" + }, + { + "href": "./BK39_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f6dcd4b6c0b13912083cbc9705f6e8bd8d5823425779d10b61ad099ca1b9826" + }, + { + "href": "./BK39_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ab71b7702c2836389520d3cda9dae1c2e7431ccf9bf6138db55ca9600218c95" + }, + { + "href": "./BK39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e36ece95f75014ceb743526748f4bcae551d8fe831c66eaeb2a7c71c8472cee0" + }, + { + "href": "./BK39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058a6d053359448b43c713e7b25edc913b473d74d2026b42fd401889e51cacb34" + }, + { + "href": "./BK39_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220891e48cca3de819f872d7ec13f264bc56ce19db13ae45fb55e83cdadfc51adcd" + }, + { + "href": "./BK39_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e96c6924c7bc24c767b8e2f26305092ebb8055bd73fdefac104d5f768b00fd6d" + }, + { + "href": "./BK39_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203792789128c6b2fdbd108dede6164629cbba9d67ced0553e9d0f78fa72b8964c" + }, + { + "href": "./BK40_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001648ef3b9f800a58cbe9394b92f76382c916e7ebfb5629afc0ca663d4f0c0fa" + }, + { + "href": "./BK40_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006ae586115dbc0df8bad022f7e613f0d5354c1b15f0b936fed4c71b9edeb0789" + }, + { + "href": "./BL36_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ba0e3c7b21561508103ce860e4706b5b3e17b1c54815ab62791e85ae0f99e00" + }, + { + "href": "./BL36_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b45550dccdf58f1caa1ea260816c41276a5f7e15ce5a50e9d0d579400e08b3cf" + }, + { + "href": "./BL36_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d48d9b6c18ea783cc999062ed5f06046ed62ceb3a96af7e9794ed39e5298092b" + }, + { + "href": "./BL36_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b5ad09af49f4b40dbb475b61882370c8b2bcc2fce094e7194e74362b3ec005ef" + }, + { + "href": "./BL36_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208840ce6d7f4d9e7a9bc277f71c4414e7015e5126e68e41de333f42ad91638f3b" + }, + { + "href": "./BL36_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0a7074250dd3e5341927c0c795c3df2a9f2e5a4ff228f43021b8008e1459978" + }, + { + "href": "./BL36_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220af15ec2d29cb797b9580bc01e3e3df2d316cdbea47ce9abc379bbc3b3efc3768" + }, + { + "href": "./BL36_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f75e4309c71b05f99d0f1368da67f29ef14bbe5436bc7bdb0a165c29b989b1ea" + }, + { + "href": "./BL36_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2fca8887f9fede7820840eae093bc02461aabde8735a02dd206650963c15faa" + }, + { + "href": "./BL36_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220416246ee812e893fb25c76f5c429cbe0c5dd4eea2ae93740a73da8c6417b363b" + }, + { + "href": "./BL37_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220742705c9912d203a174116e54cc90c2b0f59afcda1664dc2a82196fadd9df9da" + }, + { + "href": "./BL37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1211e7274e18b70d12c8e68af4fa53e193872084927342fbbd7ed0ee3b09992" + }, + { + "href": "./BL37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd7c9c3d908f41e70e9deb762062c44a77c6e380b5ca6752b887341bef2bb24e" + }, + { + "href": "./BL37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f281fe5d8c73ff7ac54f04c3a5b1832cd6b614cd9ba2bb7a84992b64c1d3ab0" + }, + { + "href": "./BL37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fced5b6562a11bbf80b280c598fe9b531c61ca374e9e1c4eea3b2fdfc404b267" + }, + { + "href": "./BL37_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a2450b8654f43f8ea356e754494ed2c924db2138f5cef77b859bc6d0fa11f97" + }, + { + "href": "./BL37_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204abf94fba47588c1e0f2da82a0dcb60fb28d51b191b19a4f34d1202d2187b17c" + }, + { + "href": "./BL37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a3b3350c717c28b64da3c77b2d22bbdef2b02dd79dc4eddea18a784d96efb1d" + }, + { + "href": "./BL37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208bbb532fb4efc458aa5b99d7043c27899780b8432d7fe57c19d30310b9eadcf7" + }, + { + "href": "./BL37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c18638a86344b3ff99fc2dfb55c14e88a4181b5dcee28b5331381868e5b916e4" + }, + { + "href": "./BL37_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220791b7ebb1f4dce55b5db81bd51ffb0518017593cdd63001e4123db2cf659b664" + }, + { + "href": "./BL37_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208719e385e9c4da5a11391a8b807ec0144c59e79971db931a12233969445e5c3a" + }, + { + "href": "./BL37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7f619fe100322a61fda8738ff7317b8087ddec0b489fd0f97b957b41bcc04c4" + }, + { + "href": "./BL37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048104d498461f28ca72c7b4db13388b69aab601ca0d2f9586bdc0dee4bd40083" + }, + { + "href": "./BL37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fc1b5e077e352399964c6a04e850a430f6c55dc2f933165aec7de41a7459646" + }, + { + "href": "./BL37_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065ca8baae73317a48d0b0bcdbc01fa166f5b981b9bbcead0a55ce5e138e75499" + }, + { + "href": "./BL37_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220876014d352f304da1c9bcee1db908ad276b9a4b612e23b544f4da486c99ecbfc" + }, + { + "href": "./BL37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df8f7bf4882f99157057cf313ccb2e15d5669ac9532c803c1f58a058e394f133" + }, + { + "href": "./BL37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3cf76beb2ae5d0230913433dcb89d546fd980e3b238cab794792d7787f8cc25" + }, + { + "href": "./BL37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220217f5050bf68957de4b7995be557c80f2003ca10f024734f8ed4d39b47aa99f3" + }, + { + "href": "./BL37_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209be10b1f467fb0c350752a7c4c4eea5e34055ff871630fdbe329ac9b7e4d8ea2" + }, + { + "href": "./BL37_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063c1738d7b66dccbee89171017174062e5642d044b4432c9ee0b832547dd84de" + }, + { + "href": "./BL37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa4fbf13dde12f078b4ffa5e1ac134f2fa7d132881bbdc1409a2d72f3ba62be4" + }, + { + "href": "./BL37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a407dfcbeb9cd1cd13f420380e971a3c9929f214a94f6b76426baae498ff10bc" + }, + { + "href": "./BL38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206693cacc9fe427b85ac227f833e2cc60da51fd216450645ea42ebea773df0716" + }, + { + "href": "./BL38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d222afd7187a004a58016592cd918664c88e587bbf803e58634e37099626ab0" + }, + { + "href": "./BL38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da98a49d20dc7dad99edfd4b06df0e1ae18199b3a7a0e1488fe0b9b4ee355875" + }, + { + "href": "./BL38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0635521c7b9921c9cc7d832589acdd8ee8598cf1bf2508355818cb1982d9562" + }, + { + "href": "./BL38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206afad81de6a172770727dbf2be3b9c9517c2617e08df423b75224d07e55920eb" + }, + { + "href": "./BL38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa0878e4109ec6bdecd18c0a9f364508603bcf63fcfaeed5a2ff75460ffe1fde" + }, + { + "href": "./BL38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1364ce8c521dcbe13ae0fe63145f609b49728eac0a68c675add7e9e7e32b08d" + }, + { + "href": "./BL38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220681ca91684d3f761ae7a4e573ad71b62de30133802d4433dbadb5a7e58e675dc" + }, + { + "href": "./BL38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c641c7fbd6745b2e92063e4d5a3013639aaa48a4c35bf164b209d72f9d3b35b6" + }, + { + "href": "./BL38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0f628e2ff23d3ba281b8cd6901a9712dc59f549befc64bbf788c268fdcca67b" + }, + { + "href": "./BL38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220977b27f852e4f649c61b2a9be014ca53061070fe0d51a6c7ede0f47b82ecf0ae" + }, + { + "href": "./BL38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122096d2406b34bc4b9374e78deed0b0a72d15d7835ddd30caa421c3ae541c5fcd57" + }, + { + "href": "./BL38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1809655c051f3b1ea2e59df2f838c78875b458c582dfa00ad24e82094b22af8" + }, + { + "href": "./BL38_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220169af32dc4ca4b04ef78d3f6aac8a9fe9b5993fe8422b78cad9584d8a3b50a08" + }, + { + "href": "./BL38_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201cf6689d9d320bf49f25540b9fd979ec5dbdd373eee8f9105a34e865419ed91b" + }, + { + "href": "./BL38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6b0fddb2b66baa4b0f86b168a5221e1fa274f518c4d5ba7059e0c01d19f3441" + }, + { + "href": "./BL38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067a20f4bfae71a86b7556e34a7daaf36ef5e1e0f1beae03fd069b8ac3f1f7b11" + }, + { + "href": "./BL38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ce22821778be6ea4f2f4c336fbb79561d69b42c9ca1b7a3416a36981061cc4d" + }, + { + "href": "./BL38_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc77586af71d21e73d9a66b386b95f97101f74657a7c70e6183908cb248cdd02" + }, + { + "href": "./BL38_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3fa5a2d94114c1fc1dc7a09bd6d8552e533e8665c4a162f16a7ba28437c01d0" + }, + { + "href": "./BL38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220552ff048f7c490e7443eabb7a706953abcfe3500f0a65f237520e9757c0fc792" + }, + { + "href": "./BL38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fe27e48ec7e96a57cd7ded26c4c4a61e8b70d8cf2ebb5ec1dcc8d2b69fca7a9a" + }, + { + "href": "./BL38_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069cec694cb23a42b1f66abb97abf5e53cb8e3ff6f36c430c2d3061433e04ca77" + }, + { + "href": "./BL38_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f28d7d81da080e1b3604f2be6a0308154204340c8e84866295d8cf731bbf673f" + }, + { + "href": "./BL38_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220209aaa9a0b451d5210e925daa06e4d0d781233c3f0e069224c317688369885a8" + }, + { + "href": "./BL39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ceafad9f1111a67b80256e1213f45992c8ca9d60da64943ee55d276a18a8c52" + }, + { + "href": "./BL39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092dbe8e5c6b1109a9c463b456ce33a9f72395ba51453839e9e596fd2dba54a14" + }, + { + "href": "./BL39_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041cb7ccce7e3939655b305b33fcf5a09732011f5dcdaa295ed2f69f373d2e343" + }, + { + "href": "./BL39_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8d488dec06e932b618377edbd5e97a972c97335c36efe89994a3505a2c6a601" + }, + { + "href": "./BL39_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207577b36aeb14447343fc81251c40947739a50e4493285a4d53158afc6526fc8f" + }, + { + "href": "./BL39_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f9ff0aeb24257632a6196b00e012016ef996d16afb5504965f9189bbd3e8b762" + }, + { + "href": "./BL39_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034119cd3e8cc4d11b474be496a4d59f838242f379438f533b6f29cc45e3a197b" + }, + { + "href": "./BL39_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022dc625e8cd429ad0a59b0e05b30d4e550eb00ebbef4164ce5cfeed20a5701b6" + }, + { + "href": "./BL39_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a0ff1f831cdf3a6fd5f6cd8f2e28c96d9748f9c9a5dc78e18d72160ad28b1386" + }, + { + "href": "./BL39_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090d898d5f4f0c7177d9f0af5aae343410153e4912f47a1dd0e292ede9b794f20" + }, + { + "href": "./BL39_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088bc6c9dfdcb59f7f7e52461263f9473a69478b75d31b9dd0aa5ee7009b7f909" + }, + { + "href": "./BL39_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e98d17b813b2052a039d09b9980a449e3cb030efeb5b38ffabab61990643d2ae" + }, + { + "href": "./BL39_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d3172a1a5ce6ed58906d938a5006ab981c48a28351dd5e86d74d273bfa6d8c0" + }, + { + "href": "./BL39_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a8a0b985ce6927b185c7ac2ae02ca6352c426d7d058662d17e66cc551667b1d5" + }, + { + "href": "./BL39_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204738870333fcf5b6af7a0d289f9d1eab728454a599dee78650de77d6599d50bb" + }, + { + "href": "./BL39_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a5070623918027f3a961a16640883b790f44aacc7215876292d31a75425c1554" + }, + { + "href": "./BM37_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d6760b93d46852218ef6417ec66ceba463e4082ef0100eaa64b375e54af1650" + }, + { + "href": "./BM37_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220668212bb90855d9a3d7add136fe50007376e5c2bf54e5bfb3b6e3e7dd44f515e" + }, + { + "href": "./BM37_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209550f92bd0cb55deb75de6cf305729caa355868a031d30d979842730e05d7594" + }, + { + "href": "./BM37_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220370dda1774f3c853d676b81d3beca48a31bfc8e73cbbcc6e2e1bdf88f1d5dcce" + }, + { + "href": "./BM37_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e11694b5ef83ff2b19bc78fedae348db00ecfdb31982f295b1a100af96d905e" + }, + { + "href": "./BM37_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093e2187c374ab9ebd08356443d1956316e153d3cc7f17c7ff6ec26c41d186f7b" + }, + { + "href": "./BM37_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f9d989f4816566a896c11d71f6b84dcb34b848c9827fea7a928fb7f52905fb77" + }, + { + "href": "./BM37_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ec821dcd11ca6e8762725f941b3689dc7ac770f8c8d2b77031c5068a7f0a166" + }, + { + "href": "./BM37_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122041b168c79e456377024a6a07d633e9ba622ad7b87a9715fa5a7ff20b6137cbae" + }, + { + "href": "./BM37_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220475b1a555f365e88830b23d591e41e3dd91efec3a4520ceb96f8bca0fdbc0de0" + }, + { + "href": "./BM37_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122053a7e60c5e48d9e66f0ae45206793f3fad8f83d2ae56a5911fd7472ffdf489a9" + }, + { + "href": "./BM37_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddc9993da6b0509cbbe6a1c1dc58b5ce1aa6537ad4cf4dafc1e9964b02a1762f" + }, + { + "href": "./BM37_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220779a1391ed4033fce587ea663a46146d2ee74ffa27e4a6e932b30d351461cffe" + }, + { + "href": "./BM37_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038623dce3032221fd106ebd3dc737a116cef415b74a98c29e145b7c2f71958f2" + }, + { + "href": "./BM37_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a24b1193f361f0e1b3f2a9ef5e8529eb5fb45f91ef440dae5b6144c66a5ba028" + }, + { + "href": "./BM38_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034c6ab346b97cb4520adc133c97502a85543833286cb36ff663b3f8b5fc787da" + }, + { + "href": "./BM38_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a708c7e3b424ee0c5b8425ea1d172a8c170177cd4ee2c22c9e23e6a91c4aed5" + }, + { + "href": "./BM38_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200105606c6bb5da9017fcccd90c9a4f9f78e30b3572c2c3dc740a5cca176df7fb" + }, + { + "href": "./BM38_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075d43e64bfd9afd47140ce520752ba28bd9246e3501d4b51fc45cfa532bd5890" + }, + { + "href": "./BM38_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013603c5c5d33949518c948f9cc76e594d0ad3b33f9c4255885e0e5ae6f24da88" + }, + { + "href": "./BM38_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094561796853677ea889fc7ddcb12bca0c70f5aa6f44b59380c5f2ab378977d88" + }, + { + "href": "./BM38_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220035cc0ce5cc40683dcf0e596277cdd22f307483b4572e8906c2d9c533ccb2936" + }, + { + "href": "./BM38_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c5267ed24ae813ed4e9dc22ecc163f80a1d265abbfc09b5522ac943a53a95cc" + }, + { + "href": "./BM38_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bfae802cd88d9a3ca9f74690cd2907802e962a49e485d31ebf0605167390ce86" + }, + { + "href": "./BM38_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064d29660fa0951642a958db0d3ab15939d8aa637c03f7cb2ae1ee689529783b2" + }, + { + "href": "./BM38_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220315663d3d4f8e9eff7d938af638690dbd501d94d520db20ee1b4a19fd824d8df" + }, + { + "href": "./BM38_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc6e89b39811b8e6cf7d8a0ae760427a285245baf10187f8da8746692ccf6174" + }, + { + "href": "./BM38_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017508c4ba015379e196e7e0e71d04a52cd0f7c410b83861f3d42d9617f167b92" + }, + { + "href": "./BM38_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e662cb36b90b3926ca4d3dc1c12166e78e9f081202689799d3e38d86286e2e27" + }, + { + "href": "./BM38_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b965077dcfbad2100c3564de0e2cfb0f72aa1ae5ceb8ccf3c0b8e1e3ac8034a4" + }, + { + "href": "./BM38_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d35afdf222fafff9bc908735600826d985b0bd56430ca4038248be9502b6649a" + }, + { + "href": "./BM38_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220627504fe1b70a17240da78454ebb391295a5734d8f63068ec00ff199bd8ef0d9" + }, + { + "href": "./BM38_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fef2aff39c953f0638ea02b2ee898c348ddc250166e9d603286c385cc4a9ac6" + }, + { + "href": "./BM39_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019dd996a8a3c672b3f9a6c2a20ac493c692983f760af0d61a476c21d5c1058de" + }, + { + "href": "./BM39_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050848469c09b960ec07964ca10b6c0fcbae80e73c008cf13d26735940de76397" + } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dsm", + "linz:region": "hawkes-bay", + "linz:security_classification": "unclassified", + "created": "2024-10-21T00:03:14Z", + "updated": "2024-10-21T00:03:14Z", + "extent": { + "spatial": { "bbox": [[176.0260349, -40.4739342, 178.0283496, -38.7469279]] }, + "temporal": { "interval": [["2023-11-19T11:00:00Z", "2024-04-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "description": "Boundary of the total capture area for this collection. Excludes nodata areas in the source data. Geometries are simplified.", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200b085bcda2a54ec2446dc354c5a8725ebd6f19bff41fc19f3776dcc59d9ec600", + "file:size": 665215 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..c4ac5203 --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dem_1m/2193/collection.json @@ -0,0 +1,193 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRGCMS294Q6T1D5B8JGW3XS", + "title": "Manawatū-Whanganui LiDAR 1m DEM (2015-2016)", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2015-2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[174.7100346, -40.765512, 176.0833559, -38.7557257]] }, + "temporal": { "interval": [["2015-12-26T11:00:00Z", "2016-12-16T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122011d1d2409fcfc3f67720ac89838badd2092318252f484bd8c6b36cbdec589172", + "file:size": 150826 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..4f4aaf34 --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2015-2016/dsm_1m/2193/collection.json @@ -0,0 +1,193 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRGJ6ZK9RN50A1MAZTVW9S4", + "title": "Manawatū-Whanganui LiDAR 1m DSM (2015-2016)", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2015-2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[174.7100346, -40.765512, 176.0833559, -38.7557257]] }, + "temporal": { "interval": [["2015-12-26T11:00:00Z", "2016-12-16T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d8648b135d9c2b5a8ee67d7affe1f4a48f3361286ef2bd323286df19c54aa15e", + "file:size": 156390 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dem_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..6b8b9774 --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dem_1m/2193/collection.json @@ -0,0 +1,132 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRG80Y2SDW2BHKNZW3NKSH6", + "title": "Manawatū-Whanganui LiDAR 1m DEM (2022-2023)", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.052043, -40.6229895, 176.1338432, -39.984514]] }, + "temporal": { "interval": [["2022-07-01T12:00:00Z", "2023-10-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a4e24882ef9b75cdde23632065773b5d915e6211118f9fac5afc41d845fe30d0", + "file:size": 18934 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a10f6a9d --- /dev/null +++ b/stac/manawatu-whanganui/manawatu-whanganui_2022-2023/dsm_1m/2193/collection.json @@ -0,0 +1,132 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRG9VME9B4ZRXWJHK3GSH0F", + "title": "Manawatū-Whanganui LiDAR 1m DSM (2022-2023)", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BL34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BL36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Horizons Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[175.052043, -40.6229895, 176.1338432, -39.984514]] }, + "temporal": { "interval": [["2022-07-01T12:00:00Z", "2023-10-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122025573cc8bd26166efbee3d0f0d29d35a5ea0e83f3a75cbe53cca11ccce13ed58", + "file:size": 18933 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json b/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json new file mode 100644 index 00000000..57d4acdd --- /dev/null +++ b/stac/manawatu-whanganui/palmerston-north_2018/dem_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRG5W7HXDXWB1M449TA6B48", + "title": "Manawatū-Whanganui - Palmerston North LiDAR 1m DEM (2018)", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Palmerston North City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Palmerston North", + "extent": { + "spatial": { "bbox": [[175.4592799, -40.5620358, 175.8008159, -40.231557]] }, + "temporal": { "interval": [["2018-08-28T12:00:00Z", "2018-09-27T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122022d94cc07325fe3e19d637b041da276fd6796bea4e34a7be0fb578cb76e98f6d", + "file:size": 5996 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2cceb754 --- /dev/null +++ b/stac/manawatu-whanganui/palmerston-north_2018/dsm_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRG7YEA5RVBE5EMAKCH0X8E", + "title": "Manawatū-Whanganui - Palmerston North LiDAR 1m DSM (2018)", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BM35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Palmerston North City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Palmerston North", + "extent": { + "spatial": { "bbox": [[175.4592799, -40.5620358, 175.8008159, -40.231557]] }, + "temporal": { "interval": [["2018-08-28T12:00:00Z", "2018-09-27T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122022d94cc07325fe3e19d637b041da276fd6796bea4e34a7be0fb578cb76e98f6d", + "file:size": 5996 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..bfe3ea4d --- /dev/null +++ b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dem_1m/2193/collection.json @@ -0,0 +1,65 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFZTFCFMTY29QR1TK6MGEJ", + "title": "Manawatū-Whanganui - Whanganui Urban LiDAR 1m DEM (2020-2021)", + "description": "Digital Elevation Model within the Manawatū-Whanganui region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Whanganui District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whanganui Urban", + "extent": { + "spatial": { "bbox": [[174.8799205, -40.0534343, 175.386853, -39.7867148]] }, + "temporal": { "interval": [["2020-09-07T12:00:00Z", "2021-02-02T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ee926561bab6f6c32b4f9846fed070a5c120cb25e82ad33f6219290d385aae50", + "file:size": 3840 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3e0b690e --- /dev/null +++ b/stac/manawatu-whanganui/whanganui-urban_2020-2021/dsm_1m/2193/collection.json @@ -0,0 +1,65 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRG1BJ2ZKBN9081P98ANZYM", + "title": "Manawatū-Whanganui - Whanganui Urban LiDAR 1m DSM (2020-2021)", + "description": "Digital Surface Model within the Manawatū-Whanganui region captured in 2020-2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BL32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BL33_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Whanganui District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "manawatu-whanganui", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whanganui Urban", + "extent": { + "spatial": { "bbox": [[174.8799205, -40.0534343, 175.386853, -39.7867148]] }, + "temporal": { "interval": [["2020-09-07T12:00:00Z", "2021-02-02T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ee926561bab6f6c32b4f9846fed070a5c120cb25e82ad33f6219290d385aae50", + "file:size": 3840 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json b/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..c07a5050 --- /dev/null +++ b/stac/marlborough/blenheim_2014/dem_1m/2193/collection.json @@ -0,0 +1,76 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMAZNDJHXT7JNQ5JMADQMPQ", + "title": "Marlborough - Blenheim LiDAR 1m DEM (2014)", + "description": "Digital Elevation Model within the Marlborough region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Blenheim", + "extent": { + "spatial": { "bbox": [[173.5463195, -41.6882374, 174.18235, -41.3624698]] }, + "temporal": { "interval": [["2014-02-22T11:00:00Z", "2014-05-02T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a41bda26e7b4f340e1844ae6dd5f26175099c1dd73fb1b38aa4752fe522487fe", + "file:size": 24066 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json b/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f47fb826 --- /dev/null +++ b/stac/marlborough/blenheim_2014/dsm_1m/2193/collection.json @@ -0,0 +1,76 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMAZN2MBB9A4BR5WGVMCD7T", + "title": "Marlborough - Blenheim LiDAR 1m DSM (2014)", + "description": "Digital Surface Model within the Marlborough region captured in 2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Blenheim", + "extent": { + "spatial": { "bbox": [[173.5463195, -41.6882374, 174.18235, -41.3624698]] }, + "temporal": { "interval": [["2014-02-22T11:00:00Z", "2014-05-02T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122006bfdcca7564a57e291866018bac988a70c134c0c952b1ef282a717415362a76", + "file:size": 21276 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json b/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json new file mode 100644 index 00000000..49e30bf4 --- /dev/null +++ b/stac/marlborough/marlborough_2018/dem_1m/2193/collection.json @@ -0,0 +1,92 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9JYBMEF9T8D9YNTBN32TT", + "title": "Marlborough LiDAR 1m DEM (2018)", + "description": "Digital Elevation Model within the Marlborough region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[173.2590459, -41.948916, 174.2425113, -41.2327826]] }, + "temporal": { "interval": [["2018-05-25T12:00:00Z", "2018-09-11T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201bead08e7cd674269ee3a7448827ecdac617779180b3ffa2136bba55e85bc4fd", + "file:size": 58696 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json b/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json new file mode 100644 index 00000000..4185f764 --- /dev/null +++ b/stac/marlborough/marlborough_2018/dsm_1m/2193/collection.json @@ -0,0 +1,92 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPBHHQXS723X54HNX2BREJW", + "title": "Marlborough LiDAR 1m DSM (2018)", + "description": "Digital Surface Model within the Marlborough region captured in 2018.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[173.2590459, -41.948916, 174.2425113, -41.2327826]] }, + "temporal": { "interval": [["2018-05-25T12:00:00Z", "2018-09-11T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220b98747045bc10edd94126fd8f68e868f3b86091acbfa75fd94583b3a26dfb3fa", + "file:size": 16064 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/marlborough/marlborough_2020-2022/dem_1m/2193/collection.json b/stac/marlborough/marlborough_2020-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..822c26f3 --- /dev/null +++ b/stac/marlborough/marlborough_2020-2022/dem_1m/2193/collection.json @@ -0,0 +1,448 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRF3R1FFF2Y2PYZJRQDK07C", + "title": "Marlborough LiDAR 1m DEM (2020-2022)", + "description": "Digital Elevation Model within the Marlborough region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[172.6801711, -42.5351814, 174.458987, -40.6496832]] }, + "temporal": { "interval": [["2020-02-09T11:00:00Z", "2022-02-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c293a77fe08b943fd42d4285fc427118313d49f4ad8b3deb182fae29ba119b05", + "file:size": 48196 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/marlborough/marlborough_2020-2022/dsm_1m/2193/collection.json b/stac/marlborough/marlborough_2020-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..6e8ebec9 --- /dev/null +++ b/stac/marlborough/marlborough_2020-2022/dsm_1m/2193/collection.json @@ -0,0 +1,448 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRF4DSGHKRGR4AYJFVPH9MY", + "title": "Marlborough LiDAR 1m DSM (2020-2022)", + "description": "Digital Surface Model within the Marlborough region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU25_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Marlborough District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "marlborough", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[172.6801711, -42.5351814, 174.458987, -40.6496832]] }, + "temporal": { "interval": [["2020-02-09T11:00:00Z", "2022-02-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220b8f8f2b38a9e3b63f0a5b19b4f826cc4fe47a60feb977286e86eeffedb4d9090", + "file:size": 50211 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/nelson/nelson_2021/dem_1m/2193/collection.json b/stac/nelson/nelson_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..5e93dca0 --- /dev/null +++ b/stac/nelson/nelson_2021/dem_1m/2193/collection.json @@ -0,0 +1,68 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPFCF2E6EG5YC1G2RPXKBST", + "title": "Nelson LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Nelson region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "nelson", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[173.1432012, -41.4325902, 173.657408, -41.0417549]] }, + "temporal": { "interval": [["2021-01-09T11:00:00Z", "2021-06-23T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e9e3bb74d994ee9cedd17359c96e7b11c38fbf29096f4dae001641671137961c", + "file:size": 63593 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/nelson/nelson_2021/dsm_1m/2193/collection.json b/stac/nelson/nelson_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3e733b11 --- /dev/null +++ b/stac/nelson/nelson_2021/dsm_1m/2193/collection.json @@ -0,0 +1,68 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPFFD4ZX87G4MEPB9VQXD36", + "title": "Nelson LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Nelson region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "nelson", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[173.1432012, -41.4325902, 173.657408, -41.0417549]] }, + "temporal": { "interval": [["2021-01-09T11:00:00Z", "2021-06-23T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e9e3bb74d994ee9cedd17359c96e7b11c38fbf29096f4dae001641671137961c", + "file:size": 63593 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/nelson/top-of-the-south-flood_2022/dem_1m/2193/collection.json b/stac/nelson/top-of-the-south-flood_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..79054533 --- /dev/null +++ b/stac/nelson/top-of-the-south-flood_2022/dem_1m/2193/collection.json @@ -0,0 +1,101 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPPXKJYFPHZWFQNCJTWRJB9", + "title": "Nelson and Tasman - Top of the South Flood LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Nelson region captured in 2022, published as a record of the Top of the South Flood event.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Waka Kotahi", "roles": ["licensor"] }, + { "name": "National Emergency Management Agency", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "nelson", + "linz:security_classification": "unclassified", + "linz:event_name": "Top of the South Flood", + "linz:geographic_description": "Top of the South Flood", + "extent": { + "spatial": { "bbox": [[172.7437525, -41.5623833, 173.715274, -40.7839011]] }, + "temporal": { "interval": [["2022-08-22T12:00:00Z", "2022-09-05T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c3991dcde6694e44d091f543fcfc2356f2795e936e60ec67d4dce1d3565849e0", + "file:size": 16720 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/nelson/top-of-the-south-flood_2022/dsm_1m/2193/collection.json b/stac/nelson/top-of-the-south-flood_2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e02648ff --- /dev/null +++ b/stac/nelson/top-of-the-south-flood_2022/dsm_1m/2193/collection.json @@ -0,0 +1,101 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPQSPW1313HC98GYNQJQX42", + "title": "Nelson and Tasman - Top of the South Flood LiDAR 1m DSM (2022)", + "description": "Digital Surface Model within the Nelson region captured in 2022, published as a record of the Top of the South Flood event.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Waka Kotahi", "roles": ["licensor"] }, + { "name": "National Emergency Management Agency", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "nelson", + "linz:security_classification": "unclassified", + "linz:event_name": "Top of the South Flood", + "linz:geographic_description": "Top of the South Flood", + "extent": { + "spatial": { "bbox": [[172.7437525, -41.5623833, 173.715274, -40.7839011]] }, + "temporal": { "interval": [["2022-08-22T12:00:00Z", "2022-09-05T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f87300f3cbde5cf9f3af768856abe21467f1abaec0c4cbb64a845b7651646a24", + "file:size": 16724 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/northland/marsden-point_2016/dem_1m/2193/collection.json b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..ed620438 --- /dev/null +++ b/stac/northland/marsden-point_2016/dem_1m/2193/collection.json @@ -0,0 +1,44 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9CT9SMMQDS9AMB57Y9WD4", + "title": "Northland - Marsden Point LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Northland region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Marsden Point", + "extent": { + "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, + "temporal": { "interval": [["2016-11-08T11:00:00Z", "2016-11-20T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201a4cc2d9a48a89b1043fc48a5c0932246d3141b5ba6af8b984758a72fddb45a0", + "file:size": 2558 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..1170c478 --- /dev/null +++ b/stac/northland/marsden-point_2016/dsm_1m/2193/collection.json @@ -0,0 +1,44 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9CTDEHC2FA5RKK9FQT95R", + "title": "Northland - Marsden Point LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Northland region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Marsden Point", + "extent": { + "spatial": { "bbox": [[174.4073784, -35.909242, 174.516032, -35.7781586]] }, + "temporal": { "interval": [["2016-11-08T11:00:00Z", "2016-11-20T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201a4cc2d9a48a89b1043fc48a5c0932246d3141b5ba6af8b984758a72fddb45a0", + "file:size": 2558 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/northland/northland_2018-2020/dem_1m/2193/collection.json b/stac/northland/northland_2018-2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..e9143010 --- /dev/null +++ b/stac/northland/northland_2018-2020/dem_1m/2193/collection.json @@ -0,0 +1,542 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPGQP71Z495ZTJGTQTSK6N1", + "title": "Northland LiDAR 1m DEM (2018-2020)", + "description": "Digital Elevation Model within the Northland region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "RPS", "roles": ["producer"] }, + { "name": "Northland Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[171.9837701, -36.4327099, 174.8350624, -34.0962294]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2020-01-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220576d46a2a3b1c6a517ee392cb55e396bd11904d17c656a7cfc0b0c144a2c13b7", + "file:size": 64475 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json b/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..0fede7f9 --- /dev/null +++ b/stac/northland/northland_2018-2020/dsm_1m/2193/collection.json @@ -0,0 +1,542 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPKEWSNXFVT87GH15PDG14D", + "title": "Northland LiDAR 1m DSM (2018-2020)", + "description": "Digital Surface Model within the Northland region captured in 2018-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AS21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AT24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AT25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AU28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AU29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AV29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AV30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW26_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW27_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AW30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AW31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AW32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX27_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./AY30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./AY31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./AY32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./AZ30_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "RPS", "roles": ["producer"] }, + { "name": "Northland Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[171.9837701, -36.4327099, 174.8350624, -34.0962294]] }, + "temporal": { "interval": [["2018-11-30T11:00:00Z", "2020-01-31T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220576d46a2a3b1c6a517ee392cb55e396bd11904d17c656a7cfc0b0c144a2c13b7", + "file:size": 64475 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json b/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..7ca87d9d --- /dev/null +++ b/stac/northland/whangarei-heads_2016/dem_1m/2193/collection.json @@ -0,0 +1,49 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMBSMQY950TP25ZV0Q9YZN2", + "title": "Northland - Whangarei Heads LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Northland region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whangarei Heads", + "extent": { + "spatial": { "bbox": [[174.3531843, -35.9079461, 174.6223831, -35.7132637]] }, + "temporal": { "interval": [["2016-11-20T11:00:00Z", "2016-11-21T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220416e4f36e79a6bf88333cbeac78afabf816aaa3e8bf2b05c9c001f6ed36d2a13", + "file:size": 23045 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json b/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..5b1fe73c --- /dev/null +++ b/stac/northland/whangarei-heads_2016/dsm_1m/2193/collection.json @@ -0,0 +1,49 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMBSZ1H2FA249V15NWF1EQ0", + "title": "Northland - Whangarei Heads LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Northland region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./AX30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./AX31_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["licensor", "host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "northland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Whangarei Heads", + "extent": { + "spatial": { "bbox": [[174.3531843, -35.9079461, 174.6223831, -35.7132637]] }, + "temporal": { "interval": [["2016-11-20T11:00:00Z", "2016-11-21T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12203751c44d888c83e1c6d4904578ef84dfbe10107641b40fbfd669ec6e08c29699", + "file:size": 22626 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/balclutha_2020/dem_1m/2193/collection.json b/stac/otago/balclutha_2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..6fbe9c3b --- /dev/null +++ b/stac/otago/balclutha_2020/dem_1m/2193/collection.json @@ -0,0 +1,65 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPAVJYFD06QZP1ET2GDPKRY", + "title": "Otago - Balclutha LiDAR 1m DEM (2020)", + "description": "Digital Elevation Model within the Otago region captured in 2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Balclutha", + "extent": { + "spatial": { "bbox": [[169.5984967, -46.4456066, 169.9866335, -46.1150135]] }, + "temporal": { "interval": [["2020-01-15T11:00:00Z", "2020-01-17T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a137e1639ca8b9454530c728d902046cbf9081cffb089db9cd4360463e5efe2f", + "file:size": 1430 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/balclutha_2020/dsm_1m/2193/collection.json b/stac/otago/balclutha_2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..5456cc0f --- /dev/null +++ b/stac/otago/balclutha_2020/dsm_1m/2193/collection.json @@ -0,0 +1,65 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPAYDYQY45ZJ2415K2019M6", + "title": "Otago - Balclutha LiDAR 1m DSM (2020)", + "description": "Digital Surface Model within the Otago region captured in 2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Balclutha", + "extent": { + "spatial": { "bbox": [[169.5984967, -46.4456066, 169.9866335, -46.1150135]] }, + "temporal": { "interval": [["2020-01-15T11:00:00Z", "2020-01-17T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a137e1639ca8b9454530c728d902046cbf9081cffb089db9cd4360463e5efe2f", + "file:size": 1430 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/central-otago_2021/dem_1m/2193/collection.json b/stac/otago/central-otago_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..e8751506 --- /dev/null +++ b/stac/otago/central-otago_2021/dem_1m/2193/collection.json @@ -0,0 +1,79 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREQBT1WJ36D6ECVCSY6JN4", + "title": "Otago - Central Otago LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Ministry of Business, Innovation and Employment", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.2729518, -45.7897267, 169.7222606, -45.3350418]] }, + "temporal": { "interval": [["2021-05-21T12:00:00Z", "2021-05-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205bfeb2b89f9bb4e37ee36bae76b25a934ecf0be130c5ef562b4716dbfc2502a6", + "file:size": 5043 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/central-otago_2021/dsm_1m/2193/collection.json b/stac/otago/central-otago_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..38c8aa38 --- /dev/null +++ b/stac/otago/central-otago_2021/dsm_1m/2193/collection.json @@ -0,0 +1,79 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREQGPBT2QQTWBNV6H7Z75V", + "title": "Otago - Central Otago LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE14_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Ministry of Business, Innovation and Employment", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.2729518, -45.7897267, 169.7222606, -45.3350418]] }, + "temporal": { "interval": [["2021-05-21T12:00:00Z", "2021-05-26T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205bfeb2b89f9bb4e37ee36bae76b25a934ecf0be130c5ef562b4716dbfc2502a6", + "file:size": 5043 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/central-otago_2022-2023/dem_1m/2193/collection.json b/stac/otago/central-otago_2022-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..7a251b48 --- /dev/null +++ b/stac/otago/central-otago_2022-2023/dem_1m/2193/collection.json @@ -0,0 +1,184 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFNK136A69MSBMY92NFSBW", + "title": "Otago - Central Otago LiDAR 1m DEM (2022-2023)", + "description": "Digital Elevation Model within the Otago region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.0452978, -45.532782, 170.1155572, -44.5604602]] }, + "temporal": { "interval": [["2022-06-21T12:00:00Z", "2023-01-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220692863e1c6a729b2ae895812ab38479c55d159b2d84eece16e417def901d6acc", + "file:size": 19820 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/central-otago_2022-2023/dsm_1m/2193/collection.json b/stac/otago/central-otago_2022-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..c92455b1 --- /dev/null +++ b/stac/otago/central-otago_2022-2023/dsm_1m/2193/collection.json @@ -0,0 +1,184 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFTTRBW9MXRR7AMRJW40FZ", + "title": "Otago - Central Otago LiDAR 1m DSM (2022-2023)", + "description": "Digital Surface Model within the Otago region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CA15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Central Otago", + "extent": { + "spatial": { "bbox": [[169.0452978, -45.532782, 170.1155572, -44.5604602]] }, + "temporal": { "interval": [["2022-06-21T12:00:00Z", "2023-01-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220692863e1c6a729b2ae895812ab38479c55d159b2d84eece16e417def901d6acc", + "file:size": 19820 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json b/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..9cace5c0 --- /dev/null +++ b/stac/otago/coastal-catchments_2021/dem_1m/2193/collection.json @@ -0,0 +1,228 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPPAZB4TE3R6J7DHH1M9EBE", + "title": "Otago - Coastal Catchments LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Coastal Catchments", + "extent": { + "spatial": { "bbox": [[169.1442885, -46.691381, 171.2058988, -44.8508836]] }, + "temporal": { "interval": [["2021-06-24T12:00:00Z", "2021-09-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220228cb7b22ba37af6fd142598575bacc15a3d89fa16dc7f2f66d7f99af09a4eba", + "file:size": 1063000 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json b/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..018e573e --- /dev/null +++ b/stac/otago/coastal-catchments_2021/dsm_1m/2193/collection.json @@ -0,0 +1,228 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPPCBF1ARC4AH4Y7P6V2QJS", + "title": "Otago - Coastal Catchments LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CG14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CH13_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Coastal Catchments", + "extent": { + "spatial": { "bbox": [[169.1442885, -46.691381, 171.2058988, -44.8508836]] }, + "temporal": { "interval": [["2021-06-24T12:00:00Z", "2021-09-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ed9279caa564fccb22f68db5a62397f3b02dc6ce270b2594f46d0d4e422eb5c8", + "file:size": 194267 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json b/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..397cbe6b --- /dev/null +++ b/stac/otago/dunedin-and-mosgiel_2021/dem_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPFHPNGDENDH1YCPNXVYP42", + "title": "Otago - Dunedin and Mosgiel LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Dunedin and Mosgiel", + "extent": { + "spatial": { "bbox": [[170.3063778, -45.9445839, 170.5595063, -45.8095509]] }, + "temporal": { "interval": [["2021-06-23T12:00:00Z", "2021-06-23T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12201e8262a6357b4ab5a085b00e950e98a3a4eaeaa6982a818b807b8b03e920a20e", + "file:size": 10000 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json b/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..4d26d050 --- /dev/null +++ b/stac/otago/dunedin-and-mosgiel_2021/dsm_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPFMCE4RDF6BR8YZNVDT2TV", + "title": "Otago - Dunedin and Mosgiel LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0403.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Dunedin and Mosgiel", + "extent": { + "spatial": { "bbox": [[170.3063778, -45.9445839, 170.5595063, -45.8095509]] }, + "temporal": { "interval": [["2021-06-23T12:00:00Z", "2021-06-23T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122000449178693c1d1702bb5a46023998b8e04196064e41429e6000071c32e4c154", + "file:size": 2149 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/otago_2016/dem_1m/2193/collection.json b/stac/otago/otago_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..34413658 --- /dev/null +++ b/stac/otago/otago_2016/dem_1m/2193/collection.json @@ -0,0 +1,200 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMB8PDN1QVY92SWQN9CKMYQ", + "title": "Otago LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Otago region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[168.8244481, -46.4456066, 171.2058988, -44.6725407]] }, + "temporal": { "interval": [["2016-03-01T11:00:00Z", "2016-04-09T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122022935f6f6bcda5ddde62fd60522f7e4815423a2b910d3b974bf23b920a9cdbfe", + "file:size": 25400 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/otago_2016/dsm_1m/2193/collection.json b/stac/otago/otago_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..05fd9d49 --- /dev/null +++ b/stac/otago/otago_2016/dsm_1m/2193/collection.json @@ -0,0 +1,200 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMB8SCQQRJ98W6CG5WFP32E", + "title": "Otago LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Otago region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC13_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CC17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CC18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CC19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CD15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CD16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CD17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CD18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CE16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./CE17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CF15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CF16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CG15_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[168.8244481, -46.4456066, 171.2058988, -44.6725407]] }, + "temporal": { "interval": [["2016-03-01T11:00:00Z", "2016-04-09T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bd5a570ccc5a1f05bddb6b88ad196b48ee87442e7453cc35941ceb2c1331ce5d", + "file:size": 24585 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/queenstown_2016/dem_1m/2193/collection.json b/stac/otago/queenstown_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..906c3e74 --- /dev/null +++ b/stac/otago/queenstown_2016/dem_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMAFJ2C1TGPNP15QVVT42JX", + "title": "Otago - Queenstown LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Otago region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1811534, 168.9551722, -44.9134657]] }, + "temporal": { "interval": [["2016-02-29T11:00:00Z", "2016-04-20T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12200e1d70f0e3437b9a59d97512c0fd85413317f9fe446d2500dd0d086e6bf9402b", + "file:size": 4878 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/queenstown_2016/dsm_1m/2193/collection.json b/stac/otago/queenstown_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f3288a5c --- /dev/null +++ b/stac/otago/queenstown_2016/dsm_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMAFJ28VVXF5YW2YMYKKSZJ", + "title": "Otago - Queenstown LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Otago region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./CC12_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Otago Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1811534, 168.9551722, -44.9134657]] }, + "temporal": { "interval": [["2016-02-29T11:00:00Z", "2016-04-20T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f8c6d345c146bdf3c2bca418df6a77e70ce81f9b9c06cbc4252b21752dff3cd8", + "file:size": 5087 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/queenstown_2021/dem_1m/2193/collection.json b/stac/otago/queenstown_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..54acd93d --- /dev/null +++ b/stac/otago/queenstown_2021/dem_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPF4VXXV8BACCZ4TRQ1R7EZ", + "title": "Otago - Queenstown LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1165141, 168.8945028, -44.9157948]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220242522ab01254958de58092c4463c5ceb17d7c5f1fa2ef9ecbc3c071dda2ebef", + "file:size": 5077 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/queenstown_2021/dsm_1m/2193/collection.json b/stac/otago/queenstown_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a0845f08 --- /dev/null +++ b/stac/otago/queenstown_2021/dsm_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPF571HHNWJVZ26NE0ZZPRC", + "title": "Otago - Queenstown LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Otago region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CB11_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./CC11_10000_0204.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Queenstown", + "extent": { + "spatial": { "bbox": [[168.5763338, -45.1165141, 168.8945028, -44.9157948]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220458d0723ed665cd18ce2d6f35936ad93f54d9d84630ca09c23a9243a5708e6fc", + "file:size": 5075 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json b/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..ecfcbc99 --- /dev/null +++ b/stac/otago/wanaka_2022-2023/dem_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPR199Z9PGVWE9EGEX5BBS2", + "title": "Otago - Wanaka LiDAR 1m DEM (2022-2023)", + "description": "Digital Elevation Model within the Otago region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wanaka", + "extent": { + "spatial": { "bbox": [[169.0896929, -44.8099309, 169.3439075, -44.5472619]] }, + "temporal": { "interval": [["2022-11-26T11:00:00Z", "2023-01-10T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209e03aa3f97b6c3b9c3d3025b0e1ab48f1ba400a80ae3be7fa52371b56fdca728", + "file:size": 3756 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json b/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..d5a3e157 --- /dev/null +++ b/stac/otago/wanaka_2022-2023/dsm_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPR1X9BX2QNGS1NDVB8K0KN", + "title": "Otago - Wanaka LiDAR 1m DSM (2022-2023)", + "description": "Digital Surface Model within the Otago region captured in 2022-2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./CA12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CA13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./CB12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./CB13_10000_0202.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Queenstown-Lakes District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "otago", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wanaka", + "extent": { + "spatial": { "bbox": [[169.0896929, -44.8099309, 169.3439075, -44.5472619]] }, + "temporal": { "interval": [["2022-11-26T11:00:00Z", "2023-01-10T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209e03aa3f97b6c3b9c3d3025b0e1ab48f1ba400a80ae3be7fa52371b56fdca728", + "file:size": 3756 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/southland/southland_2020-2023/dem_1m/2193/collection.json b/stac/southland/southland_2020-2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..3da272db --- /dev/null +++ b/stac/southland/southland_2020-2023/dem_1m/2193/collection.json @@ -0,0 +1,4032 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJ3ZRPRD0NY2406V2C47MR", + "title": "Southland LiDAR 1m DEM (2020-2024)", + "description": "Digital Elevation Model within the Southland region captured in 2020-2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./CB08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122087924cfce13151f01ceded1db2546c56e2a5177faa8cd492c2d58cbd70b4a4e0" + }, + { + "href": "./CB08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220102761ded07d96b485292f52bd6db68da4ee76df1b193ec41bd1526f3299c7c1" + }, + { + "href": "./CB08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007d995fb6153f2008bf614c376498082e680addb2b75ce0a1370b104a6eb89f7" + }, + { + "href": "./CB08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e76fe9a29aa5f531c45fa3d321842fb6e7433c42dad9adb358328692094fda29" + }, + { + "href": "./CB08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207436dad9f7a021a787acad69ff718e5637e60eb5fd64304a046273315a2bafc6" + }, + { + "href": "./CB08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbc969d576549b528eea5d5a1198368e73e461ac224f2672acaedf537b60eced" + }, + { + "href": "./CB08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3f4580aa2d4f0d3bd27d3249e1b840aed47f7fc396b0d831642904a71d2ccf3" + }, + { + "href": "./CB08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0393f976cee1ba7c6543b3e10116cb99496c7a7859c9a28012f2de9a5d127a3" + }, + { + "href": "./CB08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc015a904fe37192ed014d3108dd9baf2b65ddf7ca0204e5d27c0e0768dc846c" + }, + { + "href": "./CB08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f12f506efeece2b42143d86c3e96c63c9c7e7894ad92a0a8ea0d89c4f1e967dc" + }, + { + "href": "./CB08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e46f15dd2b94c8cfc2a84e1bbc3058b3bef6da5fc55dbb1172d23a31d49ee008" + }, + { + "href": "./CB08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fbe559ff5b0b2a99f9180ba24184f08d317f3663898b4b6726bcd2f17c6c23dd" + }, + { + "href": "./CB09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220348463b4bef1002fa2ae5ec095a8f9313d0e15e6955ad4eeb08fb1c487ccd094" + }, + { + "href": "./CB09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220523d0d288f001ba8a017b4fbf61f473aee46742a766e5181778ee8106e7bbda4" + }, + { + "href": "./CB09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220776bc2f319e4ba27048053197ae3f8acae51dae016854d91c0e7e563225350c9" + }, + { + "href": "./CB09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094a6017020b821b199a8ed05bd524d17a9c04a32184ae4ed628e3454686d61cf" + }, + { + "href": "./CB09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220789230a1795e3fd32a79b00871b2d5b6d97bee5b028f8096a2f4d1fce95a9864" + }, + { + "href": "./CB09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e5a9dd90b2c35390ef3b96843a3a3bfca3cde1ca9694def8370fd8e0ccfcfd4" + }, + { + "href": "./CB09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000726ffdbeee870106e197e55e220d1d0a2570dfbcab800da6548229e79b95d5" + }, + { + "href": "./CB09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aede567738879eb60ffe258d25637d6aa02b72f0a87accf6af31ad145b30a3bd" + }, + { + "href": "./CB09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201073b536b704307d095fab77f28f5c1dc3f0bcb3ca6d16faeb4da1d7bc806e94" + }, + { + "href": "./CB09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cadcd6a8249fbb090054f86abef1b41a3b775f9b7ddcacac0688144b6f106dc5" + }, + { + "href": "./CB09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208536be1f2c7a653a7c296b2bc5ba4cf0bf86743aecc879abe6b33639e080031e" + }, + { + "href": "./CC07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b51cf7fa9c6f19ffb9368dcfcce2c770a0d33d9047f1980978794b18f59c972" + }, + { + "href": "./CC07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8662711c3fbd4305832388c672361e2b0b00d843b969c94bdff508906bcc4d6" + }, + { + "href": "./CC07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e0d6fe01bf7cea7256688ae419a65637a9d35b937b7e3bb39fee7b14d145ed7" + }, + { + "href": "./CC07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0d45f39724157c61f2194ee00569c3c917af33d161de10a58d88fd7a09e3874" + }, + { + "href": "./CC07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203906971d9c9f4f8ef9c7c99e55fc7a180fad3d66baa6b2eba1ac1668ff7c5ad8" + }, + { + "href": "./CC07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004407b3925fbe4f128471df0e95aabc6cd8a26b2d5c22e2917410d2e0bf5dbc6" + }, + { + "href": "./CC07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007ccced3da1e048ed1d71aea408c6b1e53b060d46fc4ab014f7b169017431fd6" + }, + { + "href": "./CC07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c36151936bedcaeea494e78d5d5cfad5c480281cef2cb1965dfd3a7a8ea5fbe" + }, + { + "href": "./CC07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207673e92e710746c2ae2f28ae1c10ab66f923049f022711be28be6619a098520e" + }, + { + "href": "./CC07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a8066a21abbdc5975739ad8c66fc5c444e83533865ff38d500e36c3fabee1774" + }, + { + "href": "./CC07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220052af5c357052dca33b4ff61a620365aa08feebcd7aafc3e1ac9b873fc993b14" + }, + { + "href": "./CC07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220022e5f8d93be43de4e88582327e29e5072ade14018fbb09dc5e87430416b68a9" + }, + { + "href": "./CC07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048f810e0d137ae85c5bf27b55d52021a762171ca88e10ff06db1cb53b867a2d8" + }, + { + "href": "./CC07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d5f2e24c1b7d6a300509078f16558be2046a238818dd72f6302cd04bcb985e8" + }, + { + "href": "./CC07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063004f2a3c6c45e0bee10f46ee87d955fb10cb728d37db821f09a4a807efe3ef" + }, + { + "href": "./CC07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220641c2c312535dd43712975113d9cc4855677ee166db4e8fc77654fdcef74ee37" + }, + { + "href": "./CC08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6240b78a46a953a4731d8e774fbb125d5ddb2e44e38a2b15042a5abb792166d" + }, + { + "href": "./CC08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffc0109a2cb61c9d8ed648f1c9da6c271123ec6ac084b4ce6c31cefa4b01dffb" + }, + { + "href": "./CC08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220572ca4aafee1c7c40abcd352d8b8703f1542c68299ab9e9bcaf03dee48393c8b" + }, + { + "href": "./CC08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206977c438bfaac34eb72947b82280262d3a286aa0bca93d407524993a099faf61" + }, + { + "href": "./CC08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff12be9909295e434b169cfbcc0c942ec6b005f642ef13c2749d09f0dd8f1cf6" + }, + { + "href": "./CC08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d21374c6bc126cea848a5b756caeeb79c4c902d437cfd7722834e84ed20d1188" + }, + { + "href": "./CC08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c6db90e5add63bc06345a6ebe3aac5907fdd064a537e461e09b0785a5924269" + }, + { + "href": "./CC08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec64d9f39025a8f9ebe53e015b7ca9b1403e015ea71076bfea13f36cd6551546" + }, + { + "href": "./CC08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a245e181fd37d4c49c3498b2c3f38c8adbc911a964cc7b8d8efac89fb4253f3" + }, + { + "href": "./CC08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b871602800dcacbffe6d7c6556700f4eb8239a2b3d151146ee19d95090fba88" + }, + { + "href": "./CC08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de761ce49533d7a981bb3dfa83207ca44440df7131f8a55343ae419de1eec7ae" + }, + { + "href": "./CC08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220158fe6bdbb33d534b0e9907a2bb56a98cbb7516d4c79766977e33efe3009226e" + }, + { + "href": "./CC08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122002a5f7a6d3e05f837228224bc6ac5571beab1fc7cfcaaccd59c55f67362297f9" + }, + { + "href": "./CC08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc27bae303ef242949a3c7eb56b8f76811572faadeca88595b0467525a25d870" + }, + { + "href": "./CC08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122051a7ecae9ffc9e94af0fea2facbf80281983a82e221079e688921472333d0560" + }, + { + "href": "./CC08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220405887a972c6fd1c90101d9071d996e4b7f7965e67989f20d805b04831ec5a5b" + }, + { + "href": "./CC08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b43e0f906c99c1706c7f93e308ca312263d4f7b746cbfcfdf12b9cd875f4b4cf" + }, + { + "href": "./CC08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122054d17a1279897da4a70b3fe575b642cb0d8333a1955772c580eb7e8a5733135a" + }, + { + "href": "./CC08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220357ada1b1cc57ad5e0e464650830593e14d409fe790712e99ac27486e42c1131" + }, + { + "href": "./CC08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4c5c6d8cdbd48c8ac9058261139da6879979dd76029907fc0425895cbd7af03" + }, + { + "href": "./CC08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b7fdcab45da5e7174bbddbc5057ece7f5065e7b278cebcf41e3a5efb0974ed55" + }, + { + "href": "./CC08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec10a2ce92b743a41f9c5b09c5454118b58ef559304fad793a69483a9ef603a5" + }, + { + "href": "./CC08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220838da65206d90618101df19bd1db8c574efe71dc9d934ea555348f31a0606a7d" + }, + { + "href": "./CC08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220211485c2989578842bd55c6c364dca85ac2f8ad1ab0b08528147f3e6f042b545" + }, + { + "href": "./CC08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220695ed3cc3e10106ae4ddfb83c5734b54da82d044fb474c557cbd0a3d1f19de9e" + }, + { + "href": "./CC09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205845237c7cd1de4aaa67f924e8db974fa6d92add14937aa43f6d7386ea19b140" + }, + { + "href": "./CC09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4575758accd99da694681512c44333d9cc581c3c7692cfbe583e99dfc124814" + }, + { + "href": "./CC09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201822399fc48bcafd52cc32d795ca438dcdb2484f8187e99c32979553b05f933f" + }, + { + "href": "./CC09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e662890f42bafb3489cf5d94b0301502b9849b02183115b939015db562db526c" + }, + { + "href": "./CC09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065926e681ddd4360be60f73d48e57e27157f356422fb9e265d555b496609c2e0" + }, + { + "href": "./CC09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0ef7077990031208b0e36857083d84d23cb4cc52d39ec1cc2ddd3b0d611c044" + }, + { + "href": "./CC09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220634a0c89fab6216db9e343e13a69de7373ee1573c4586dae21106c7f50ce9377" + }, + { + "href": "./CC09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a58344a5f1e240206c42ecb8c29a003138f8fabe73aebcc9cc169aa3a082541" + }, + { + "href": "./CC09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204abf0f000ab9bb9a5fbc58ebf93ee2fca247c6594845cca3a007e12a881ccfe3" + }, + { + "href": "./CC09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d753e4c914956ea80bb7f8ce867982f73834e8109ef071e599f3d71df6536b5" + }, + { + "href": "./CC09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083f0b2306a9f531bd2abeda6a7003729a00e53ec6684db189a95c4f30fe0abc1" + }, + { + "href": "./CC09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a643c192cbf5fcb8eb16650bbe077b773fefa0008a28ca0546a16394e74b79c1" + }, + { + "href": "./CC09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da0e7a21513152d10b188d288cf02035b913abb124bffdb4091a8486f6d8029d" + }, + { + "href": "./CC09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220294cb8d9090bba68f1bf26bf1233e118d664f39e5a7ff58322418d2f69cefb5a" + }, + { + "href": "./CC09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddfbd65fbd2409604d84eaac9475644de7c68daf9b3971b642c4e64f058a545c" + }, + { + "href": "./CC09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207cca5aaa09772ecc088244cfe10325ba0f19d588989988fd02d632934f3f6941" + }, + { + "href": "./CC09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c19b18b27ee773f7e3e8ea32a639c5107cd41e1a19d24cb87042de603f8f73d" + }, + { + "href": "./CC09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea645ae6e1238b0d2c5c64a8a17215f293238c1e53ccf8c288f7016fc353d999" + }, + { + "href": "./CC09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be86c6eaa5ca0d3c9e3cc8374b76be5d19dedc723e3f86e77d7ef7145d5af3eb" + }, + { + "href": "./CC09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad34c3f01da216c5f91b270332f38eb64643172d625e28ddd706433bbf352eb2" + }, + { + "href": "./CC09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c3afb81303e6902a6e5eb5c2380f872aed85f6e3bc21ac4707cdbaf74970ea7" + }, + { + "href": "./CC09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028e80a27ea210f9fbfd17c7de48be9dcbfe0cafc626e66d2d116ab66f1e252a7" + }, + { + "href": "./CC09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fdf2a6bd510b5d693eaa3cc3036e7b0c6a5bc5d629f1ee1c140a94a3e45a6913" + }, + { + "href": "./CC09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201122e81c2307bf034fd20b2ba55577e17906c846be86140887dfa3a9560f2258" + }, + { + "href": "./CC09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cc96e6b4169d4f38a2abd5a529a00ed617947ef4a054f13734b8807f2f68bcae" + }, + { + "href": "./CC10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c55d8f454dbc1f6a560712007ddeca05602f8f327004d807484d2034559c0d13" + }, + { + "href": "./CC10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202df8881237bb49a2c7b81b57b4bb8bc16571d8c05c223103aa459c60e3a0d120" + }, + { + "href": "./CC10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011a69ed8bdd5ea157279b4dae863afd799e05bac4fb7c00e67acb986792d027c" + }, + { + "href": "./CC10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b96d172647880e1f4785be93e7b3d7f0fa702ceab7a34b6ebd75e7bf3bbca151" + }, + { + "href": "./CC10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d098cdeaf3c2b727ce3fadb546af5bc9b55b92f65e73effdfc2dcbb52eb0b871" + }, + { + "href": "./CC10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5c3c87127fbc61fc55629eb0651e5bea274e399eeb529069c37e550de0c120f" + }, + { + "href": "./CC11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a63cd9934b50e34f46beff5e83243ed60683c3fed420dcc40feedda13d0096f" + }, + { + "href": "./CC11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f998f75b3ea90f3d95cfe20b599a4f80bcf7b9c919613d1271a451705f09f74a" + }, + { + "href": "./CC11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7f9d48a4095710609deb60cb2ed171800ebbcf07ad4d469724ac06e1f86d94e" + }, + { + "href": "./CC12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e2a34439380f35d9d7bbcfbd163f436449331a7328239089eef527a96d552c8" + }, + { + "href": "./CC12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200576c167df7864ce4144ca7bff9528536337f73d4f5e82bb2d1ad2197d23457e" + }, + { + "href": "./CD06_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa6c94ccf06c21fc4fc6db85c5dce7d862b54a0bae673b31d620e486ff034a55" + }, + { + "href": "./CD06_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eac46d5111c46312de932c06383138ae466a5810cbd045e77a55c0035db325eb" + }, + { + "href": "./CD06_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fcb2a0ffedd51d59ec891371e5a4d4dfec032afa70da46782e49d00157b276a" + }, + { + "href": "./CD06_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d64bf80a118e6b7fa520bc1a22c751d7275e23695e401142a9eddc773d527d0" + }, + { + "href": "./CD06_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1714523fc6f894a346813f526b6692c1a1d05acf73803643083873ed7fe969d" + }, + { + "href": "./CD07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122029552654fc1c05a215c7013fc5c373d1fa95508256f0fc3d10766d82f9dc5d32" + }, + { + "href": "./CD07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091b3154382f659716e2fb32055fd8c8854f7bb5f2fa5e5dce7839e8a9524551a" + }, + { + "href": "./CD07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206291bfe3d71c4f46447d7883dee02286c06fee121c35d1277d7b58ea471e5bf4" + }, + { + "href": "./CD07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208741c517299d5e8b10f4ec7402bbb3d4810725255b485d327d3c049986ffd98b" + }, + { + "href": "./CD07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7fea3c314a17da059720d3d89f6f00361de9a67ff1e34217e2cf72aaebad5f6" + }, + { + "href": "./CD07_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069f4550f150b44af7ff90b04ace43b42daa6ebfd50fefe25fec0223f6928556e" + }, + { + "href": "./CD07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220281e5bc5cbbe76f56c03548da52ebcf382d8d3c18fa528b852797912a670440c" + }, + { + "href": "./CD07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f94eb6799e937dc079aed8b1efd0af9d15987baafbe0d4cdb88144b2355f9e60" + }, + { + "href": "./CD07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220106d51a48c4827d6674134849b6d5273376c34b0ea36ab0a7af2d13412400394" + }, + { + "href": "./CD07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028ac0a842eb524d2d09a0a90144617a512ad2d548e852a07db0b678436193be4" + }, + { + "href": "./CD07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dd42f78e03135dd82332029852a7692f2125950ed295a7a8d7ab269086f40530" + }, + { + "href": "./CD07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c45adaa817dd362640adf6892375c41beb1ba241abe87ae95421220daf4f2e2" + }, + { + "href": "./CD07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122009a127345e1c07d1ecf298a241910bc1dfd099cd45887e6313a6ccb19e26b6d2" + }, + { + "href": "./CD07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0174876cd980d4d383cca0fafd117e5f465cbd5bfea8d78796dc6dc06e8c09b" + }, + { + "href": "./CD07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f771fca2e7a6c1a7d129f51ac17e56b03c5277a2eb1bc3fa590f7387767e1d4" + }, + { + "href": "./CD07_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e45e014fbca88678b417ce67b815f85794d71894eca153577c9a591a01a6070" + }, + { + "href": "./CD07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d41c24a3511c127d68add90e9e6e9801ffe36202e7c1f5a3140ad3b7a6331dcc" + }, + { + "href": "./CD07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7ab46c3d62a6ca53273c6daaf6cf49b595ff76506f7981e147c1cc7f9e62996" + }, + { + "href": "./CD07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209641c94be1814123864b3cb2a623c16a79df1b627316ddced85ac95fc659a751" + }, + { + "href": "./CD07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f28bfce4015a8cec2c4f691c487c6a060afb9c98aba7e0ff44ea2ab7dd96bb98" + }, + { + "href": "./CD07_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064bc9620e7fcf06ad5d2c2fcc59f785e0199736655ccdabb1e77d52533096e77" + }, + { + "href": "./CD07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208cca2ecdb29467593849037a0537c4437619829162909b9ac2e349844065d73c" + }, + { + "href": "./CD07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f5b8d62559be71ace06f728b2cdac685dd300168a3eeabc9dc0d561087e7ad8" + }, + { + "href": "./CD07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3d777f74b7c4ef87d9cb5398f3c8ced4eb0c5e00d1710a086462d80850a472b" + }, + { + "href": "./CD07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab5cd7b16b25795ea4dfe58914b409c554c464e648bb84f59cb8e82711952f22" + }, + { + "href": "./CD08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220543fb7113bb805e8ee8c11eda111d190260725bb7f97f8864fba5fd9e40ab947" + }, + { + "href": "./CD08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220653a256377fd3dec4229cc9d48a172bcd72be6940feacf00521b0057dd0b3388" + }, + { + "href": "./CD08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206997fed12f4329759de11a213b8d35c8bb2dd24209f4ed8fb93f31399e8ac3f4" + }, + { + "href": "./CD08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084939c81c6472cae8457bdfe34a3a9b96b36edf67751e0373854f7d2048e4d41" + }, + { + "href": "./CD08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c662f7ca61e1e60b51c126bc7cb8417b22152c51aa02a618a66c65bb0d16bfd4" + }, + { + "href": "./CD08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052dbe766b897a2ca7a7816ce2da293db099d122ef935c3e6dc5c9c652c7bf3d2" + }, + { + "href": "./CD08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220819174056d4e5a91ced07bf97c493b56a40cc592ab82d5ec3bf530e143aba285" + }, + { + "href": "./CD08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f756ba5a449974af522e7fd101fd8716dca2cdb5954142ad5e0c12bfea0dafa" + }, + { + "href": "./CD08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075550306b05359375126d5aa3574212e115ba90d5db63fa3ee439d403acfaa74" + }, + { + "href": "./CD08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220605f8a0c02245f6ba1e9d3382811793a6d249f88a22547a2088a2fdee3d53aae" + }, + { + "href": "./CD08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201922997f82c88b2dc5200d5e0de5588922fec29171661e46c836fb2f3a0cdb74" + }, + { + "href": "./CD08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b50d1b47c6a85d8f336b812ef9fd2e744607ed2ab7da5aab520de286b923237" + }, + { + "href": "./CD08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b12e861ef8f9efe71db2a2bf96fe0b367163afe5b616bcfa3d4d8b2560976ce8" + }, + { + "href": "./CD08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c53f972ec7df819e955e410cf050e2dcb4fd390b706ec5a868cc69373f93f040" + }, + { + "href": "./CD08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202bec7a95000fc0a6f0e937eda7d9be71cca789f52f5b60157b25cbd803ba37c6" + }, + { + "href": "./CD08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220794a134ed03a9df2bb9ba3e97bf970f2eec4ac495d6a669c05b89576ae35fb6f" + }, + { + "href": "./CD08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220caa8b8dc17ce31cf1fd95a69adc1fba4153e004da8f41a5d4a1a5e930f1805e8" + }, + { + "href": "./CD08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f487c2d87d5995e82e5466b2c43b1dee0521daf1f7349cb7e1a2c717b9dde37d" + }, + { + "href": "./CD08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff6b41938320fa4502cfbdc4c0a033b05d6012af9c2e6dc79848b109eb903300" + }, + { + "href": "./CD08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057c1d4e70e9263d1b88465cd70811648d6f4a29ed81d1d27e5f60e9d525f28b0" + }, + { + "href": "./CD08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c72dc92d295a1aee8516a87f6e421bc588c76d9823f1a08556ef8f2e7f1dcdf8" + }, + { + "href": "./CD08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b01ce044fc9269371086cb2d39d0fb790587e8e607a1d3f5cf7a60cf1c8a669" + }, + { + "href": "./CD08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f545b837f0d109cf9aee3dd757fcb9d948ca63f5564a107a2afcea54ebddcb15" + }, + { + "href": "./CD08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011bc101773a929f4eedecb6e094bb46f36eae98b4d0f8e9ae4b3054add7e1cdf" + }, + { + "href": "./CD08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122037d1efcc491d50ca9b3a9160f7099703b0be8b8c078c44f3893834da3a1e35f9" + }, + { + "href": "./CD09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122020d544ed0d874ed1a2f686ef59b18398e1311da6769db9588d52752452daf199" + }, + { + "href": "./CD09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200ccc5b4dc7a11ce7d84fb301c1b66809ea552d0d686357047dcd73247ba68d95" + }, + { + "href": "./CD09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c78f2e489c15c68fd474a2a5bb579e8a2f90a17e2d43da597a4a7b86b6cefcf9" + }, + { + "href": "./CD09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220086612a6c2faf8cdd13482e256091a11481ae0e9cf52610c26034c5f387252a5" + }, + { + "href": "./CD09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f98732f176517bf6328a9e9b76ff5f9651ac7eb839f02a2a84c0ec25c3daeb2" + }, + { + "href": "./CD09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204edd0d5431f25ddff6996247e1c9a64fc457a2a046cdeba4887b79956f88b7c2" + }, + { + "href": "./CD09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cbdf80fe11e07a176d73db6d01f6ff1774a831865ebfba51044d5964bece7626" + }, + { + "href": "./CD09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cae3e819e6b2ad2c68a5450d7b3aff7fa808c011b4232348fd1faea09a5e093b" + }, + { + "href": "./CD09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1ae4bdc4d5f36b9a35e0e28407bc82701aeb2794907ca3398a66f16d82076b1" + }, + { + "href": "./CD09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b38cec37bed1a30db3deddae5693d02f3a55099253f4a22f0c92999e3f37449" + }, + { + "href": "./CD09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d53687db926543852f0d6fa56a3c13ad4091958dabc6d5f7eaea0f592bb9f684" + }, + { + "href": "./CD09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd0e4720b1f1c4fe7d5b40f758c95fc56fcd37c0e6d76b2657bc7591c06f95a3" + }, + { + "href": "./CD09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208de1505fc5b12a7a27cf571d60f6dafe4bdd51a0a46f0aab0bbf1197f6b28efc" + }, + { + "href": "./CD09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d21382b22c8f90a64d4b821033ac02def01d5d2ad04d76c0dd43e9081320bba7" + }, + { + "href": "./CD09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a316c27dc85fecd25422b6af5615c037fc8389095bc853cc536fecd6f31f8f0" + }, + { + "href": "./CD09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ffb7200ce79d0644146541cd0b3f9bbda153454cdf272b06e038c4ec97d15e8" + }, + { + "href": "./CD09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d69705381a694904c6876b7d324c34317ccd30ebf811a138902d37c77a57f61" + }, + { + "href": "./CD09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220828d8cf8d7ee2ee9e84d0cbb516f59d183e29992f61b635cef235e31a995edb7" + }, + { + "href": "./CD09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db9c3bd8a77c5c8402dc7509fdf796e6c32c0d6b190d5c84f2f2c9bd5c6ab739" + }, + { + "href": "./CD09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8457fc9ea8a25f4fd3347985ff57f37d7ff62c2a0c3fb3aa750d47b53e08a72" + }, + { + "href": "./CD09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0b5c4e0dbc7e6bfe1a66bd8e6162c383481f95203289014eb2a37039f7d27aa" + }, + { + "href": "./CD09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0bf0d56f9dbb3541f88aeefb64333ab7b4b91e8a335658ba55562fb1b68dca3" + }, + { + "href": "./CD09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9a366708714469b61e16e8a67e65a6617d865f5ad406a4f55a9c783db9ebfeb" + }, + { + "href": "./CD09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220741e849e633d41cabe7fff8ff36fd6199279977ce8d9bd8df915050b08f332ab" + }, + { + "href": "./CD09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207dbe46bb812cd33d7125e9eebd111fbef348f783ef0affc0bc75286386ac1055" + }, + { + "href": "./CD10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013975b45af32efb1132de100bb5cc173522160ee91e5acd7003ff02e3eaa096e" + }, + { + "href": "./CD10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3998058e7360b1b270349ce0581f422c2e34af147ea3d7cda2509574aaa0321" + }, + { + "href": "./CD10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073aed70245eba84e0a720977b490773d47470d4239751957819b2d5ee045b1a1" + }, + { + "href": "./CD10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d36b1b6b143686e4dc3b45e98c51d93d0c842b2fe3911afe69c84a6a1c22b3ec" + }, + { + "href": "./CD10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207565c79f310d428fbee13539ec0774d5270a0dd2c708424dc5201c1e70596ba5" + }, + { + "href": "./CD10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a66d2d59e00ddbcf4d233b9fc6f8e9473ca2a1733573203781da6cb55e717c4" + }, + { + "href": "./CD10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081a09a8ce1c16a9f4b054b6519b515610e3c25c5dad1fbd0103cfda7113bf050" + }, + { + "href": "./CD10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c65789f8fd7ceec1a4b970d51c0510aaa8bc50a0986e96f897c777b31003d2d0" + }, + { + "href": "./CD10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024f1b72d86158c20f8e4a8af5152a4ee7ab4f9d86d239ac5582ebdfa86790095" + }, + { + "href": "./CD10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220974157a7aa1c8fefa74e16c4a8b25936e4f79fb6e41bb7cb6910909fa1fd217b" + }, + { + "href": "./CD10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079cf4260a2c8d431b9b13bf722fb2182806ad1af05f0d225ee86fb6096c42f01" + }, + { + "href": "./CD10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220070187e1adbedf778fd222176f3c48827800d7280f3a8464c631a1461837b050" + }, + { + "href": "./CD10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049c80ab888c90ff86c9f102be9e5c75f94e882e8a446b4163e495d874fadc4fd" + }, + { + "href": "./CD10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f34beefba27961efcf5e83148e82fdf1d6171405a55257bb193befa4b74fd1ba" + }, + { + "href": "./CD10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220195e439ead1870552a86baa30c3bae0af1a6b44f7d3028f1fe49a5d346f7aa6b" + }, + { + "href": "./CD10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ccfdfea22b51729098c7915405483534c9b101bb3bd938f01c909a2524e6478" + }, + { + "href": "./CD10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201674da267eeb26c4d25861e240386e8d645853dba7c07561cd3ef120e4cb47aa" + }, + { + "href": "./CD10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b592755cce673426381f7270d813ca3db2cdad47b3ec03002c50a4bf0ae7ada" + }, + { + "href": "./CD10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abbb835e660bfe8ee30e11df8243d31eb4812ad05711f8dc32940b290ab37d80" + }, + { + "href": "./CD10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200638438e7dcc506ba78e745eaed12303518ead4f8305a49acdcf9e74edbf2c8f" + }, + { + "href": "./CD10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea3511cdbf979c4acd6aacf96750fb8a5451bf9b02e2471eaa83d7d90c438107" + }, + { + "href": "./CD10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd14fc831c9b36715f8f45012dd395048dd22b56ba1c1c422d90ffd0c3dd4ddd" + }, + { + "href": "./CD10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200787ff448bcec4f1cd207c727ad3e70420881589ec3f47c8ca74b94c04f5783e" + }, + { + "href": "./CD10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203141a4f280c9fa52bda613eca30ee9b908375be376a5ae2fcf5c8f4690825d0f" + }, + { + "href": "./CD10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba759e040baa105f52ee1f40b7903041648a9c152ff05a850e7fcbfa25c1d991" + }, + { + "href": "./CD11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122023e7a23ad0472cc35c8079ea705739649d25ea66317e372a35da3dc844e73113" + }, + { + "href": "./CD11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220224f33ab39565b41d3d82a7ed522043b3c57fdd14cd19c1ae3832b52cdb09801" + }, + { + "href": "./CD11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034bc35f32afee6299735b643edbc5c2b30f98072eee1469b9e8102aa764b2109" + }, + { + "href": "./CD11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081ab682f32b3115d4d996434dab7de32ba7b6ed098fc9634b72afce68cfbe27b" + }, + { + "href": "./CD11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220365dc88cdd1a9ab1ee2fbdef5c0c7c0da3016cb7ad8fccf57c22c34ef53b055e" + }, + { + "href": "./CD11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d4c6cbdfd6c8859e35ec7cf9cce47384d3a9cf536a5cf9db51fcc5042b08853" + }, + { + "href": "./CD11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba9b58ed087e70334cb62ddfb5314af9b859c2206fc8c632f679cb32ae0d29e0" + }, + { + "href": "./CD11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2445db0f9492568aff1ec949627bf5ae3a46d35455117d40a05e7a57a603267" + }, + { + "href": "./CD11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9e63472e9417c5afb4764fbea9c45089352f7118f89862b2a3c222012f8cec4" + }, + { + "href": "./CD11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220474ac0e96b38564398fa7ddd9165b22ac7afb49bdf44c3447218a33fd36a094a" + }, + { + "href": "./CD11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac65a7076bcde58c3896c0880ca74993e5c080ce7deb22d612c01fe3360dd2b9" + }, + { + "href": "./CD11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e6769528ce078c3c3f85e4c83e90ef4230da0f0868a71244dbd0950ede0a66ec" + }, + { + "href": "./CD11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206664537261f6b4fb3a9198747eb2f726ffd40c2019ef88d83305608645e08e0a" + }, + { + "href": "./CD11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085e992c3aa73999c1b5f5921d165c8dd16c15d69fde6e540654ca833819a7c44" + }, + { + "href": "./CD11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f14d230ef9494a55598d5795d638b47aded4d15eefe95f8cfb39f9ab317fba1" + }, + { + "href": "./CD11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be6094d3d46445c6ae41efb3d025c3f88d8e0839143625be42ebd1e90a49bf97" + }, + { + "href": "./CD11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220142637b5d9645b7822050fd3924c53893ce5e8126565e0a609a8084e199924dd" + }, + { + "href": "./CD11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004ad6ea255ff5fc883eb8f95ac276bfcddb30ab7b4ef19b8f29b4f64b2ba6dab" + }, + { + "href": "./CD11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e7a115e5a97870aa1c65b0a21f7eb2292d10fd04a2d19f3480de7868c6cb3cb2" + }, + { + "href": "./CD11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f131dd010304a8163825eed43fbee99eda298637df918525933c159eac4f8296" + }, + { + "href": "./CD11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069376d3e04f843dd3f8e5607a4344a25fba77c7c7467de54d62d90f1e6572878" + }, + { + "href": "./CD11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c1f63549d66e9473997aec1f8629b0de4efc3a843b9bb08b166cba346012f2c" + }, + { + "href": "./CD11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5ab23117bd074b142e9be52ef0d968ec097e63652db5fa96b8bc815110b9927" + }, + { + "href": "./CD11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9ded03f8be7ce52058692508b6a515775ce2003c2373cb11b97ab0b08cdbb26" + }, + { + "href": "./CD12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c4d2724c20af35f2b262f4ab52cc7f917f4e5f5711b2e4c98a181f066b61e4a" + }, + { + "href": "./CD12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f47b8412af83ccd944fc32279d1af5eed88bd620da7250e23fccb356a1cae09f" + }, + { + "href": "./CD12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7551fc69577127da1ee978b9c929832c96d521a044ac473fd419c2a8b690b71" + }, + { + "href": "./CD12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220535ada4c5cf47c8ebac8a01ca9efc33eb88c219e8e2c7d5d68d64e609e27f5a4" + }, + { + "href": "./CD12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208214b91b10103f52f600b3b400af85753fb11fd9e8f5d76d0a511f58444ec0ea" + }, + { + "href": "./CD12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083835b99a7ce3316208210fe7cc4c6cd21846b1fdd89191dc224d81b194c307c" + }, + { + "href": "./CD12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a8189771d092e0df060c646f500cd1fcf84d100b16f2314899fe485a97a3c2a" + }, + { + "href": "./CD12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205c1e35e00668955e9bc200d52a10e550209487e083d046343ab21351bad306a1" + }, + { + "href": "./CD12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e80dec8c4f5049e3e83d31231903faf26bd6773eee04b6952a8abb6c6ca6b19c" + }, + { + "href": "./CD12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc8efe31560202d1e6e196c918ccd79dd2067f37bc12c2333bad39f6c7f68c1e" + }, + { + "href": "./CD12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a402a8b1b01a679846906fb9099e7ce65dc284ab6750b6434efe788665fcca37" + }, + { + "href": "./CD12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d0d16bdd4e660c582aa1cf78086c0e65c1a33d4383f42a14b82b2040d38b6b9d" + }, + { + "href": "./CD12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f6c336652a53ec2f7e5410de46624e61fb290ecf2038589ce84eb7260416769" + }, + { + "href": "./CD12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207ada5c28d8437a61eaa489dd181adf97f4dd4f29c8e8fbc5eeed4a55bfc9b1aa" + }, + { + "href": "./CD12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef0af962ae8332a6d7447d47d7036224152c5e46258d28078b3af238f9a5e081" + }, + { + "href": "./CD12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4bfe9699aadaf9c843244dbb42dd2f27bd9b0bcf10918ec033dc4691e9733f1" + }, + { + "href": "./CD12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd4328c9e71b960a53dd4fbc00f40e8690a84501329de7d3ffdc10945c87dea1" + }, + { + "href": "./CD12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3610e434e5f555130ac4265738f89dab10e568cd82c0725737dbfcf22f28268" + }, + { + "href": "./CD12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122074997000c9fcbde89354d6325a0c126ca3aeb31c3a27882b4a090f3890e2bcc5" + }, + { + "href": "./CD12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ed4b67ad07880bf9c1513e6b7849674bf33d4b8e535546ac5e9af735c3b93e0" + }, + { + "href": "./CD12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d36d59659c6799168b25cc23ece6b448c0f464e4bdaa244de95c91d4a839b1d" + }, + { + "href": "./CD12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206601dab82521e6177a83b77c4e2cedfa4e9847f1f54b4227accd2d2b3a8815f3" + }, + { + "href": "./CD12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ccfba2341629cc81bfa69042fdd80dad3907c61ac816c824395e77bfe4ee1fab" + }, + { + "href": "./CD12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba4b81996a61b7bf20ac7e5b0db3e4c555f7eace67429d9eae490f7d2b841a86" + }, + { + "href": "./CD13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e367f5eec4f8bba44fd587af25be17202422efceb29b8557366e39f83755fc86" + }, + { + "href": "./CD13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e5c01bf8791f3254639220f36f7d20c81b8718e348a034e0cb45fbc880bef61" + }, + { + "href": "./CE06_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030bdea42c37d4e124b814766ca8324641405ebf885d50b73f0d10c5bb5fef055" + }, + { + "href": "./CE06_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb42f367f50f9043c0b8cda373251cbdc39d5476b03654a4c5cafbdc7cb16cc6" + }, + { + "href": "./CE07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0c0002158d86aed31a069da01fa504ec4326afb6c41452c2d22788c9afb2f78" + }, + { + "href": "./CE07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220403a4e79bcca90f4edfcb8b280dfacbae061f8aa07cd3206966935ca7d1c8005" + }, + { + "href": "./CE07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203f9e223bf092de552f523dcaf25d8595e1a1199bc34cf8e15367f6b227defa24" + }, + { + "href": "./CE07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f62f01aa32b6f7fc3506e028d3efbe39c649e2dfd1e894d283968048d5732c5" + }, + { + "href": "./CE07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e47e822514d5d1c85c4e2d1a67e0ad340ab2b6b0b0f5ba16d034a415e9468e86" + }, + { + "href": "./CE07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b561cd1ef77301fe32a4db9e48a6ef7d51a7ae59e15996a9772631f181fcc27" + }, + { + "href": "./CE07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207e3508c240ebebdeb4723fbb7c1f252c29fd7f3b596c95863f423fd1ae1432bd" + }, + { + "href": "./CE07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206890bddaabd20aca6d24f37ad737f1b523466b37d3a9b26d9cc1db78cbb57768" + }, + { + "href": "./CE07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7be9ce19395d6f157f11636be094d2d6198ddd7e8f5aa404dbbc3b65b8a36bd" + }, + { + "href": "./CE07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220402aafe548e4b684a1f2e7b0b89b0f6d3599c2dcea202dc61e543dfdf2c74d3f" + }, + { + "href": "./CE07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae050b078ce8a77cd52c3a6b245ec40a3b19ca132305519a31fdb1f2c5825b99" + }, + { + "href": "./CE07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208072d4a8df3ab90622ac1b2a8c815cd8cd51d89ecda5b03b86edfd59d9054bc3" + }, + { + "href": "./CE07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070eb6ae5494f5894dedfa9ca605ab74fce4b75bda4817711acf5ffb22c2650a1" + }, + { + "href": "./CE07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122033171b89993268111cdd527713cf416bd34581f40eb236330fd69d99c1c30443" + }, + { + "href": "./CE08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220837e0c0b6f9fb2d3bfa42033c77a71213467722888f06b1423169ffa95af0668" + }, + { + "href": "./CE08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d6376c531e5a418383535331e1770bdff5536535cfec6f5490b06596486089d" + }, + { + "href": "./CE08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122074d1a1d2a5529bbc6b21c429a40e0d488f501d976c214a4c93c4b3c7ca5cc01d" + }, + { + "href": "./CE08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d7f1d58b2a04672915c38926c560a115e25561d009c005f37290a6617b779d1" + }, + { + "href": "./CE08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091b51f86e7bce208887b4107b83d74d9a24be80c20ee2e323cd95b9977fabb21" + }, + { + "href": "./CE08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3cf6b25688d21dc3362ec580fe94823f5fc17d7e67b4455190493c39ed8a2c5" + }, + { + "href": "./CE08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a9ef7782f018045de2eea698b9280c95cd3c665db68530b067cb68b29a9a50d" + }, + { + "href": "./CE08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208cb6d61779f58444b502d1ea6a1c652304257e1ce9df38a4d0aa07389adcc284" + }, + { + "href": "./CE08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e0a18fd9dfe2acb944bab75b4aa13e44dc2f413658a388f6000e97289b5bd73" + }, + { + "href": "./CE08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209de78b94f53f5a0c20014fcc3f69be27e871a670643b23b4c321b1c2a331c60f" + }, + { + "href": "./CE08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010b4671c79154124c12cdd5573945af78906ef4041e8742baf220cea75fd7e53" + }, + { + "href": "./CE08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a091fc6c07bd7b538fe74ac689874898707876cc0feb6e94b8f2da2ed2cf3fd" + }, + { + "href": "./CE08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006a74b5ea12425afd39210c60c6033c2f9a2703316c18609cb20de22697c0c22" + }, + { + "href": "./CE08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200d43fac311c80862a510cad7af4742bc2d1e377c121b3053f83646399b056d16" + }, + { + "href": "./CE08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084122b2dedba024b2b94bf434701ac30585d58d4d0c6c0a0178595bfe383a274" + }, + { + "href": "./CE08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d64e93d90e7680ef0363d8c2033595c679636affd305d7bdfa7fbe6959c7a0c3" + }, + { + "href": "./CE08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207cbaa71b5f7aab6eca882d9d624ce1f61a2157d6ddc76e9edec5463a04d11f40" + }, + { + "href": "./CE08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbe8a67604886b16a0923e0c76681f6da760e54564be1ad307ff7350676b4872" + }, + { + "href": "./CE08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220690ef35f8b1a4d91a7f77521cd85fd33269bc84ceda47a2969f43a3aa886ea6b" + }, + { + "href": "./CE08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205243c57a73d201686466cf607bd83799628046c358850f2189e213cc31eaaf8e" + }, + { + "href": "./CE08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd8e4d1fbe177c4dc9b703e99e24e790f1c0d8d6140738bf852e544cd8a67fe0" + }, + { + "href": "./CE08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204fcdf4abe62dfac2887cbe6e822085191f5688f49d12d46ee7078149ca8c20cb" + }, + { + "href": "./CE08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220502cdd7c31b416dab821abe6dc17720408344ed63bd79dd1a6b124469f5c26f9" + }, + { + "href": "./CE08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220740928e39b6effc1c194881ad3a72b4ab18c9de7b053d8d650aad78d880eece0" + }, + { + "href": "./CE08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099634f264dbdf655ccd1827fedccfafb9000e46324360c5eeba414a684ecc44c" + }, + { + "href": "./CE09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d8b30e6988780f54a6a3d55d6a240360990fe29304e398cf2940287d6f3ce9a" + }, + { + "href": "./CE09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc5b68a71440b2c33876ecc0129a2db1f9b1269b461652a17089f1c6fe35fee6" + }, + { + "href": "./CE09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046f7a4d133202594a87cd86a30bc9f28b46ab68a182b62c49487fb7df497986c" + }, + { + "href": "./CE09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0187f7059abbc3abcc8c889e2547c681abf471e9cbb8d1e85849fe14cd14e3c" + }, + { + "href": "./CE09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f17b9ba2b529e2105de6f23fdaa4d4837bf71f72a23b7b80fc283ba8eda4110" + }, + { + "href": "./CE09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e5c10556d565759657972d7382e1e40a56962d2c8bd25d18ab221958e5fbd42" + }, + { + "href": "./CE09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f154cec3849d549111d1c0ceff6281905b02b02d1355f5417bf644de5ba17cf7" + }, + { + "href": "./CE09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bb3910d81ea144710fc12fa95d5ba57655f920923a37df79b9e654c714098a5" + }, + { + "href": "./CE09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb14a70bbd846b80f8403be785ac614a8c44069b0614909469de6767d4cdbf42" + }, + { + "href": "./CE09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b71cc8c4ac954efbd204422e38ec92864d2dc92643eab437afe4c0ce77b8caa" + }, + { + "href": "./CE09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea586a584e5a71eda6ea041bd3a798aa9247535813213957bc4350dbc845f23a" + }, + { + "href": "./CE09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f27a67cd30edfa5e800aac08bf882964cb38f15e8e84754e29bcba9d7f803b17" + }, + { + "href": "./CE09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d90405299a285785fce140984bebe174e3ae099c17ec4e326ec8843f5f5a4214" + }, + { + "href": "./CE09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016518dd708c81d419ecfc4c976c2a5dfe8988727d79591d09821ade35d2ff739" + }, + { + "href": "./CE09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220708c4413d4ea56377edc655a987785a77d1f74cde69f79da2d13764ee2ac88b4" + }, + { + "href": "./CE09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220629d66b3b905b75d423045b7eee14795dc6104a1128a3c532381339a2a80dd23" + }, + { + "href": "./CE09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c4681af2406bd502e1bdc5cc6a1ede091b806684816a8223c782f2ce8476b99" + }, + { + "href": "./CE09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d29c2cd8f16be01667e730cd0add741b1418e813a24e17cadf092d38747b110" + }, + { + "href": "./CE09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a82a307bec72a20fa22a4e0347496e9b29f05b2c51eb156a29f7746bc31cf0e" + }, + { + "href": "./CE09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1efcbab68fec313aa4adf12729ddae1aaaa181908d0f118a0af1fb3a5d4838e" + }, + { + "href": "./CE09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f7a80593933953670a8fdf9aded84b267a8fbb6eb7b17502832843582364658" + }, + { + "href": "./CE09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fe68b05ac642b1b9131705ace15bd2ceb905c4e5234abcbc582bc17fd01ca062" + }, + { + "href": "./CE09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202eb25ebf0eaa72a852781eeb61efb2d12ccf513a4fb180f270b7dbca76a8fa55" + }, + { + "href": "./CE09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb68ba027159a61e2d0355ba92a948a549e0383ddcf5b95e103f4528e7e50e21" + }, + { + "href": "./CE09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f578871248d7a40740588bf14104c4261a5eb2728170b8919692d4d4f778e525" + }, + { + "href": "./CE10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef8b78e69116224edad96508c7a1a6fdfeda8b14291c1033d69a056e0597d1d6" + }, + { + "href": "./CE10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a31c19f861ad071f14e936714eda679fe5ea378e88f5554dc4827177690b3fd6" + }, + { + "href": "./CE10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e4b37fb784337eae871bc8c434c78f63819a04c5dd0d931e2aa80029bbbf3c5" + }, + { + "href": "./CE10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da4ce9ba09759cd55fba8fffb38388569dd688fdf992cec15a1205525be30983" + }, + { + "href": "./CE10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e326578d9fe4bd9583095924184c1e6d97559f3a8f1780a9eedf948f089e2c33" + }, + { + "href": "./CE10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e079aacb7e657378afe35bec560a9588074c50b393239a6e25abeb27a3546491" + }, + { + "href": "./CE10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027e3d6a03e68477a70050f38a4c4844dcd66c5179d8b6368683da594322e8e9e" + }, + { + "href": "./CE10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa33e6575feb527edb3aed9cc50a352c6a528627913163b1da1d872791a45357" + }, + { + "href": "./CE10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fbbc3f3e7d781bf5d6d0ccec6d8bf519fe6d1e5a2c40ee2cb6332804bad2a5e" + }, + { + "href": "./CE10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf602cd375a73dbbb83821fcc8ae5f5086f608fa1f8069d1895d9406f14adddf" + }, + { + "href": "./CE10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d4430f1e28d255ce93c00958601036c89f282ff3a34fee032fbe3714c1c3b1e" + }, + { + "href": "./CE10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e626f7a485f376c9bec31d1d1cd402cd0c0d8405db2b159342f461af811ec7df" + }, + { + "href": "./CE10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f7d53fae12b96ef058d61d0de9032694e6c2a71615d78038fd88f33dfb3b423" + }, + { + "href": "./CE10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207bddfafe2bedc519a3f066a47c3d55048b2b5f74ef2aede7db3ae2fac37f8910" + }, + { + "href": "./CE10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006ac5ceae0b6e21c3f0825b2c5b7242fb2f796415490ac7b84ce6c726106988a" + }, + { + "href": "./CE10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220621f01b06ea5fdcb646e58611218631c2df97b07c94d9992ff05731fcfaf6725" + }, + { + "href": "./CE10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011a9a395cc357f85a33e72247709a8dfbffc5819460986509983b501db44c420" + }, + { + "href": "./CE10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc8df2c5696faefba73ee6013a32b450f0a1264371c46a3efbc45325fca485bb" + }, + { + "href": "./CE10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202169c715fe68bc417b48dcdf8c4231aca443e6ea39bd24b96a76617d219d9974" + }, + { + "href": "./CE10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205532756e028c868dec4fdaec38a5932ab9e6af8a2bd39d6f29f866f49f565c85" + }, + { + "href": "./CE10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ac1a70017b3a2797450d3e3ac53712da28df0ea5deac55c559edfb536bbffc2" + }, + { + "href": "./CE10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cade666c29828b73faa9654ce6537b8841df46a3e283e7b565375a0125d1c9f" + }, + { + "href": "./CE10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084afefa4d5e8bc819f0fca095e6c083dafc1f86f426eb09b3736a08b6354e030" + }, + { + "href": "./CE10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e6baa0851935f2c89a2d1146d62618a5f0aea36b12340e8881c0ebcd7d83311" + }, + { + "href": "./CE10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cbeb2da0e172c657e2b27a81b95b44b325aa57643f595d7c4f2a6a5337108dd" + }, + { + "href": "./CE11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d579cbcd9b09ba196aaee7fcee386aa2de780c5a35b917ce0dea35f44baf125" + }, + { + "href": "./CE11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207db3c26410cfc409e80e06b4395d225809c01ae67ae6138dac5a8fc6405fc062" + }, + { + "href": "./CE11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203daf75c9da4dbeb3dba648f5b6518b2e521e09fe6ff562a66a0eded35791e1da" + }, + { + "href": "./CE11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207550bbd882bca70e7266a9402088aaa8154f5f44463a14c8620e0c0cd0bbf790" + }, + { + "href": "./CE11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a2cbd2c0ba782f5c6e99046893f4aeac93d7c4a0c3516820822868f8132836d" + }, + { + "href": "./CE11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220592d231ee58a77e6fe53c27c16e47b8b656723ea9af9cd33ba62bdfa2de6e4cb" + }, + { + "href": "./CE11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aba6698bd68503a4ff0a5f09d6d3819f87c13bb18a6cfb65a2a58f930f0f6b01" + }, + { + "href": "./CE11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d0cf9ab9ba54695068f936a3316c6ed76ccfb3d4f371d5b7cdf9811967992c6" + }, + { + "href": "./CE11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220634099c845608beae284f838aae38650e92d553c9a54e6295b4b537e2e92dfb7" + }, + { + "href": "./CE11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220517ec0f99cab71adf47cbf14848f082b186130e586d42380b94bb0d633e066c0" + }, + { + "href": "./CE11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220462566720fe864a8a7fe83bdfefbe69acd2af8f932e9d4873754b68a6313b870" + }, + { + "href": "./CE11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f3106de44ab503aee9b63089fffd601b243dc052154f983dd513c805e054b4b" + }, + { + "href": "./CE11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf02b289b37891489ef593bb1c16584edb05a464cd66ecdf805ed737e367c8dd" + }, + { + "href": "./CE11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019a9961d70bb75a43935f6f6fcd72242a79ef768bc25e67f96c7a7e9fb91a01b" + }, + { + "href": "./CE11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075b76147b30c3427c560ebcceac15774a07bade2a67e4cf2ce5955801173c83a" + }, + { + "href": "./CE11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206568adc034844d12a1e76a0f55a107a0fe94634846c98df29ab77c0ad918d482" + }, + { + "href": "./CE11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220860b5fe4e8d6940d6426bb974ffd946f193bd7b143749884dc86489e7ae573b4" + }, + { + "href": "./CE11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c799b804f9e6c59afdfa98180a4e6074f37f18b8ea65c88eb23e4dc6444d2382" + }, + { + "href": "./CE11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b51ba21df794c7dc9f9a479d1dc8c8e673fc6aa07c3dadbc63870021a55e6e0" + }, + { + "href": "./CE11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fd9171bdaafd3db5d588f32e6fdb4c6038642a4bd47fe0e01a1aa33e7db987b" + }, + { + "href": "./CE11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206456679e2d289fa7243255020307fc0eedb51c3b4fe957199fde04d8a45a4a49" + }, + { + "href": "./CE11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200217acd653100787ccf9fe697cb1060d169b58a20324b9f6a1b92944160a799f" + }, + { + "href": "./CE11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ac3a4ce5d5635cda352662c37c8953942cb2f8f21a02b6d4305f03a2adb8825" + }, + { + "href": "./CE11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038bddb865e062b8cb8026da7d759d6090daca1490a3c242b7dd60be24bc52e55" + }, + { + "href": "./CE11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e23aff439b8694cdcdfd015dd93b6942854e44505dc422cdc6d191c2e3b3eb8" + }, + { + "href": "./CE12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010ae43596d0722ddf30672519ae3f48bb8fb1c9569251d37a3973829784bf54d" + }, + { + "href": "./CE12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220813320a7f1664ac34233aac4dffaa33b55b26add589f8c8e49697015a227a078" + }, + { + "href": "./CE12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094c60ae612afbc93c77d99fd53cc2d9c6dae28059e9a827fe0a008171b1f4ae1" + }, + { + "href": "./CE12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122066dcca87702cbacc01ce355800d62d27707a8886851d85c9f25eec5de44e0ff7" + }, + { + "href": "./CE12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017aaa667cf720f6f0ff6b64380e3740e84271120b05e17a04f65eff45cceee49" + }, + { + "href": "./CE12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207141e3cd144505ad1da13502013fbee7167a448b3700c62a1c8035b73b6c7643" + }, + { + "href": "./CE12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f728faad7d1d183ae7fb12aab3543581aff83e11a384dc775250d3e32f6e0ad4" + }, + { + "href": "./CE12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb7cced16b93c9250ccd9eb507d46cc5a4a74cfac3222e4f6c58bf48fea05314" + }, + { + "href": "./CE12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b9f5d8288e52f9aac14894c86b32587c3e0ba5ba8308b9c89b65dac1a7dce5f7" + }, + { + "href": "./CE12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c15338c6353558cac48d3dca61cf4eb5bfdcc7ceaac6b5d11c3d71c78e36711" + }, + { + "href": "./CE12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f6d0bbcb64540ce479aa4775fabe7a46150820291dbd7d446b780d085c6ed38" + }, + { + "href": "./CE12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209f29f57ad12e19e3973f3597666ddbe653f580f0a83e2b157a33c57ed1e456e9" + }, + { + "href": "./CE12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c189ef3200ddd7fbc4d6fea88deb7202a465066831a4120c405d418e70ff993" + }, + { + "href": "./CE12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d15ee3c627c51bd4209c2b539b81d32a2de1802dded2882630b64a61c9b99eb9" + }, + { + "href": "./CE12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb1ab7cbc553603b8c13e41095809c6ff02e902af0ca676d76cfcd61fdb5dcf2" + }, + { + "href": "./CE12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011c6a27d08334e8c21f2164c05225d0494a94e9cc2ab572b77356138e5e8234c" + }, + { + "href": "./CE12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202015d0c65079051d1e3b10ae5a011ce97ebca75c8c2cbb56c29edbdb2acf5e3c" + }, + { + "href": "./CE12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1004062139dfaa3ba76ac4b35163a8b428ba223f315b10c5950ed03677e1235" + }, + { + "href": "./CE12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3ed4d097c390a82c4f0feecba2dca08a69e4ec08be8a55d4b56bc00e255c7ea" + }, + { + "href": "./CE12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220780c9dc0d1912ce2f19d2840bf65828af18ee82252be16d839d6d61d04e49ab2" + }, + { + "href": "./CE12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f398a3ccacefb77bc3db459b98e3a10c0117a5edcd984a1a11f4bab4090cca7c" + }, + { + "href": "./CF07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017cd09fd7c8e365d8a139c439b2de322ab885d9f5149feb277680bee5a7f3a0c" + }, + { + "href": "./CF07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207703f913df467c1aadc36a511006d9733b0b3246c81f00a21beb1e7dff33e8f2" + }, + { + "href": "./CF07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220023e7104672aa6c32f78f1c24de54e1b506c1a4be58acc49c4db08b2cc9719b2" + }, + { + "href": "./CF07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e0ec1eaa220fa97ca55468288516740c98ae38086466eaf5140ff679e3b0c7e" + }, + { + "href": "./CF07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa60fe150b9f5135a14e8a7021ffec2ad483cb981d77e11c4483f90217a4fdac" + }, + { + "href": "./CF07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b61bbd881a69d17009e8d1c1a322fa0ee0db10988e89670d53e0e0689c5bbc4" + }, + { + "href": "./CF07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202667d8d72c1add3b2f4356c245277a014cef6193c3aab820e0b0126c814b6b53" + }, + { + "href": "./CF07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1587d99fa081e13721307bd4a5e6bc18f57532167b191726fa9faed8d0081fc" + }, + { + "href": "./CF07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220234877a32b21e85d7dd3d293f4859c4813530c8e30688a6cc6f51a32dd12b9d1" + }, + { + "href": "./CF07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207fcec643570546eede1b4f25e26730cd2cfe6649b1bab4b3222aba8978eedd3b" + }, + { + "href": "./CF07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122068493a880f3ad5784e3c44ce635ff4dd1e704465fb89f36ec07298d1db0a9dc3" + }, + { + "href": "./CF07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122039c954fd78ce8dff503c8cea3e1c6e068871ddee04dade90ed1e03d81e5f9fe3" + }, + { + "href": "./CF07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080917baf62191f51b8669993a9060f6e4725b47c8e401c9ec60ecae5689105bf" + }, + { + "href": "./CF07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e314ef5f21ec6417867f68142b19c7b1d988240389c7781914db75b227b6ac32" + }, + { + "href": "./CF07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220afee09137ea5cc345e52968eaa148f2833728aa6344b4016ce8f8b3b84e01005" + }, + { + "href": "./CF07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e30909ffb2293439e14a738560d4c7ae9192200b628d7817983feec7dd6dad75" + }, + { + "href": "./CF07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c85568d53f7b6b04c901c274fd2287a10f7b02dc95cb2cd68fb3a9b1aaa0b3f" + }, + { + "href": "./CF07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099d7b646f969393e142be1e2d1d036b87c6d0e1db26f631a67397ff5d295b3d7" + }, + { + "href": "./CF07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220982e7ae7c326b604990bb945e84884c4ea428fcd001bf760dfed0b7544b9adbf" + }, + { + "href": "./CF07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6d39f7db3d56190cb7d1ade5ef256e0ba3cebc56de0b5be89c55b0277ff4cab" + }, + { + "href": "./CF08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a18ab3f81992250c0d4bf9be49bcf9125416432dbaacfc22cc0c6f616de491c" + }, + { + "href": "./CF08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220723201377a859a8a7a53777d0aded3f9ec5a2c303eb28600ba45b2a6e09209dc" + }, + { + "href": "./CF08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220291e1fd0ad70303a9b5f7e1c03195f6e921c0924c4c705bf2d2dfd3335422d70" + }, + { + "href": "./CF08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d94e662bebc265d4357953c3fd887e1f87ab9001a007dc72f3a014c08a67136" + }, + { + "href": "./CF08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208e3440b2af7e4b00fdfa5f15b8028b85f70e2beaa98db8728b77cfa66b069024" + }, + { + "href": "./CF08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d80825fdbcc0abab4e2a18b77e43455ab950a3337d2e259533b56f79787287f4" + }, + { + "href": "./CF08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc0342f7154140b3980a15b5fca131cc19631695bbe281a237ecbf7cde82a0e7" + }, + { + "href": "./CF08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d323cc840bc4c2958be487d701fa87e1d5f9df0b7dce768f0cc239b29420226" + }, + { + "href": "./CF08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220720ab3fc236dbf2489bcfc5d583fe63f6d19a07c4f16680e312cc7034148f1e8" + }, + { + "href": "./CF08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5fb265d0123d47e49f8d286d3689200acff699d3dde20e5ac03fb06a17a115d" + }, + { + "href": "./CF08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040488e76cd0886a39e3f6d78d42ec352a1a03a15b4feca04deaf62935456b45f" + }, + { + "href": "./CF08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4c977978eb466071f004b06ff5a0cfa4e83e81a4edc14c66e55a742321ec7e3" + }, + { + "href": "./CF08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a5730797590a9578dabf716195a4649c156213f2d81288757615d2c6babfebe" + }, + { + "href": "./CF08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e944fd0499bcc03a8bb5c8f04622212d3525177abcba99fcace5059d2740ea4" + }, + { + "href": "./CF08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220185f52c23ddc18e9ed23f0a54a0aa062cfee7976f7a0c76837f3a08ebbef9dcd" + }, + { + "href": "./CF08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd3d970135e91415fbf65df3e0e34456db252699e6c8024602e2c7701e53d18a" + }, + { + "href": "./CF08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e4c232f77a6b4ec3709bc2e06395e07319f60785ad8bc6b41ee6c39b16c5b28" + }, + { + "href": "./CF08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e8ba9fff2d420b778f1b076295648c09f01396e4d422f76485617497eccd766" + }, + { + "href": "./CF08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220627b6c3a7a27a00ce5064472870853614cbd658f219d1cd69ab81ff6a97bafc1" + }, + { + "href": "./CF08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220506946fdcc34dbc8ccaa62b8b4a4789ee16a4a5f98276c5d99364bf7cd750ba5" + }, + { + "href": "./CF08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206aa6726b2e7f0b76bcbf9616ef4e3244fe040cf6c550465d91b7228ee1329899" + }, + { + "href": "./CF08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a4b704a87bc6324eaad6fe62483fe36cc8dc299c0c3bb5fa1f295cfa576b757" + }, + { + "href": "./CF08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9c3381e45a703f79086a2a3dc8dc712947013ea68a32f65c744e12544fa5b0c" + }, + { + "href": "./CF08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e88edcac23ed735b0f522789613c1f0a7701a222ca9191fd4626e198b1f74f2b" + }, + { + "href": "./CF08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bdd32d3190f7ba3b4641ff1a66bb978a56f53381206ac8870f2a9e6b47216c4b" + }, + { + "href": "./CF09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122054a7453056f1422d88d27c26d37afee57f9e054021df7f5ae17dea1f7a0509ce" + }, + { + "href": "./CF09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc1eb648ab15d44259a5487877117271faa120ae9bf7aa41c729ffed130ff856" + }, + { + "href": "./CF09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207fdd276b4cdd399d90cc64b3a6b51066f61ea5e6e8c9d5a8a68af5c73436c6e5" + }, + { + "href": "./CF09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac5951c8f789a7689d0b199023401e0cd6d0889957a0b2e2e9d046a6eeba2a02" + }, + { + "href": "./CF09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f4ef7ac81ec95705950c994c88a208126f2b04f49baee5cacd5e6ebdf900216" + }, + { + "href": "./CF09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc3810de84a8ac42b035fb9eb3a84bcac30411225d3919578151d76cb17bea8a" + }, + { + "href": "./CF09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b7c383795e439e17f177bec4509767e76557328ea01295bbcd1b6c40ef48937" + }, + { + "href": "./CF09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c1b80cdbf762fc964b2e098d9d989d4704e995187943355fc88a46295a5ca94" + }, + { + "href": "./CF09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c1cdb9fd67412a386370244397ecc47e5eb97e62d2a35fe63d08419dd298830" + }, + { + "href": "./CF09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220408ee26d8bae2bd38a58fa89245cfefd3ca0a67fb12b0ac2a0ad61037adaccc9" + }, + { + "href": "./CF09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220145b4ec27a3fa2d15f184133f93eae2a20f8f66a7f60c4264641019278488135" + }, + { + "href": "./CF09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220294f6a9c2c9cd3f61830a44e0181e4125d8a4d7a6758f5d890a1391c671e5c91" + }, + { + "href": "./CF09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220546f7f0d9a66d3f0e314e80dcdae5bdbd8bdc53dc713bb6af1f3c8a90f8e0e35" + }, + { + "href": "./CF09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094fc040817441a05afc57ffb74239b880f8878c8580b32a4e26b5f42a1084a80" + }, + { + "href": "./CF09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d98b75a0e0bf1f3a11f6e1185bfb9a76b6af2a6605fd67dc55ef4b8c16d72b0" + }, + { + "href": "./CF09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078ae4ae83aabdda67b411d24c379b1eee616f438c2eb525b221b0a56a7ed155e" + }, + { + "href": "./CF09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d85c111dfc25d461416b95be642e08abe6266792e31dc970cafe7b560ef076d" + }, + { + "href": "./CF09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205528cbb4133d5b9b12778089dce45ba537e0f9e9dabaeb540bc851148fde7371" + }, + { + "href": "./CF09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d94c00dd9939aa08aa76b4da0a8b265ea559c2a0dc3bcaa10b52ff61508f8275" + }, + { + "href": "./CF09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005900aa42ab4519df5ca76d69299b2aa9b07f01b2ba00322ee449d28c4005ad3" + }, + { + "href": "./CF09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122045d04c54afd63b92047524bf2370e20287e0f4cefcb75d59fac0f0cc0cf60acf" + }, + { + "href": "./CF09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f6c93a9c29294d17a46cf8820933e96a105042aaeac2f29689cec5aaf10a8d9" + }, + { + "href": "./CF09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122051b323609f273c89d754433a19f63556793fc6b747360dd0dacb5bc4efdda48b" + }, + { + "href": "./CF09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b956f9005818e9c6de083d096a59005028d6e87516719b15d7f2df26b2c459bc" + }, + { + "href": "./CF09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d2e31c0c853f4f07930f8d0106a0d0d4b54440a58606f39ff09e491a7a14e97" + }, + { + "href": "./CF10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032490839e5dea400b5b5c8e67f0856cf21d9caac1c85bab6b8fe62893f1ae610" + }, + { + "href": "./CF10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b28819139d303d530a432caa6ba7141b96b29d7480b42c67b2f7a302bdaeb2c0" + }, + { + "href": "./CF10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b4976cbdb170a32825b9b465943051b69e0c32b7dfd8b212a8035ca7948188b" + }, + { + "href": "./CF10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4454bde7677bc7847f0d70bf575fb96ef1172c061875b08ee083ded6d2e3189" + }, + { + "href": "./CF10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cbe5efbfa3919abbc206c84ecd55f5f903af5fe7e66b965915d693ce39c0c6f" + }, + { + "href": "./CF10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008b8359a93c9c05ee8e386192570a49148d479fb49bc71511382d04382edd309" + }, + { + "href": "./CF10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204aa28e752677b079f6db828ecb79657935843a1cb0e9f43a2f8191abfbb6742d" + }, + { + "href": "./CF10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049ad9d9d64b6bef042702582c1b81d499d8b5219a8c671fb6183ea688af09577" + }, + { + "href": "./CF10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9eb509ea1b0ca9060db744e735eb63072f43ea2ee35369549be366bf2a74077" + }, + { + "href": "./CF10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021608d7f5c91f37905954844dfb8a85bc78a9480813826e1fab6412c0f15c21c" + }, + { + "href": "./CF10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220add72eced150786d7c9a93646c3cadb85ca0ed9e687f837f42bff1821727f607" + }, + { + "href": "./CF10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220677e4b396afaf4f35df8d8bd1179a2396b450564e0191c96a14d7015cfeb8235" + }, + { + "href": "./CF10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220168e7ea764e056e528b0e90c992e5ee13e81b585b0b967422609bef439a53c56" + }, + { + "href": "./CF10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122032e2c50b037bcf4d487e935f105dc02661bedc69a8e7dfd448562f166ce1adff" + }, + { + "href": "./CF10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eece89ed064dcdaf0e1b29dd7d5d0eb7ab8c04663eec084fe4dbd0a71a4f666a" + }, + { + "href": "./CF10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203db83f8100f193f44ee8d6af200b1e99b7c9a018cc69ef249b4ccd407bbdb592" + }, + { + "href": "./CF10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b12890def1c98d1242df89e5f688b8881e37910184e0d320d1f13e93ca0b7e0" + }, + { + "href": "./CF10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220decf4a104bea11de6df3f8d0d53dd05605213a6faf56cc0208e3ea9344b8bec2" + }, + { + "href": "./CF10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024535fb43c1198a9f05dca57a3ffd873655e74a885ba9119eeeba21492e751e7" + }, + { + "href": "./CF10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034a93c972094e3eaa508f9904ccdbad1c6749bf328fe3f9895a2e6963e474a86" + }, + { + "href": "./CF10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a2c35cd88f21f5d28d242474ff3614a3610eea7346bfea0abccfd7af0c5b016" + }, + { + "href": "./CF10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046e4609ab9da4c81e134322360524361eeca570abeada9a1d3af213663cf85fa" + }, + { + "href": "./CF10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cc952e6cf18c982273efd3aef818acb11009d786cc4d5b0ec9108370d43d59d" + }, + { + "href": "./CF10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb4022caea3ba1e899e0be8448260752302a565e1663734bf53e1d5b6ead207f" + }, + { + "href": "./CF10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b998ea6d1b1c25f6771f3342670e090d60eaee48aaf07c66792aa6f09dac18fe" + }, + { + "href": "./CF11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ae975f0a94fe540dff26682803366747884bde0af800ef95562d8cbd8db5ba1" + }, + { + "href": "./CF11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a03e3c39b4a1a34a22949bcb1a4056de4e6458de669c337c275a11b8add2cac" + }, + { + "href": "./CF11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e4289ae55eb48d3172043a3ebd04336d1396227e99fbea079facc4affac16c6d" + }, + { + "href": "./CF11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202397020cac158b5d81c7357f8e9acb5aa50275857c705fba55f5b5c1437726f3" + }, + { + "href": "./CF11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df56cb28edfcf3befbeac1257b65c2367401d06231f00516b5e4be1a86b7409d" + }, + { + "href": "./CF11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eba4c308799d074f6aafe542630b14fb522a23a02ba18516c4da26e39c743d94" + }, + { + "href": "./CF11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220587ef9f8312902eef07469092a5ce79e10863ba7ba82c2bdc9fedee384541f76" + }, + { + "href": "./CF11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0a4627118dcf93d492e07cd696765c87f1374a791dc0312cec564dbc99b6153" + }, + { + "href": "./CF11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122004651a68245293a130e736ae63e4f25fd88a2c4c6fe1cc357892742f9a6f353d" + }, + { + "href": "./CF11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220254d29cb7e7842115d2868bf3ebe1de900ca0ba30c375d438604c8d59f24a9cd" + }, + { + "href": "./CF11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7cb6e2111f5989f9d7ae26fb1b4bed26cde43fb95d0b0a8fee736ae40586dff" + }, + { + "href": "./CF11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ecad2ed6b71faa51fb2dffe3be915c58f94e52027090b54629d5d746b4bb106e" + }, + { + "href": "./CF11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030cc0417f0a4fff1a85e12b13b2197ae389032bf9f0674ec631f44921a4da625" + }, + { + "href": "./CF11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220385f5fcbda0bd5b2acdfd3b66483023f5e74a63d37a17929e0741ddb480a44f8" + }, + { + "href": "./CF11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016bf23d87612498ae34efabee5081184f3a689397cb723d22592f5fb54b90ab2" + }, + { + "href": "./CF11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7021b1013c97de990b63377f94ca1b41ce54ff15e8cb0d950e68344cf6c2400" + }, + { + "href": "./CF11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4b2d49c10fd020a50dd6624ddfda5c96439eefae0051372b2ec0a65439459bb" + }, + { + "href": "./CF11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220080a93a89db4e0052295f446c8061250d7f4e054ca7ebdb3a134a3a52eaa2c36" + }, + { + "href": "./CF11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a850e080c829645a24c1fd7bce619be0eb51c4a6a5935f6c0349de0e98e066a" + }, + { + "href": "./CF11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c19a85728bdc02f57ab5641c8dd9448334e117546c580a315953263d3e47574" + }, + { + "href": "./CF11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1148fea6f09f849ab75d4391f76d01637f80eca7e067725a301e6d0b1207750" + }, + { + "href": "./CF11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220118362414d3d68871069e9c63cea527461686f387933ae302083dec34c6dd7da" + }, + { + "href": "./CF11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220003310bd6a7c860de4354b21186631c1c5f6ecf720096e95708aaae2cbc8b68d" + }, + { + "href": "./CF11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a702f2f051ff9822d67e63c3d10ca867384a0229230497c46710b401afd0112c" + }, + { + "href": "./CF11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202e058dc045345e32f1abbe0da131719bdf3286c5b538324f8978fa7920b1f43b" + }, + { + "href": "./CF12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a75a7fce79d79b8da055ceba730bf78be4fd4ba3f5a8d9dbd7cae9095bd9c55" + }, + { + "href": "./CF12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3158efbd136edc362914ba7a1205e925039a6fbda05d8d9cd7721d97fceeaf5" + }, + { + "href": "./CF12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122053715b13aadbe5ae1705caed0974f2911f0fcb6764ba59d8ccd88c966b2efb26" + }, + { + "href": "./CF12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1d3b4924f7b1670ecf37ed046d181e531c8c59e5c4319f0905521167776d131" + }, + { + "href": "./CF12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203134b96d804c6173166a5253d8531a04e8aa9ba1671835e65c2777a6e31ad550" + }, + { + "href": "./CF12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220da0bb8373661900783f1ca121c1cfb7a7e6abe4aaed33fe72eea7bc651ae0d89" + }, + { + "href": "./CF12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220191911b9f723ad4c7e314437d91744ff9868a95dde00192f9b8e8a087e2b84e4" + }, + { + "href": "./CF12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201cf11c49e7f7e51322cde178d9753a741bc33640eb7c6f9d6c5380c910ee101a" + }, + { + "href": "./CF12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220737c30c9455ff4b99ca495c505a6d8fd36557fd79ef23cf5b230e55d3475477b" + }, + { + "href": "./CF12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2f440cc263d3cf5e2dcb4f22a19b499cda67dde074d0b5faccf16cb38be2500" + }, + { + "href": "./CF12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220213839aeb8369c0a4719b93c46cfc8b6262aa63d7c95aa32de98eaff5c654832" + }, + { + "href": "./CF12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d30fa2f8df04359a50090804b46a77ea066f0a0116197c3178d3f75ff4e53e84" + }, + { + "href": "./CF12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5e1e8ecff00b86661722af0a5a7d4df6e92a56ee54b486c6686d5c4f951120c" + }, + { + "href": "./CF12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220afe43d70119f891dcaa49137c78f6dce546043c17acbfc9ff9b546c5f8a66799" + }, + { + "href": "./CF12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa36534565f239e0937612768310474ef01ee9f0912a3c7f8750dc9fc359a7e9" + }, + { + "href": "./CF12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220839505d362f9e2590f273219aef0e712ca8a247b2946546612ebbfe33b6a38b3" + }, + { + "href": "./CF12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093dc0094d889a6e677186ba024c0d769f0273a070f09831b819e1855b3deaf6a" + }, + { + "href": "./CF12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b20fa35cabb2ba1210d985a7ec29c9211df15ed4a72109a3047bbb614b863ca9" + }, + { + "href": "./CF12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c9a0029a29c95bcb180dbcc288d036088c02136e9336ce91a6110220b72a845" + }, + { + "href": "./CF12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cd01edf1f0e09eab3f5749ab8a4af13dfdd8450eb385c955dc7383e1a292c85" + }, + { + "href": "./CF12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d6fafd1dd1e965d2f5f339b9d63ca0dd039463b8f952a5fd6896f4fbd8708fc" + }, + { + "href": "./CF12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f68fb9ae61a4eb73ed35b369315929f997780e90be89c2d29644b582d5d98fd" + }, + { + "href": "./CF12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef0d7fa19e9c9f815329819bd5d91904c7f85b00fe3e1cf566766b170e83babf" + }, + { + "href": "./CF12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203283b95b0c6f6ed7d96ab275b898daf4742ee55b14ff8ffc62955115d4235c3a" + }, + { + "href": "./CF12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f536a1e1ce771f5983f579db986e3b6b2de5aa3ac1964e2111b37c4903cbb99" + }, + { + "href": "./CF13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206c13385f0cf2a95c09a8781286f0a8a8ac6da79a96ec3dbdbcffa5246f935bf6" + }, + { + "href": "./CF13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043fdb28691adc832e0bc1ae0e779b87a95e15060b32cdf234b51a9cbe2d3d7d5" + }, + { + "href": "./CF13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bbf889d3468f40a55f7f2729f6828669bb88e019e5ab0615a1c94bbf1cba1a5" + }, + { + "href": "./CF13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c23b89ac940c4692a5f15be613204cd4c4ba2ad070aaecb2ee825d872b3809bb" + }, + { + "href": "./CF13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209f45a464335db6e8a0084104bcd82c1ef1b7f9e2857bb4be5559bdd005cc58f4" + }, + { + "href": "./CF13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091a335313cfd8d30863d1036b1489a937e31181acc83234c3d8ece293bf2fafb" + }, + { + "href": "./CF13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205fd5e63c8ce38d9fbfdc1f0606ec864103d8db755857e3da9b67a65b7e41f8ad" + }, + { + "href": "./CG08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220817d95fbf77522b296f44dafbc1900eddc6911bffec5a311a60fda648d82d939" + }, + { + "href": "./CG08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b32495cb9b43e82ec41945a40588952effebbbe79447db62742513f6312a465" + }, + { + "href": "./CG08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b20853c909eb0a6614a97bdf25e7412e9e08fc321f3bd08234dce43770ad7018" + }, + { + "href": "./CG08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003e42bac3d028b065a87d586615e1355ddc3bd54ad0f1e3b9d3a0f1aa18c3899" + }, + { + "href": "./CG08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090c06ce3884872d6336754adadc034d6fdfbb98090dcf586ce170df882c5cdec" + }, + { + "href": "./CG08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3444374c4a20e63309060d2bef03aebdf5684806ad7c9d529c187c1c2c8682e" + }, + { + "href": "./CG08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b0a4743216ebbc4912bcf57960ffd14ff026ea1e2ceb62d5eb0eb68ad47a769" + }, + { + "href": "./CG08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220998030bb584d0d5d204e77f4a1e16d7d35d53e944bcdea8ebc5473e1a82e85b4" + }, + { + "href": "./CG09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b2eb1fe0557beffa4f07e300a5aa26202f53739ace8409cf3db9648988711fc" + }, + { + "href": "./CG09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b41aba5ddf626557359fbaa49b065d7dc83907550c62c977915cc5fe2ede459" + }, + { + "href": "./CG09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc6505d34cdbae9905c60b3c235a70addddeecc79415f47ca2ffb7dedd16424b" + }, + { + "href": "./CG09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa428f4964ea580a1c4c20d8d00785bbfe07347361a82c9d9594f6b07fda33d3" + }, + { + "href": "./CG09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204a94cf03517d23c5cd0c5fe8a02e1c47bc8edf5f38fb3456040e1929ce20df6a" + }, + { + "href": "./CG09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220074e9576cb30c3f911a4fd95fae44b27c411ba7a34ed2438f1a6349adad46182" + }, + { + "href": "./CG09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220581291cf82d6a69c82de308390b5d4d757222317d2e0363b35b42a2e63ab98f4" + }, + { + "href": "./CG09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207144e3d9c40c13eaad40155f19ae867f74c284276004395504b4d7f763fd7533" + }, + { + "href": "./CG09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220edc5c250bd023f505a9f48e6afc94f2830cdc8d10b844dfdfcbd465b29b77401" + }, + { + "href": "./CG09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fec2b6815bd4848762246a07839550a48a08746b6038dc703ba9e60ef1f46d17" + }, + { + "href": "./CG09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cad7e3808077c6f36e26edc02e6f62d3d734d18b06b80f9ccd3abeed34165e68" + }, + { + "href": "./CG09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060a7ba47c4f2044989dacd332dbcf3d270103e971cd07950714259e2372cea85" + }, + { + "href": "./CG09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f480526a0e82ae8313053f01a962f06beeea0b9ee4a7307bdb359a57d905961" + }, + { + "href": "./CG10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047faa6961d47183fb3435145f352ce0346194784afa2778fc5291612c1877a92" + }, + { + "href": "./CG10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048b5905ea37553dfa40b7c8bcca33f94e6fe582d94c9e50448de595341cbbef6" + }, + { + "href": "./CG10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b405230c3ae4cb52eb170acce26f629d2679845f9bd0b461ba31f9c3efe8c89" + }, + { + "href": "./CG10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7eb8e00598d154281b32b84e824109595af4dd299aefe18d28a366faaf35f67" + }, + { + "href": "./CG10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220416e0ac072de656a13399be5d716e81f48d3be167e72a90ced1d285618df0649" + }, + { + "href": "./CG10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204295a786245c4b179397f9b2abf3238928e6f4c044f4e94f8dcbd0fa96050a2e" + }, + { + "href": "./CG10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f091e0fd5a88ae2e4c53372005aa7e400d754d8999413b75504a57c0483175e" + }, + { + "href": "./CG10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043bfff358795239dfeadaa583ab2303ad3ce2e19ae6eea6d64d126b3e4ff337d" + }, + { + "href": "./CG10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055583c65b9fd1e12685cef98943b8f162db727277a35b457b0347012d22f2fa6" + }, + { + "href": "./CG10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122084273b5c82cdbbb9791d99624304cf3a71de4c8328af00e828ed6f5bc571b623" + }, + { + "href": "./CG10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2237d236f8c837065b8414a9c8abfe6975cca72bf6688a0f01714374a927bcc" + }, + { + "href": "./CG10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d2f19abab21b298063436ed0c38c60ac114620bcc085b1d3704e74f96cc3a09a" + }, + { + "href": "./CG10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0d90928deb9fd55ac2f556b9cc69365d194c6849cd7d8cd89d9fec395c8bee3" + }, + { + "href": "./CG10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209249781387397b6983e9d7b0f20bf532f0dd3fda26d1a33d8c7ef35537f01055" + }, + { + "href": "./CG10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed85e74ee4a5309c1a2344a56dec69f35ea6936cd1c964bd533d75e09134ba3a" + }, + { + "href": "./CG10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df7e49e0b929ddc0623b670526b0eedfe4b57c76fdebfc43c1ece839bba1702f" + }, + { + "href": "./CG10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a9a862c7e7805d82acfe213f37e5400d4cf09218a7919c0f89f00194cb32b02" + }, + { + "href": "./CG10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220021858b207f831c61f1d93b17ac48155cace772d33e1df1da641b69a7a5fc156" + }, + { + "href": "./CG10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206edca238085a4bdad79fb9b7b3e0f141418bd415bccbe208cd1632432e2a26b5" + }, + { + "href": "./CG10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013172571298188cfecf4e54316f90193ccf7c12a8ddad989b39a83b15018aaee" + }, + { + "href": "./CG10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec5bba09984815ec5f95acf2c8e1e93896e4345a730b2b12c211be4e6134c5bf" + }, + { + "href": "./CG10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204abc65dfda070abb89417bd8db40035e5b10a42178b354de0f41bb9098c2577a" + }, + { + "href": "./CG10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0c12cd28d636f6647ac1926621bf95aa11784ebd155fbf82ad04fabc07fdc13" + }, + { + "href": "./CG11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007a81d4b7197ace82922effdcae6855ffd00ac81d313987cd62d09c1a3873692" + }, + { + "href": "./CG11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047cdb0751018d8e08eeea13406db7ca11554e6e1301249873770dbc481e3c0de" + }, + { + "href": "./CG11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220501d64ccba0a9d5d5970d766632ae2c6218ad1d0a27723bfd361379920ed35be" + }, + { + "href": "./CG11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c42d21f3b9acb8d2022e4d796e7f07f1e38ea5699559bae6654be3d879bc6be6" + }, + { + "href": "./CG11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f905f0e76580b8553aac49062d0c8764edaf18072ad4a23d13c0ffe383001b19" + }, + { + "href": "./CG11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ca5c72386eccfdb412f14265d90f180e14409db72e44c8d47a5a543417c30da" + }, + { + "href": "./CG11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209b49fcdbd1a8670f5e939397caf827abe80ea271c061875dc46acf845fe00e5a" + }, + { + "href": "./CG11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ad6bb879d728d2f571b45b07546229f01304e09997d65d3952829fd19f1a666" + }, + { + "href": "./CG11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220591320181a23b4a6e3e622215807e1c9030e2ffcc2776bcacb7ccc8b97cd7bf6" + }, + { + "href": "./CG11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e1a40dcfd943922a5d1cdf24f52123904b5abed694e93af8b529d70dfc71586" + }, + { + "href": "./CG11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bb2f5242b9ee129cd0b46ee6d425f43025325090e2e459a80793de5a29f19a4" + }, + { + "href": "./CG11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f3b9cbba666c9e68fc36a786a4a025629caffe7a5d02f97b01540f85932a4c77" + }, + { + "href": "./CG11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078f910842a7385ed9ed2389927e9e5860b0cb93d6ec7acab847918b572896d77" + }, + { + "href": "./CG11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b5fd71f163774abf64e25100c1b8b8b73d879441a9290df08bb03db80e8f31e5" + }, + { + "href": "./CG11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f309e49c4a39d8a5246131cb076979161b038b75ce1ed5b185933316669fe9f1" + }, + { + "href": "./CG11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200da119c642aeba7a941f98b9d64117debc3c886ef4ed3e0701d47c10c2840ba5" + }, + { + "href": "./CG11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220951c51a9ee4025021201d597103e0c720040225f65d913ed6dc05241d26cd988" + }, + { + "href": "./CG11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220319a8222696809491e01009a58cbb848860104a44d1c1dcb14ce09a1b9b63149" + }, + { + "href": "./CG11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c81193f937086fd00e0b584fb088cf1fa7f852c4dabc5b601d9952623cc59b24" + }, + { + "href": "./CG11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f88d1c13d60c37b65ba264ff5410c76024cf779642861cccaf7fdaca2f050bb" + }, + { + "href": "./CG11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018c1359be39b8dcfe2f664889334a3dd6af9005888783bae57d9eb186e36eabd" + }, + { + "href": "./CG11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eebe163a487e3d9152b12d8270e5e5c3ec7fb450697e1e63b07f45c8d5275bb0" + }, + { + "href": "./CG11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205814f4a3d1c8e170b8edaf238219d7517f542aadcfe5fca78bb17f3afe5c97e3" + }, + { + "href": "./CG11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c2166d3ae70678608dfc71c711647c6a500089fab37d7606fedcd8aae7c720b1" + }, + { + "href": "./CG11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203bc3db94543dcfff18ba8f57c1be234aeb3a7262ab1f0f31897b17b2b4cc1610" + }, + { + "href": "./CG12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204524c56b03210e26db3a5b5b097141e6273f740ce850b39569225f8317bd8956" + }, + { + "href": "./CG12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207269932cc905c431b3e5c65dc94e7128a06a70a11648403bc51cac3f9ac54a6b" + }, + { + "href": "./CG12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220450da7da15e636dc435e960146ade5b7befba325ae60ca6644514bab3c3423c3" + }, + { + "href": "./CG12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ea5be9a0f78db690c3a65e467e99a3573385d6f3d4ab6c7a09f43681f4ed049" + }, + { + "href": "./CG12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c39676498b493bcba638d85d5979f1282af456ea97ae80c5b47a566af6d7003e" + }, + { + "href": "./CG12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220448543f6b11d5706b05fa8ffe8a0dfc28706d3733425437e1db7a73539a426fc" + }, + { + "href": "./CG12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006e69642fd985412f094f5d3a5542d61df5a556accf7689658fad8b6397c3406" + }, + { + "href": "./CG12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220787a9c5b0b40b14b1364a7e0a5c3fffd9571f6f94be3296386983a7b374ef612" + }, + { + "href": "./CG12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b58a3b1a99816bb9944f01bdd2ef1f07b4045436189e312b25df3a317a73d09e" + }, + { + "href": "./CG12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eae18fd238f61f9aad889ba9f4657e278bd22336598dd522bc796fe83c942b48" + }, + { + "href": "./CG12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb9778e83865688061b8b1b14ded8a5b6fd8c97c9279c785a0f1f0588ec0076e" + }, + { + "href": "./CG12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034606a5091661c32b78b7cf913097e76c522d6cb27dc1a821f008ebeceb60127" + }, + { + "href": "./CG12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8d87c951a2bb5c27efb53ecfc68a279178b8fd1f0b470624ea5694de61a048c" + }, + { + "href": "./CG12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c427a6bff7791cccc5e10684c8a886953525b441b90b2ef46328db72d4653255" + }, + { + "href": "./CG12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbe1939990695d1f13f68b1a27d34c8c48f72d0aba7b557bbd627fe0f6694f90" + }, + { + "href": "./CG12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073339113583093490b6c2986e287bab7546de19a8259f7d0630bd29425fcfd22" + }, + { + "href": "./CG12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba786141040432d9c6d7e04859786e09b87c5dddbc2d37a77b24938add8b96e2" + }, + { + "href": "./CG12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073bb30f5d8b763016444c6e1399f68fc89eb95f66a73ba26957060d312c414f2" + }, + { + "href": "./CG12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fcb238d1a1e1b5868059ec9c0f62b5296e91752146f2777689ee26e3413c052a" + }, + { + "href": "./CG12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef43094af8f97cf16340bbadcbc320a2d95baf25dd8ed827dbef1b05940ca319" + }, + { + "href": "./CG12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd9eab4806df576e28263996a4a94d53f531803e7dce92dfdeab4b2edcab5c51" + }, + { + "href": "./CG12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207f1b42eb0c25f9a56276781ce904f7faecd6f343efebffd27d05ef36c50d09a4" + }, + { + "href": "./CG12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201af0fd16cb2669670606171e25e218a49da11885a745265f1f1bea64b84abcc9" + }, + { + "href": "./CG12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cec7cf094bc918f3b8b009b333e5b7f3dfea857d3e5340adf26fb479cb9c251d" + }, + { + "href": "./CG12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e17caea00367d20b669b4be82ebd0e1a3b35d9b53c2d20cdd14a35513ae707c0" + }, + { + "href": "./CG13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de32e33f8e2b76623a094807f7086f14bbca8e968f68ea259e89fd94b68000ad" + }, + { + "href": "./CG13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eec1fbad40ba7c4fd4322376e7aae8bb14174c08fa466e30c1a0c303b90f5ccc" + }, + { + "href": "./CG13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c214ca861321d81695319c000fc9ace5f8784c0fabe34be4e160bd535cd7027c" + }, + { + "href": "./CG13_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200f92c00aed27c8860fbf6f22a33339f292dbf201656da93c8576907f23019150" + }, + { + "href": "./CG13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013ff79254bed130f5a7020f316147e6ea10e3cbcbf93064518fdb36b56c87e50" + }, + { + "href": "./CG13_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b92dc98b572162b47653cf9bb147a6a9f1afe5b71b2c3541753da0ca2cfec9e" + }, + { + "href": "./CG13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058b01044ac45001a3eab89c1ce35ba3ca7f019d531e95fe3af927028dcebf444" + }, + { + "href": "./CG13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038d5c5680c093d695b1627df4aa3430352e34999bdd2ec0ce049b00cab6887dd" + }, + { + "href": "./CG13_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7decc19c01d54b47f89ace5368afa2474b167bc23304421ee99c0020a1b7801" + }, + { + "href": "./CG13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220988ae349c00f81b9f14c79de9c6015a38f939c66ffdb2954b3f151c5a5f4e1ce" + }, + { + "href": "./CG13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bbaa79523caff66eb49b3c6243131d7e3e3e2d9964e70edd558850bf469e821a" + }, + { + "href": "./CG13_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076f4d18d603326caee1b5e30143389fdbd66e712fbf65d0bfd984b85f0ab7d51" + }, + { + "href": "./CG13_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207b544eef6273f1b851c0d3e82847c4209a2b118134c95da04bb663a244c13c64" + }, + { + "href": "./CH10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e70adad01d0f708025126e1b87b58cc777ffe293cf4c5694e0d9dd0048ff734c" + }, + { + "href": "./CH10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ebed753a9ee51a1f5bfa6a28085d5fdeb62ec78ce9f3869e83211afb23b2490" + }, + { + "href": "./CH10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220131eef92def44c7c8b870dbf0be500d470f52a918481bfd97e6cecacf0d7a93a" + }, + { + "href": "./CH11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043992ade27d468485ef6f05a0b5ec97a808b0bb329d93506db5b0300d6856552" + }, + { + "href": "./CH11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220334763acaacf082a0b090ce6fd2f4e4e19d429c4e690264f934ad1eb58f18eae" + }, + { + "href": "./CH12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ba2e458bdfa94350a2025852720c338b85f4f74f11bd4c4f1d0922e156e4958" + }, + { + "href": "./CH12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf0a8904fc005ad6864b6f85cf4168d5915d4d2984a088f30039e9d3be369d6e" + }, + { + "href": "./CH12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220213a8b7e7e9e43b69c597831d7caea6ab9b9163898b98c19144f3e1deca402e5" + }, + { + "href": "./CH12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043f36975cd389a03600b75a7a81b665dbde7615b8e4c8948a8e70acfdfbcec8d" + }, + { + "href": "./CH12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220510ab8b239a7f905efae2b9583462d5a1ef1a658c22343805a31b6b487d7cb09" + }, + { + "href": "./CH13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220059b246f91ed11e32b4a70e6a73513577b08449c82977a235165eca0c0aa124c" + }, + { + "href": "./CH13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220164a9470dcc6788dea449133f56d846fd1c58d6533fd1913ac40dabf42932e59" + }, + { + "href": "./CH13_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017167d26dc98dc451fe6c61e662a90d1c9738261d222e9fdc5fdb31bfe62bff0" + }, + { + "href": "./CH13_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122036b2bd2c6b5f94621f2e9a3830b573f9af999b7bbef43ac52ed2e4fd40fc873b" + } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "southland", + "linz:security_classification": "unclassified", + "created": "2024-10-07T22:07:45Z", + "updated": "2024-10-07T22:07:45Z", + "extent": { + "spatial": { "bbox": [[167.1806453, -46.6893848, 169.3363348, -44.6247872]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2024-01-29T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205c4a744bea8b1fd2da022429def80d863b7d2e3ff57d0c58e047794ce9a700e0", + "file:size": 49095 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json b/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..35f0bd6e --- /dev/null +++ b/stac/southland/southland_2020-2023/dsm_1m/2193/collection.json @@ -0,0 +1,4032 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRJ9SQ44QFBVN0KDS0XW2F0", + "title": "Southland LiDAR 1m DSM (2020-2024)", + "description": "Digital Surface Model within the Southland region captured in 2020-2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./CB08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5203bc5c7b4ab7b2912e6cc1f05c308a779fd612b6c44ed4be3c72a0d060718" + }, + { + "href": "./CB08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207454cd5c49a867a300f8961eafe16769d8034e249cc03232549cca8888b767eb" + }, + { + "href": "./CB08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122054611772b49cd8a80ae0701cb4a58e8c11321aeb5f6b9c151ad2c3ae41e5a5f8" + }, + { + "href": "./CB08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220421ce62ba5caf437d53d5d6a93f5b99bff3354c18bdb590fa077c98f7b5de29b" + }, + { + "href": "./CB08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014f2edba82cc6c8cad2d9f0823c13bd74387aa6108ce7acf6f8911afade7d242" + }, + { + "href": "./CB08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080244bd1f5b8db879ada67cd41bf42dfdffcc3879aef3ceb9a990520c66612c9" + }, + { + "href": "./CB08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8540716c32715b8b912bcbeb577f406524e0cf34d28ba2ac3f47f02a9c2a41f" + }, + { + "href": "./CB08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ef566f6dcabe52c88fb5e741a716cf9f6ee45045e24d86cb6865a768671dfcbf" + }, + { + "href": "./CB08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092b15e8023361260daac21279a5322f3b1713f22d8ef756e73ee75b1c6118f13" + }, + { + "href": "./CB08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8df7ba4836ac5ae1df7845e543d6b24aa008c4f5d9826ec364084d1f071ffd7" + }, + { + "href": "./CB08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ebb59bd59ba839d7be9270dd60a448755bf2d734deef310ed6d5cfbf3784051" + }, + { + "href": "./CB08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c3dbdd985822a5fcc30d392dd896d8c2457d0ccbbe5d0da513ad6cbb67c2946c" + }, + { + "href": "./CB09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220af4ead420721055a29ee2773427fbcb34d0ccee5cb271e1b0a717b123500a379" + }, + { + "href": "./CB09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f422db40284baa49993c72a1d721f6f0f3370e3b174ab1dd7ec181c90004f66" + }, + { + "href": "./CB09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e54201d3656a8059d2209facd126305ad3c47d005ce1cf2d54be437db08e616" + }, + { + "href": "./CB09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055416b6ac13555d71b10b4d8346b6683bcbc80d30abdb06a8570a06e3a0dc632" + }, + { + "href": "./CB09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204dc2464c3a19963745f6c1ced41622a9ab072e4776ecc2be2fbc19f88a7f7637" + }, + { + "href": "./CB09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec879da9ade66c1b22b19e2f1d4d217cdaf4d09767ee6ad43b87557f3de6d006" + }, + { + "href": "./CB09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc1235974674c641f3d3be6079e642a3151986a6224bd3c324bc68bbd3a15258" + }, + { + "href": "./CB09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220281feac57041536f731eaa5f0b29be8a888571aa97a669e68df6bff0fcd4b204" + }, + { + "href": "./CB09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063f59935d90e35ecdf7a23e5d6a92f50f8572d01636cafa881000ec47793848b" + }, + { + "href": "./CB09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000964aef8056f68d1111853b5c63d54b57c72b354fb8ad81c143c1f252407e6f" + }, + { + "href": "./CB09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cbe3598d7f27fc61a116c5836f4f1d54ff4d1eca2512ece30310661d2f95fbb" + }, + { + "href": "./CC07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201299e08a30674315008e2a69090512c91a431f93420a2e03b827ba29bbf83831" + }, + { + "href": "./CC07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a3bc0cbde25eeb464dc08d1aeee0f9b9c208265cdf18932e59e42f57b2709b0" + }, + { + "href": "./CC07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f55dde87bc234e44ab61e6850d021f5e9531c5d6dfd4ca3aca1dd9a3f99d0821" + }, + { + "href": "./CC07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9b0fe8c04bf02055e003c931676477b977620eb2aa275e662c27636aa96debd" + }, + { + "href": "./CC07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f57e3c80b743fda71a724a4a170cf1f83b7a6cda2e9995e23c77bbe62830e5b5" + }, + { + "href": "./CC07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4c542b00b64079a97f63072afb3ff74fcd628743be2f1e3cf4ba9d83a8b12d1" + }, + { + "href": "./CC07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203211f94379f23a61e2476c28e10027b146c657e9c54ca889e1cf5d3796a36f7e" + }, + { + "href": "./CC07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb0700ef75c37bed6b6ea5aad42b724766c0d8dd97449222b6df7c9c49b6dc65" + }, + { + "href": "./CC07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf3e3a3efcffe8abc5ee6fe5c4d6a065088b382187795534f12cbb95b36435af" + }, + { + "href": "./CC07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220347ae4fa05b509a8149d3e99ca1d5e60e1e1768fba1a36cc4543b409ae329cae" + }, + { + "href": "./CC07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aae697b4c5da60f88f3918cd8996c3960537075abdd347fcb12638c7b9a0ae7a" + }, + { + "href": "./CC07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220585c33f33fcf64fee1695e39407e009b067f6ec230fe9c9883313d9b14d36ce1" + }, + { + "href": "./CC07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed3b5e772c83f2ab6ddbf95868100904d1c22fc29a6e8d98c9b39c59ee454c57" + }, + { + "href": "./CC07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208967fef8fc5d60989b6e803f60b57bd3928d07a96501d66b1a3c91949a8b74b5" + }, + { + "href": "./CC07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8744e3a4c92f02a5adf1c8dcd5e43b501a738cf92ad46ce99b45f768d6d5a7c" + }, + { + "href": "./CC07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b41d83cc99939fb5d598f3ebbd15f0d8eca7d2e737273b2d0e2117105e448b18" + }, + { + "href": "./CC08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb0bcb577f3ccca5d79fbcf9ce43aa72097cb5e2b309f706568b5d3684a55ae1" + }, + { + "href": "./CC08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204043091ce1ce3192f77ef35cf6af58307fc0cdafb74c3d1d97a726fb5a5bab75" + }, + { + "href": "./CC08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b65813e8cdc28483aaf5b76da0d30cbe6c21a9bc634d706089e789d8981b9bd" + }, + { + "href": "./CC08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dcbc246842151d10450a1ed3a3bacfe83d7a611e2c9da1be2bdee8caf8a7df9c" + }, + { + "href": "./CC08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208854240ce0d0ffff5e9be18cb47723c9a399fa54e67800f8a11e25e040bd377a" + }, + { + "href": "./CC08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200489da65048a3142acf77f3bc1d79e27b1d177869de99ef452b18794e6757777" + }, + { + "href": "./CC08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ca0489009004c5965ca0fda9c47690fde491044fcc15fcb6fd3c416f80d17724" + }, + { + "href": "./CC08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0b66a5f82babadf779b3ca661a09faf91ef94572fb22d08f30da9660ac88c44" + }, + { + "href": "./CC08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3243f5112f06ebb567530e99194ad2ed67669c28987569ee675401f773e4958" + }, + { + "href": "./CC08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006bd47e3bb85a48a47de793d1c13b87c95f703c5563fff4a59804f723db58bf4" + }, + { + "href": "./CC08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb3b6d09f39edd5c15bc754d16b3b8e814169722a110174de28c7dc2629ba169" + }, + { + "href": "./CC08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4fdced50caa1ffb4db243a774114c7f574dd46405b18273793eadcc9ad56afb" + }, + { + "href": "./CC08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cb353f3f8c5df8eae19d61e9b693941195c316d48b1416a67365b81a9fa46f7e" + }, + { + "href": "./CC08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e082084b099c64136acbf6f2ebf40b3ea88ec1a9084f8bae9c633d7c33dd273d" + }, + { + "href": "./CC08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220755c3a91927c5db1cc78875e7fcd804681ccdf95e31214b4b0baa0d48d2442ff" + }, + { + "href": "./CC08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079f1bfffc28424b308413e12fec367dc41734700e04719af129ff7fcef6ced4d" + }, + { + "href": "./CC08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122089e0dd72a65406caa1790ecb97f2d53ea0022f2bc6d8372d97a80842f4274993" + }, + { + "href": "./CC08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a3ba58632b29922b21a1a1ad6b6a7fcb40aa46438b47b301c0eba095714b1fe" + }, + { + "href": "./CC08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206494f3eabc24948fb95e59e63fe4eb75ad455102c9775e8c33d83cbe20d4e348" + }, + { + "href": "./CC08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220551c8d7f2ff7ad90b87d16638e14037d32a18d62bcf20b96bd9ea355f410c9b9" + }, + { + "href": "./CC08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd73651bf3c58f7e226314612f72e045a4683bd26d3c04677d96ae56f273082d" + }, + { + "href": "./CC08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202b2bfae5dace744b79aaaa0bd715173f26bbd2ad92f81a16b5073a9c7c93111d" + }, + { + "href": "./CC08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204703e313da392c21f96a235096e9936bb7bda5ead4d4e7411fea580d1c176c76" + }, + { + "href": "./CC08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220215f6e5abceb46da1cc5dd3658d7fe51acdc6b43084b1f0ec6818768771a41ab" + }, + { + "href": "./CC08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205e9225b469bba7adfa75d22b2a8214d0da74d598387069fc50eaf1111393d998" + }, + { + "href": "./CC09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079b60aef598c7af849f280e34375b2e365916545e37334344a972ced887080fd" + }, + { + "href": "./CC09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d4e0f0c213e708daeda7f9e6bd19c8f8f1b32f97cb9a0d4cd2fe54260eedc69a" + }, + { + "href": "./CC09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ba2f92854ad2b88bbc3ae391cbbba583c1fda672abd1b3fbae8c1e09194ee6cb" + }, + { + "href": "./CC09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8fdcae5e59b1d1f10b864be008d4e4052139d6c3d127e9a7e5e5de60dc6cb09" + }, + { + "href": "./CC09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d35d2e9dddd6df5cdd7240d063bb505f50031e3bf38fbc966a1e0780e19f72fc" + }, + { + "href": "./CC09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202ec221ce3008eed9a860aa48d0cf522c8b6708cd0a8e4451b4a5f55aec4bd40a" + }, + { + "href": "./CC09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e087305c865561159af2676c3117af3c505ac3725567dfe704133bde196fd6b" + }, + { + "href": "./CC09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220770691741a26be143f0b5bba06cb59b01ff28a213b6d3fbf1c3d45a4771820fe" + }, + { + "href": "./CC09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7a47810e694584f242befd67a8a331cfa66d7ca58b3cefbc9454e9d3bf9e781" + }, + { + "href": "./CC09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122056fa5ec215e454d85bbc44cbede49103d93fa2e9ae8f48145ab8ca81a6a82ddb" + }, + { + "href": "./CC09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220005999f9a7e1ae5971e8a1eede214980062df3bd4efd177e8fe0fba107529b6e" + }, + { + "href": "./CC09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220516a525c41a84518c3e9f679e989b191b1e02eb7e088c867e71ff3075a4896f1" + }, + { + "href": "./CC09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e6012727ef8a64651ba117585924afdaed60acb14ca8ca075c5dc084a72291a7" + }, + { + "href": "./CC09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0b234822db2a7b4761b9f77715a8cf17c231fc7ba3dc873966c82bae2fa8781" + }, + { + "href": "./CC09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b56cf91818030ba473d19aed68410887d357e0a7dadcc7146468d24732b38143" + }, + { + "href": "./CC09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220309ff4d1f5731cbd38ff0df1860a998ab280b4bd72e4e63be1cc2f5b974eb6b7" + }, + { + "href": "./CC09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d0521e8319c85b8fe63862a70a80621d45949d29343d5449a407e33b3a1fd46" + }, + { + "href": "./CC09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d13b97d1a0896d98f15316e52b4ae1f91035c66b751b540e8d097fc84a12234" + }, + { + "href": "./CC09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050c47638de58c04b94a5cc0e259e4e9e4330b4c5bfde3228ed965a5a93f336f7" + }, + { + "href": "./CC09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e588b4ca7bf20026c31b059f5e55dd3cf4d9c231806aa759d2dc92873ec4d16f" + }, + { + "href": "./CC09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064dbcfcf01b69c43bb4f0d6bad3755bee7e4c656477aa38ed3539913cf1e00c4" + }, + { + "href": "./CC09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f8a806fa5cd02bc9668f93e528678b076e2bd8a5dd8fbc7f895fb4cf91285553" + }, + { + "href": "./CC09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019d49c752d9277658ad025850bc77599ba41874610610a2ae30396d3a7fdf5b6" + }, + { + "href": "./CC09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d815b6e74a5ae5508c3e4a6da43d7bf2143e7ea5661892c8def3c633c4ad0009" + }, + { + "href": "./CC09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094b4a43ff3ea02652a723014c001d1e0cdd053f1368f14c627347d3bf78a5f20" + }, + { + "href": "./CC10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088c2b629b95228cdc55d4652cf02d223ffbd2e31c7eec6b4cf99de626e447fd2" + }, + { + "href": "./CC10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200e7b8aecf1b3c78840d271667f8f1076f703fe3c85f8125ed6684ea5f16854d3" + }, + { + "href": "./CC10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c710d10f827a9303de19522b6e406f06ccad5b6370629453c384b4e6012de44a" + }, + { + "href": "./CC10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011ecc6338d5a6d0a0efeb6105e365442e1971fbf54aa17d1a0651a83546a527b" + }, + { + "href": "./CC10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064902c454765306aead732ac40c376f8c4022ddd7a9c72963ad09f86c77c2415" + }, + { + "href": "./CC10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122093a6856a56f1e05de8adec6efc837889b0fbda5229a921249a09aee73883cb8f" + }, + { + "href": "./CC11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220144d1019dba74a56353d1362daa4b0cc90b50fd7bcab57a97b9977ccabaa0b80" + }, + { + "href": "./CC11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cb2c8d74784cccc5ac608fa175535d4fdf145fdfd96db49a9f7dcf50ccd529a" + }, + { + "href": "./CC11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208024a158af88811e3316209d7b602ccc95a23934b000c8f33b24a78de3e1be18" + }, + { + "href": "./CC12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220898ae3a5e06813220f7d7614eeb3b6a39827016c30601d526cbb93c3f6a37ead" + }, + { + "href": "./CC12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e244cfae4080b588cf0bca033192cce03383806f454b5987291ff2ce74309b20" + }, + { + "href": "./CD06_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046cdb0e85c3ad2fbf0eb70f8d69216e5bb65ad054681705a57ac18b7cab4e0b9" + }, + { + "href": "./CD06_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea3d48fda85829914ecb84224d25742eda63f9dd12030523610c0a3922d6ce7f" + }, + { + "href": "./CD06_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205233c837cebeceb005b1e01780ac84055eefcb091040bc15b68ca69bbcd9aaaf" + }, + { + "href": "./CD06_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7370e75aac35f8e75526452bafa5530ba65d471782cb3f0bf40ef3acf5cd411" + }, + { + "href": "./CD06_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d73b7c0bdb2fa37a472ff83dfe7a0ff9bba71d04fa61dcc9fc1e661eedf11820" + }, + { + "href": "./CD07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c03780fd2af8444fbcce4c5f9f4c8684556aa21a9e2182bbec835da255f3189" + }, + { + "href": "./CD07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d085d818643fdc3bb2178415bf32d0665e8760f5f80ba71766749b0f458b852b" + }, + { + "href": "./CD07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092e792dd7b0ee187b8a1ea74bcc89db7fc92a24ca4cdda98c391281c063c11f5" + }, + { + "href": "./CD07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a51d6059669c28953ce282c38d299b7a9ecfaa65d5daa21b04341eab0530cff" + }, + { + "href": "./CD07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122078b0131fd0b3f8d470b47c8248e3fec2fb27f34df75a36a28f3d9ad853daffaa" + }, + { + "href": "./CD07_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201281a911b1b6714dd8c8e0f19b6384b2aca506993fdb8fefacc62960e95e433a" + }, + { + "href": "./CD07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d7658298b446498cf8ed18cc78f1bd93f4b1e7a701ec0f523fda1631869eb33" + }, + { + "href": "./CD07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203140cbf07c97a9778b94d3b4da9f9dd6678621b8d477d6fdb8e693fbabd08283" + }, + { + "href": "./CD07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f2afd47ff74bdc1840694200951516b17b355a3f8187ff32af0e7c06fb3da67" + }, + { + "href": "./CD07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070a634296ce9ae4785f7f5b41f3e1dbb000968c02283bfb4376c3cd78a39eb0d" + }, + { + "href": "./CD07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f398b68c7275cab6dd839dd59ae914326c08e34f71f4f846ba4d2d0468dfb40" + }, + { + "href": "./CD07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095776964bd8aabbaba5bab64a29c19a00c03292b54e19b896e7b40db5ce5eab6" + }, + { + "href": "./CD07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffa302d2472c055d6893c8ff9f0a81c3515941494405b94eba52b842d3d82b48" + }, + { + "href": "./CD07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021c80538046dae6c24df0c746893736fe399688c7ef21379b1ba67fd0b2f0ccc" + }, + { + "href": "./CD07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063216d8d98d420e62ff55caf82700ab0bec040bf95a83b33229073e79d984a2f" + }, + { + "href": "./CD07_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220829836f4ee37fbb07673c084be6783e444eeb31427c026d0f6a62730a259cc98" + }, + { + "href": "./CD07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201662277fae640a91afe9acf219bf16669f1b069b1ad30e7d7588f9f8a7f02cf2" + }, + { + "href": "./CD07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e5df671c0e187930c83bf2c8be45575d0896fcf1fdca5b7e1eb30285018b7603" + }, + { + "href": "./CD07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200085d50e8e38bc2350a200575d760b44181601c3028d0bb11c9f20b1b28ac9d5" + }, + { + "href": "./CD07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079281e6ecd1fe0c47aae0e03d809cbf43c67189dec341a4780d6fa82b3b74eff" + }, + { + "href": "./CD07_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201dfae0e6295f56fcc1bbf3cbe32d16116cfffa4732b18edcb40d4c337f68ae41" + }, + { + "href": "./CD07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220081b36a57f04acfcef2ee13469f3f9e4e7b4e414f8ce43bbd7cd6cfbde88040c" + }, + { + "href": "./CD07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220317b895a1f64c470d796303fef59206a96bfbd08f8d8b590e3a2fcee7af4955a" + }, + { + "href": "./CD07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ba2aedf21ddd232504f5d085ba46948f1c79f1ee34499a76879730e4e9d6dfb" + }, + { + "href": "./CD07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0deff7b6fcabae274d0e2badef5e70372d1f60ab9bba333698d048e7b1b93d4" + }, + { + "href": "./CD08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205ee287626ab8ab7b2d72b66ec3970881a69b09469f513bbcf15149e7434501a6" + }, + { + "href": "./CD08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9e731a814afa396846c825e365dec8040e324716169e7c5109d25ebb0dd54c9" + }, + { + "href": "./CD08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f982078980e039c86872a2a99c152245b4c5c75a50de9b030d93754fa5b81f7c" + }, + { + "href": "./CD08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0531f2d703b8812ca613e16a0ae0b5761dfb3426145fd19f395fce12c528578" + }, + { + "href": "./CD08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070624a40eab0ee78b04395b249c2946ff6a6ad0c1274d6fd21b2477c1ca6201c" + }, + { + "href": "./CD08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c2976ed136ee992712b47107198a2c7a28fb91979700a0d1198c1e7360fda658" + }, + { + "href": "./CD08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200ede70667333c14589d88f5022b004dbf66144681014ace7e424a3f2a87db825" + }, + { + "href": "./CD08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb5b102705d6ff7e39ca4d85106cf4d8a14a7cd65bc66ee40fefa1632eabab29" + }, + { + "href": "./CD08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df1cd877d38e860d42b71a5431840ae968e146e428e3d31a151aff5e826a8ce3" + }, + { + "href": "./CD08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e9d3f83c9f4cc99301f5bcbf9a1abceb70dd37c3cb0c4c8bd20677d9ec3a537" + }, + { + "href": "./CD08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058ee3d656190fc11902346f06557075eb1e8534aa5396d4f097c095010fe3b91" + }, + { + "href": "./CD08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206aaaad0712c3ce908bb961b234b4ee9d7f91a62b56f8879f0b3c1d222beb3b9c" + }, + { + "href": "./CD08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8e19fa7eef6ed136c6c277226ab8caaab6e132da86afba6187f85b59a6b7401" + }, + { + "href": "./CD08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122001e8f5403b56eb7f5843b87eb8a900d1217ff8230a0f6a9b56fd50d0c4c63d3a" + }, + { + "href": "./CD08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204857250b15975091f8270f0e8ba256bac9dc783af5ae11cea839e12ea44981b5" + }, + { + "href": "./CD08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220812afcf846f4e1dbe9f020b2c2635a835dece87aa25c4b0fcfcdbc77bee383ff" + }, + { + "href": "./CD08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b888c155c75f8e1e7f0a8e2972727c90686f02e0e5c2c64f16f66c84a8f5f9f" + }, + { + "href": "./CD08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204260d8efa9986936ba794ca049e95f75fad214518913559e565c957a3f37a2bd" + }, + { + "href": "./CD08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122098930f3298b6726b5f06dfc3fc46109c39cad6e765fdd3076051cfaea8b00b4a" + }, + { + "href": "./CD08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b05d853bbc51fe49cc17d57638f9712a725c60e50ef937deb9ca71fc163807b" + }, + { + "href": "./CD08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047ca6e987e5d334eb3f7fdd2f2de64ea91aa808de7c96302fc2cb54ce8bfe861" + }, + { + "href": "./CD08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043188f6be07c1b5c14d7e93e4ff6869cfb6ab8a37eae4dbeff9870b62c9c1a18" + }, + { + "href": "./CD08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d936a08a95bab50c51035a389d0b5a1c8daae305556cfb53b092db848bf955d6" + }, + { + "href": "./CD08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220504f20ed595d7f0220f82fa4eb2648c8dea51be6a063b580da06c33080ad1880" + }, + { + "href": "./CD08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a240534609cda8f56e5b24998a1523a549706dcf54629bcee21167ffa6b46bf8" + }, + { + "href": "./CD09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bb10caa97433b20bc0d765c9aa0004f8ec5c7ae25366bf7a3e3a3dc43d2a468" + }, + { + "href": "./CD09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd7453574e896f6dbe25add2c58119416befe26d82cbd3856a4ddce5111cf96d" + }, + { + "href": "./CD09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208914b7f587823dc66d25190b0ebea677185b44d0342cc63c828cf527a5ceacbe" + }, + { + "href": "./CD09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220841a491f709071255461e8f044b117b182b209f093bdbf1a90cc803cb954e965" + }, + { + "href": "./CD09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c48d300758459309d1b04e471eaf976b43ac9f510b4c9e9c6efbd7ed1010177" + }, + { + "href": "./CD09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205cf3621aae42996aecdad031ac3bff15f85d3390199ebdf728a4dc8dfd2b5c5e" + }, + { + "href": "./CD09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220982e48b92e13c16f7d531e1be1e880e41eac3927e9904cd863eae6d414afb243" + }, + { + "href": "./CD09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028e4498621d8c42bf905667c456a932084262c8a31f3b37ad3a10edd4717f302" + }, + { + "href": "./CD09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024889bd3b73f8b500067f5d984c5316ce82dc96bfcb02bdf35a4aa13e041f4b1" + }, + { + "href": "./CD09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201920519e80d89020f2b1bf5ec7c33af37111fc3b561d7cfa3193f4d36d04a431" + }, + { + "href": "./CD09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220410a68c1fa0832906993a83e0e0d9cc62a8c825b9f5c755f15ffc6002ef17dc7" + }, + { + "href": "./CD09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e611d702b7a51456a3167905d0d67e33cb0ed3bac07661cca683d94ea1ada30e" + }, + { + "href": "./CD09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220559089d2b893b8408d9f051314eadb68618697633e04ff71582208c7ff46f045" + }, + { + "href": "./CD09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d3eae6f06b816e36df89698a9140db2411406491b23c298513bf19ed4000e87" + }, + { + "href": "./CD09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c67f0a3843e296c9a5519f64a8914a71ce076aaef74b1348b67a7a4535fa926d" + }, + { + "href": "./CD09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0b5f6ec6b0754f100a07b54eb27208a230337a3e7272f0d377a7e19f3efe364" + }, + { + "href": "./CD09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095e83a25fc8223b1cb5e900318bdfc0d4d75e8cef56569a28495a9990e8138e7" + }, + { + "href": "./CD09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c9be5cae46546ae1ed8556d844552cefc67ff2f0c57930731a02da04197b062" + }, + { + "href": "./CD09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208ece76f433e9d87251d3201cbaafedc384668ebdaef522b68a9b547fecf22987" + }, + { + "href": "./CD09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dd706a56e33befc2d66cfc011f2335191dcd13449dc7c43462765d3e0460e11f" + }, + { + "href": "./CD09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a54e4039f8fa0b40a39bd4c705175877925c23d7f7fc754ce3aa4778261fd41" + }, + { + "href": "./CD09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028d6a8d16d366c61d8780e49b11e49054fdf78c20eda26957a403c442bf5b93d" + }, + { + "href": "./CD09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204de334475d1b426588c0bc5ce218971cc4adea89d60066a7a4e64a8a018c75e5" + }, + { + "href": "./CD09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034e3b482f3970ba909106f79749c3cf5616132ddb59417e166637eda00521f74" + }, + { + "href": "./CD09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5987afdefd32ca4eeb17412c0eb39da54b5362d45667c2576f38c0214a54e1e" + }, + { + "href": "./CD10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cf024259f4fed626905c9c6b39844049bce946e7d52f20814f0099a8998f096" + }, + { + "href": "./CD10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d210d44e83f7c23bb31aca94ba9c0bfd18d8231699db4da813675af71a8cb6c8" + }, + { + "href": "./CD10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209c17bd0d5075df8ed1b83356f4513efb3d90142b416ca121fd4bdd79c8318d13" + }, + { + "href": "./CD10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122072013b0c845294e2280b0309f8061c95dc4c2d4813a5fddd22e79963c4a1f9f7" + }, + { + "href": "./CD10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067f425504959ead8bd146e136906f1047d3e59f4e4403da4a8057b3891f7dbc2" + }, + { + "href": "./CD10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122061f47edce2422610d51755cc5f3f4bde6a7bf16ee6f027633eff6a4d97261cbc" + }, + { + "href": "./CD10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee25379a387fc10d2944efd0cbb4be5e95d45f3e7dba19c0568c61ee8a80111b" + }, + { + "href": "./CD10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220984cef609feee49b67a0d2516ff534713a38054d466a5c47eff80b99b2cd18ac" + }, + { + "href": "./CD10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122031f70d5d036b1ffa3ad546d40631f4931ada4056b41af00a47e253e14e737578" + }, + { + "href": "./CD10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fceb383a3e7d86d225d7ad71da17c7a6f2b695476d9d2877a0e97458d5b21ff5" + }, + { + "href": "./CD10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085d9f13d002505879ba588e0c115b1621d5e0ac3412006d0ae33c31f1aff3def" + }, + { + "href": "./CD10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220349c4eeabcbd17f13f39b90642d9eb689d12df36cce84fd070acdfce60c8dd14" + }, + { + "href": "./CD10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122063484de7abcd0a4453c3896f6e5a2d08640ca2e2159606a63ed2c9a48cb1cc14" + }, + { + "href": "./CD10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cc11f861021d3ba6365443c7df14450a97c7a6f8e4c1cc3c0c001c19bd21e2a" + }, + { + "href": "./CD10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202d715c64aef52ab2e05a87703212477573360e488400355f45fe6916546a6ccb" + }, + { + "href": "./CD10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088f7097ae4d91c1328a503b74504704059d9cf76aaf7ecdc808e86c974d3ef08" + }, + { + "href": "./CD10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9d4960ee305d3e727460dc78f906784ccfb8f05b2bd67785e303aaec5759f68" + }, + { + "href": "./CD10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f29d3b351051227669b54f245ea2762b499ff7dc051dccec8dc4cb883f304de6" + }, + { + "href": "./CD10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085270a13bb768ae6441c05ed9133b439c87982beb02071f01a7bcf8f5b83204c" + }, + { + "href": "./CD10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220548bf0a49107823bb9ab0de4fb8beee306102b80041e682c83b903c06466bcd2" + }, + { + "href": "./CD10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220caeb88b3db11deee77adeec7ace824b119cbfb3e1188bc742411c004d691e2ce" + }, + { + "href": "./CD10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220621f8640afe662379e9070412fc879b5fa6aa6a37b5b94ec97d252bbdccc83be" + }, + { + "href": "./CD10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201e5ec70b67f3c9fdf5c20a95de53e45f019ff49e50d99360a511e9207208a66a" + }, + { + "href": "./CD10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200dc07ae58903070fc8a8738e1aaf11c10663909abc12d25c331175b7b1a59e8e" + }, + { + "href": "./CD10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220717215aa31c99483032c9e296c582fa8353fde2201bfa1f919fbe150c6b2bdc8" + }, + { + "href": "./CD11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025f0719b4bb7fa5e0bdf19b978cc38258a677e27accd605e3d4c611adb735815" + }, + { + "href": "./CD11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055c4f004a2eaa822e54d9b35e6549eb27bfc0f9562d22d1a0631277f47008fde" + }, + { + "href": "./CD11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a96045b959e61994c4ef4196172cebd5d61a6f3ca2c7132a2cb625a35e550fab" + }, + { + "href": "./CD11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088526979d7e8c78ffefa4323f297983790b53989dca28d40eaa2ea4e81cc0562" + }, + { + "href": "./CD11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202092ddce0ea66c81be31ed3a29f50c2de67b5a87274ed529bfbab763f54a4eda" + }, + { + "href": "./CD11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec2dd5cbb155bc41b33c7904539a661d074d2cfcf0d5f3b72e07582de8632cf7" + }, + { + "href": "./CD11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208afeae6f334a79db20fb3343cee3ec2bd927d0fae9f1648c8d90ed60122b5b3c" + }, + { + "href": "./CD11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046466906ca558f024de1f87f100cbcb408a6e03455219bbf971f4ae7c2a7b438" + }, + { + "href": "./CD11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d2eeed58ccdb38bb7a36bc6bd45be53d5694e31b2242eba14e19c442e33f714" + }, + { + "href": "./CD11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e05be9b042dd76c818dbb2c5ae816f07febbd6819cd8e2fe0325fd5ed4e38946" + }, + { + "href": "./CD11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122026a9ea1d6953c0e16139b0064c9cad4b8e68066a7b70dd764515012ae93a687e" + }, + { + "href": "./CD11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122020aa5fcb8fd0bd5d5e265df5befee00665f8028324ccf8032e252c161eadfccc" + }, + { + "href": "./CD11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220809523cd4c27813530534484bdb245beb4533bb0e8890c34ee9ff71cdee9f906" + }, + { + "href": "./CD11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220677ad76e0920e9f974cc9742837256faa674a1ce205eeb8050a8ec6e62d48bfa" + }, + { + "href": "./CD11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f93961e727d3634d74cf73dff8482a0b000057dd6900daade18e6daa5541d329" + }, + { + "href": "./CD11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5c428a775b7dbd7a6a7f3d42e250f02996c77ea30394700293339a0f8b1465a" + }, + { + "href": "./CD11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed415a00ab8e2444bf58cedf7a4b55ddb0efe20b121d2191e6915c59078d0db8" + }, + { + "href": "./CD11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a3cf3c4f24953b88380fe8100cf9870b22700b4bd8d1eaaf37124f224d72ddb" + }, + { + "href": "./CD11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065dd2d4b8ad1938baee5e8359da177732db3ccace360fee20648290ebf7a1b01" + }, + { + "href": "./CD11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220908718fdee3ea4fc7bc19bc51074114a7bd2c620591267b59948f1e22b283018" + }, + { + "href": "./CD11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ae66401dc10bd4dbed988e4b88e216ce5861f2f99b964c93084c775a7c6e0c64" + }, + { + "href": "./CD11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206fa42735626444f067a5a707fa49b0d37640fa4d945d66016fa6813357f06de2" + }, + { + "href": "./CD11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cdb088319db157ec62136223fa14684c4d34d0ffae01ebb4d31b4c7992b94d77" + }, + { + "href": "./CD11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ac6b15c73ea57217eb742a1bf0b229009081a1392d86691ff4f9a5ca5d2cad4" + }, + { + "href": "./CD12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f16e8728585c3bdbabe4495b57bda49eac63aea506a178670b84e1ad857ae75f" + }, + { + "href": "./CD12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091fceae13ff8d278a6d76fb0a3f280c3ea0fb16242ba50ac51d4e19b6a005c15" + }, + { + "href": "./CD12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220006952cc419ea64d2cc36371a0227417abcf414a518858b5b2779f2f4a15a8eb" + }, + { + "href": "./CD12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122018c0b2a544054ca4df595602b7b8f9ab79a7a5978b7efdaba7157b82b25680ea" + }, + { + "href": "./CD12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220355fab6c7337ac1125c5021b2a1c3917ac3d2fc1b053b900d22c30876f6e10cb" + }, + { + "href": "./CD12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075930eb0a54c44bfd28fe98fd3ee9a21f209bef50c8391d3dff703092c4826e4" + }, + { + "href": "./CD12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206bd2c938640770244c21f3968bf03fe81c9d4f23d7b77867d0062eceb4a831f9" + }, + { + "href": "./CD12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c668e75ffc1adb6a3c5bf1e2f6066c0148c4dda844f108ef922e1b59b9db578" + }, + { + "href": "./CD12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0c2acec37ec178e901973d830050ce654e6d8bb237145f5642cb121515aadda" + }, + { + "href": "./CD12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201347e7f90e0f1ed0fb294c2663017c626baeefda1b80d7debcf6ae3b49db2552" + }, + { + "href": "./CD12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205530cfbc2b727d4b1f4b9805b7b2890a07c1d8d5384df2d4444cbd08090c3945" + }, + { + "href": "./CD12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3e9e7200a3e02d3dd1d748954eef79cfaa9be2ac138aa95fa22c5af8108d658" + }, + { + "href": "./CD12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3e70eab5aef1b095661099f4a01c3c8a16592ef45bb823167293493d4bed0b0" + }, + { + "href": "./CD12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122021869fc0e191ef46c0ef7fa2278391dcaf694b2e126f0372226b2a6a2f5b4173" + }, + { + "href": "./CD12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b59154cbcdde26a9a122851e3ca52444bb4942ef2ccb2e6468a3667634bcf53" + }, + { + "href": "./CD12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220098871b814a2be0213e576b896953882724a8db2f56e080897ce928e15c919a3" + }, + { + "href": "./CD12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209bbec080db864a8752f0cc61b7fdfa960ee2af087511b522f7a28860afc39dde" + }, + { + "href": "./CD12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e185d5ef07bfa9de195909106eb782a40667a9c58d67d67cd5a984a7ed6e2b35" + }, + { + "href": "./CD12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f322bb7d6eea4789f988ab73f10cc0500b7c0a8bd40d444f241ebc069c48c3a9" + }, + { + "href": "./CD12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207adea0255fbb2cbdaa179edfe6c54b917950d42a736e12297adc725d88c70595" + }, + { + "href": "./CD12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220088de17c1f4e54d52b148dda92ee9888c11696c20c4ad41cda16fb8f3d44bafe" + }, + { + "href": "./CD12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd00850e2f2e5cef5c9428fde30dc39ff800b802eb764628dd116c8f06aada18" + }, + { + "href": "./CD12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220085fad9c4488ee55ee0578e5b4d4961147d59b8d36d1073d490120f0ed2e83db" + }, + { + "href": "./CD12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220efa63b31fc9dd4b07f8b473bfeeec6822353eb01c4d1ca0ffe5d26b85f2d3951" + }, + { + "href": "./CD13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eaaa88f3837b149cf0dd969a23d974e5860cea7984088ae730d045f24cdc4773" + }, + { + "href": "./CD13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220650b671301c11092934cf0cdd2636c4f617276442dc3f4b952e751de5dfde535" + }, + { + "href": "./CE06_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d91c6cd21aec3b2d05c3d1b0e9c33e8fb3b4fbbf8f153ca9694a02d9cb02e96d" + }, + { + "href": "./CE06_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207bb920ebad3de91510780e4c3e952738b5192f62c6e6c1db74b9eaad5055efae" + }, + { + "href": "./CE07_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207befae874118ec804cd8311d4176437c42dc95dc1c9a71b0218a5387f604bbed" + }, + { + "href": "./CE07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0b026c1e589cc30d42bfc12f701657069e24e0e6d42f5d90723aaad9b28b19c" + }, + { + "href": "./CE07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4a83c4aa1faa0db1bc860b2bfa410ede503575386653868100ca28b32c08954" + }, + { + "href": "./CE07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073e6ed8af87a3e5c84c2244a0084c2740684d1cc90c064dae46e494a410f455a" + }, + { + "href": "./CE07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cf3220711d662ce49f981c0a452669bce6a6a09d443f92b0e41f0be2b5a8d06" + }, + { + "href": "./CE07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220151b112b820f8e5cda2259420c7b68d9d5309b3a66f1993452da01ed56b337a5" + }, + { + "href": "./CE07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a21b9941375ee149cd1edbffb40caf73f8895f7a9d7c98fe1782df77b9cd0697" + }, + { + "href": "./CE07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b2b7e9aece1e845f330b92db92a1ac082793e6e950d77b67fdcad6ae32a41abe" + }, + { + "href": "./CE07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122034eac18e62aa349cb9d2a1d5e841ffd8dedae497db4a1ee91410415ccfc974f0" + }, + { + "href": "./CE07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd4dc6749418dd02143ac1a13dca9b527c4a4bd3f6609df882f3615314b22b9c" + }, + { + "href": "./CE07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220157a31f09872767a5acdee12913bce0e45138bd58fc43a78c36b119c996dc638" + }, + { + "href": "./CE07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f68d54ec4b53ab587e3b1bfa0feddb73461f01ae269b7ffd0587fc2307b8893" + }, + { + "href": "./CE07_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c9d46b01ba96b9015871c36e278603d124ab53e68e36c69b0fc47c6c5819fe3" + }, + { + "href": "./CE07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200750449d6212442ae4f69c426e58d9eeb4ccb01f04a8f4bc0d8e28ebf004fd11" + }, + { + "href": "./CE08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201bd7d3aef7be9f6458690d5a0169a93268a3a9e6c418c2d6ac48951a9df42551" + }, + { + "href": "./CE08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd2f02a48d78e06b736eb6e8d8fe5f75ddb0902a15bedab109b20aee6b918faf" + }, + { + "href": "./CE08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b7d603b98dc1e5143900224633d35f39ca5c48bb426acd9ed2deb92672b3229" + }, + { + "href": "./CE08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220917eb9e860bce82df09c9ef0761fe74b49644a50618b5061746723505414d497" + }, + { + "href": "./CE08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203f77678bb6a474518256d116d1a9dab629c4578ea6f2040aee910e7469f36314" + }, + { + "href": "./CE08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220732ef894908241a75708c510b728a11f028bfcd3ede1d3397b0fecc3b75be5fe" + }, + { + "href": "./CE08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220598ab5e6de9e6bdc26c170133e03782dfa550000186617484c61cd5412a54535" + }, + { + "href": "./CE08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209cd43f86f54bf1429b96b8ea95c6d9ca81d433c65aa0df723b4a0285ab850467" + }, + { + "href": "./CE08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220116363c2f020815050dc2768555308f4767995142459e7f37c1bd1218927f130" + }, + { + "href": "./CE08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207541943b9047b3315347652169f7af661820f8834211deeac43db28fa6f6c049" + }, + { + "href": "./CE08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d7fd546c56ee26abb59db345957cbe2fbdabc2c69e6cb3b93eb3c6e30914c96" + }, + { + "href": "./CE08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a0eb63190040a11cda41d8e33e7b7e7b5388e67bd3fa6def81af70fc2b32035" + }, + { + "href": "./CE08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062cc5ff52a64a399dab75214ccf1ef5da98cf23d2c9806a4db4308c428b41a35" + }, + { + "href": "./CE08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207fd545690ec249cdb5f78a0c20bdd4f2ac3755ee8b1573ec8c27de05bb528437" + }, + { + "href": "./CE08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee12db6d433e493a86613efa9d7d253036d65baa9699068e4cdda2b5e095c07a" + }, + { + "href": "./CE08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f0c48473d41bd19f1a9f58229d35230a561cd213d7f5b24f21dcc6d46734b1a8" + }, + { + "href": "./CE08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201f73451c454562d8c51f0d4ce275e60026b99222387a8076bc09333db3b51350" + }, + { + "href": "./CE08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122037a86f9ba76c18e494464eaf99aed065e15dc9df2b3a8ca44d91669bda81f81d" + }, + { + "href": "./CE08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb5729be23267e57cd14801f97389b335560cd310aa0af691aed754cc9bb36fb" + }, + { + "href": "./CE08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb1b0b23d5f150c73eb673206348fad52cafb256e7d42cda0f46b1ea97aed80d" + }, + { + "href": "./CE08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024b1fc4ab42b452825b46ec27ebd74d065a72d4b8ca5a1c071ff62480003b130" + }, + { + "href": "./CE08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220106c0dac8ed75e653c56e200b2f026f06ca5bef2de0d37c4c0dae42dd8484e9f" + }, + { + "href": "./CE08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9fa2ef2cf2abecd1019f667a09068e451e135b781f738be3e6ea1fec386592f" + }, + { + "href": "./CE08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099ef20d339fae1748a4732ec4665a915471aa6b92d82ef7caa7922f9006d04a6" + }, + { + "href": "./CE08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5e18e6013bed66a3bf9f6f5c17407e8ec83ffcf7567234d2ed8892c534b5693" + }, + { + "href": "./CE09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a31900c253f778bbd152c469003240eceff90f6efc8afa8a85d62be9f7eeb0f4" + }, + { + "href": "./CE09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202307df7e3b5356c9aa422e855e752f694c5c0d558bc207fd782d01dc6171106a" + }, + { + "href": "./CE09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220470193be4f38614068b5d7337726c63838d61e6910a748fd61a4ce963ca1720a" + }, + { + "href": "./CE09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069774a2882fce720a83b6a6afe943731a2136a9b1a3f5b46ec7993c9fdca6b65" + }, + { + "href": "./CE09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d41247e394aea79866c5ce19bfdb1ea21ce361a04263d59e6a5e614111807435" + }, + { + "href": "./CE09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122079853b1f240ad917d9c73f33cbd7faf850a753a9c4c3511d86227b010cfddd71" + }, + { + "href": "./CE09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed353ae1b240bb0a51e032418c968f4a149a7f1785c69b3e0d1524d1aaccb093" + }, + { + "href": "./CE09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208fb804aad45c3bba712df91250cccc57d30a689db5d54add498387791358f4fd" + }, + { + "href": "./CE09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207eba99f05c7ef69977873dc017d0f9eda1046a7f28077a383db8fe2b8eb45834" + }, + { + "href": "./CE09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1ed97c20f33dfcb8173379f665235e509e07b1aae71e700a2d17f7a3abeeb3b" + }, + { + "href": "./CE09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201abb482a5f9a1b3dd94efff69358466276240b192ed5762f84ca2f922fc7e174" + }, + { + "href": "./CE09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220255bd9452f7274523072cf42dc344a41e612c90a54d4d219e97828f036996a30" + }, + { + "href": "./CE09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208025ffa264d936942fa6b8e3501f91d46c48892d49279265c2c5a2c61e8a66f0" + }, + { + "href": "./CE09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abd122216531e760d35a050b2d1a6e2460244d81a38e3836c78754d9f70b2317" + }, + { + "href": "./CE09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c065c0f54935c8dce16a25d7b8e2e3c71d75a5c66abc669df8405adaca90d87" + }, + { + "href": "./CE09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219dae9fe43b54a525dadebf3f53882a945ef80935da4cb32e43a62788bf5843" + }, + { + "href": "./CE09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de2d0c662f0109716de56874ee369d57bfb28ead2922c7c4c398ba475b340cb0" + }, + { + "href": "./CE09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d2b40123cd023b6347b8f59daf036ad37f157a4d23324750c2b8d49e60c53129" + }, + { + "href": "./CE09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030fb1184e346264d4ab176afe1ba5edb61567aa953d546b394d7814e666b8095" + }, + { + "href": "./CE09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d9218060cc3db8925e1abbe460386354391ab567b8d5c860180204094edf1aa8" + }, + { + "href": "./CE09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220263e1de0b1e7de511b3923aa6b16596e5d710d12d87231989b65337c325606cb" + }, + { + "href": "./CE09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220466c0a54e5ba4aa73acdb43d2e27b669b0ea1958f2213e4c63e1cfef66455a89" + }, + { + "href": "./CE09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c19ec0afc62ee1217f5c34cf0f02fd7308a5397b0867bea6314a269fc2f1e453" + }, + { + "href": "./CE09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203cfde6f1e9abf27ea3592cb15a56cd3d7b7ce989f869c5bbfac6227eed172a84" + }, + { + "href": "./CE09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071f970be2fbc3c869ddead7c1b50f661aab7cf17df5fb705f87f8662d0d56204" + }, + { + "href": "./CE10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3b207fe0c98334d431304425c0a94fd9fb83725fb47c6aca3fda5df7195aaea" + }, + { + "href": "./CE10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d08f8e30de2dac47697959b5a4d93f62eaadba046ae629121b163cc98d2e021a" + }, + { + "href": "./CE10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057792a8f86a12764cc96107f96a3c0c1e0d87c71fae3ba0af0c404c08c96a94b" + }, + { + "href": "./CE10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202cee1a534bbf18c44caa7c1c279079f8acff3024c65344536757f07034dd40d6" + }, + { + "href": "./CE10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f21440b4a4222ba3904ee457adcb610a8564df5a83ea280e0bfb4915a3c5187" + }, + { + "href": "./CE10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220666246b5a91d4a7437f69e277c53dd335f330bb94ef2d724ec95a155c20acdb1" + }, + { + "href": "./CE10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e2a0653b29ae34fc925626e3dd0eb87d0b96374c907ae500d6c6eafe241c20a4" + }, + { + "href": "./CE10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075e3843b7a0804c501993ad72dfbec6db230e08e443d2d324cd5a3b9c0022f5b" + }, + { + "href": "./CE10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddd54e874b0a02f8d39cc17cb2386c74abafb234c7d5a4872684395524b0a4df" + }, + { + "href": "./CE10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011d717186c7e2d506f2b173842f7e086fa92559c474ae4575b396af95d0db20d" + }, + { + "href": "./CE10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202388f1dbf87664b6d2e996c0ad537e82e804c2a0bc1cd380fecb15a2d3781b10" + }, + { + "href": "./CE10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f78119c8142aed595f6177bdda05b71f8908108a5f7c2b5887bfd18eb6f9bbbc" + }, + { + "href": "./CE10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122067690a409a805942ba857ac2fca9ea537cf398884d4d39d289ccaef88671d2b9" + }, + { + "href": "./CE10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202fa1e8a0a77d13e98328f88eab0fdcc780c4036a48632dee65027f564bde30a8" + }, + { + "href": "./CE10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220234dec1ef6aaf901580c8242c9dbc316d33fb7061bfd4bac40b062fe611c56ce" + }, + { + "href": "./CE10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a07ac20887d4180713502ce776b439425f72210399298f029bdac02f7291d34c" + }, + { + "href": "./CE10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220caef74ef8def1444f30ef1abe0394087a75fd252cbb9f598627143bf692b51cb" + }, + { + "href": "./CE10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073b3c5c1e4e95ef8ebb55a721dbf8787bb13d345642dba40164b9130b09414ff" + }, + { + "href": "./CE10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220165527ab70336e17f17c0900422c72098a3af6e9263262cc241c2c580df254fc" + }, + { + "href": "./CE10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fee1078eb7e03d8f5fc704fb7b0377fe1f843b885beeb5093e3ea1aa2beaf451" + }, + { + "href": "./CE10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220990dc5115324d33af18ed9b8e24d1afb346443003e45b41a9ff9d97c7dc0a124" + }, + { + "href": "./CE10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220910d958ce16e97377a9b0b598ba1be1f25215998769b23c48df2051fc09d1bdd" + }, + { + "href": "./CE10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022157d0cb2f15c39a5f289b6537606d9986c41e279b2d9eeb89eaa504f13be88" + }, + { + "href": "./CE10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6f979a484f2361762d1fd0c84ab12411dcaeef22c3f8196d30073b158436744" + }, + { + "href": "./CE10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057799e8889eb1eccae6dff3bf034004466c825ec19b95ea572db97cddd05bc22" + }, + { + "href": "./CE11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a9e04c241890a5b8999e651a552fde5c4597712bfc3d092392da082bda357cde" + }, + { + "href": "./CE11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ed41553c77c443bf484120342123ae7bd31bbf311ada098328a048325e73c17a" + }, + { + "href": "./CE11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ea1510f9c3896b4dbe4db2790780914b7a2c2e16b66542019f09f705cc7770e5" + }, + { + "href": "./CE11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a856a254b0639f57ae887356868d784499ab4bbd3ff91aa6ca78ed40dbea84b" + }, + { + "href": "./CE11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff519e0fc1ed27b633b31f51b9ca07b8e018e520caf4e9a8f5f699227c784b78" + }, + { + "href": "./CE11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f669de972d40f9d3ac86692b6e71469281e4f0d0efc956b59088422c1fa260a8" + }, + { + "href": "./CE11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6f0afe572c5984182bd2be9bbe2f8eaebb00b14784cd6ca9e85ecc89f880cf3" + }, + { + "href": "./CE11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c8a8325c113a8eb8f459ccfa6227ba6de13a269af77c6ca952e79df8755649d4" + }, + { + "href": "./CE11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122040eebe81a7a24920bef6df1dbe518b69f66f484503975a61c65fff70a570e3be" + }, + { + "href": "./CE11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200a7ebc7fe583879024f98fce40ccf35fa77551d39488cc57f5d0d3f0ce83f1ec" + }, + { + "href": "./CE11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017e1f92106c1715771183b370bb121615f63acae43a6465d0513744d9abe94a5" + }, + { + "href": "./CE11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209774fa89e7b83cc169655e21203736063d68ec69a21a9ecd7edd1de252c28836" + }, + { + "href": "./CE11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122011d5c6e9f25d386afe3b9422802c52c704d5c6427eaf20a7e12853d90081f5c6" + }, + { + "href": "./CE11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220737e5f4cfcb53c9c7f81e49f2055c642d7f66aaba043312f0a8f511c2cd535ff" + }, + { + "href": "./CE11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207513f92c42a3ac93ebab28290e7b73e0d785c4d6019f2af521c59229efaab4f1" + }, + { + "href": "./CE11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf590dcd229a874bd875bf90d321d4d2649992a67170ec6067762cb17481434b" + }, + { + "href": "./CE11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220174014bf21656afbe8477c9e4679bae84e43d18b3df97e8642df01351abba327" + }, + { + "href": "./CE11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbfa5dd4544d1cf6ee872e71929328f055facf7e4add6b68967c9a3dab196951" + }, + { + "href": "./CE11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043f27477377318bd5fce6b49aa6b5f196a91e927e07524b6562778c7ba638b7a" + }, + { + "href": "./CE11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022014e1e374eeca97c21c2a3727a3386a16903f489fb13a124b469b1ab565f44" + }, + { + "href": "./CE11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d7134d42738be5378b47674f9b22722934a6ef39163a0cb5cc3eddb2374c408" + }, + { + "href": "./CE11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209db3d53de9c371fca3712ca94c0af7abe84353f8ccd33fb8b295e7b026ea03ea" + }, + { + "href": "./CE11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220be828873cb790204bbebc9c31c5d344bbeae41e0b39cc83370a098407e93867a" + }, + { + "href": "./CE11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202c19dcc334e043e0981357a68212ed0b44834c3d23028182b61536d864276d3f" + }, + { + "href": "./CE11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207056bfc38c1b6a72e7c952df28a18359c0a2cf0f066b725b67fe9a3fec6685de" + }, + { + "href": "./CE12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220835cd859a2ac0aa7f9795682d4615f8d29cdc600d6e8fba67d673137055bc1a1" + }, + { + "href": "./CE12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122058e9232a6b7d4ebce1d528f045f8e269e9336aef316f2e27a83690a2ae9f2ace" + }, + { + "href": "./CE12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d78b954ef657f34141efebbc16600b8158787d5ce8dd7c0badaebe87708108ee" + }, + { + "href": "./CE12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046dc62e61802bdf3fc9f7a6eb71cf5be546c785777e14933db367244314cb21b" + }, + { + "href": "./CE12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5565fdcb356d1a6dfa33402c8d5e13f7b8c932a42e05188e9dd1cb0f70b1324" + }, + { + "href": "./CE12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209814f5627ec4b64e873ad303191d269f57a45a77223561d8ed24bbe825d6eea5" + }, + { + "href": "./CE12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208140b418694264e9e7797df808e2d5d97215ca49980dd8ffc3286106c3f47ede" + }, + { + "href": "./CE12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b7478d4bec1600541166ae6e309911d9ec5638980a448b075283cc4dfa4472d" + }, + { + "href": "./CE12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b3f7294f311d06f51b52d98998ea52d976166cf0902f8d563bce194d8cae8bf5" + }, + { + "href": "./CE12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a37ca9bef5926032dd1dff801c3aadd1f4797922cbbbb9a5f15fe32610c99c35" + }, + { + "href": "./CE12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a09ecdef16a8de3d126d85a22847fe22f7a1baff5824a7fb0aea5b3c222806d" + }, + { + "href": "./CE12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c47a2d8d379c9c7daff3447ef3f34806d5ad714c159b71181614fb77ea2d60d5" + }, + { + "href": "./CE12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a51d4708f508654ac42e6b5a1754aba8ff69ddb21b00509b11ea8b94a8f167f3" + }, + { + "href": "./CE12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204bf1529d09fdfbc70b37dfa5afdc628b0a5853c466a2b61938ad82e7d6404a23" + }, + { + "href": "./CE12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220273332b1b6890b63d1ad6bb1b00942492213dc4660539efce8d1fc985f6db0c2" + }, + { + "href": "./CE12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220285130361499da01addc89e2030586a19f75b8d38fa63ca589df2fbdfbb34111" + }, + { + "href": "./CE12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060bd954ba6bc6954eda8992b5f13c955b8031d926158b86a9e980f3b2b9c73cc" + }, + { + "href": "./CE12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205fa95b67f6612c5880f84c9e13ac4881e2d27768d6728c9123379bba334dc8de" + }, + { + "href": "./CE12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052b942eda8f432c6bcae410e5c2f48ad0272e1e727a8711e6bb104e5fcd0e658" + }, + { + "href": "./CE12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202dd4251b365b74e899406172252e3f92304b54a2253368f9027818471a121d68" + }, + { + "href": "./CE12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9e2651d2468706d42741ec19c2987dc9c7750ed95df1d0955202745c9384b69" + }, + { + "href": "./CF07_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205bd4687abb79e2b8cd6aa1b29124c7d2d3e9cc5dfe25f5d3c74d50f3cc6992c0" + }, + { + "href": "./CF07_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab1144c25804f4c8743cf6429e82ce3ed9731c7cf2f722f0a6893fb92cb1c5d1" + }, + { + "href": "./CF07_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ec31f7e2c787ee6d22e3c147ae6744384f7c05aa7b8cb6cc78774a1c2f67d6ac" + }, + { + "href": "./CF07_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f9240b94935a1417ee7719224db90c98e302385177c0a26b2babc2435c71ae1" + }, + { + "href": "./CF07_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203e69ae77b76827145dc43e7a00d202e28a2cbe030ba192e46b29c573987a54b2" + }, + { + "href": "./CF07_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8f07a19abb6d2bb82880244aef73f76067c7288aa7793d3750ba85ad595c6a5" + }, + { + "href": "./CF07_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff8330cfb5f9927ef6c30d459ee3e0855042142a8b4f64091a21a85ab74bf7d3" + }, + { + "href": "./CF07_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080484028264f175f0a4bbf0d560fc0180ba9e533212f7c17dde5f01caf299164" + }, + { + "href": "./CF07_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cebf27daaf4176dec4031abe7def1020f54aab2cedf8a2a8331cd8a51e1cfbd" + }, + { + "href": "./CF07_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f23251d978c5e484efb2650847379d6a3caa3f6842cd62618adcb3ea6f834395" + }, + { + "href": "./CF07_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c6de47077dc0c27776f4577f3443da59242a6baec7a014f5febcb6874a4c0301" + }, + { + "href": "./CF07_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064082dfaf6ec9589ff563b5b20a32ea9ad3a46d78a76d66000c67e632352f15e" + }, + { + "href": "./CF07_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010e62ea45c88c143d85b6d3dc2e1e9178859d7049356019d77add8a680fdb823" + }, + { + "href": "./CF07_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab2adb84d5971a32a42764bef98259ad4b470042d8042f6ee3b8b7e4b6923222" + }, + { + "href": "./CF07_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a982159523b5e2cad01afd83915fd429625a1d6b7c96b1c7b7d3b3ba0f07860" + }, + { + "href": "./CF07_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bd34eeab1bc5b4cfc2a896df260de6a45ee65dc3ee9f9aeaa8338c09125cca9d" + }, + { + "href": "./CF07_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208badaedaeeacb0835c7f784988576495f5e505d167c76fe97584e78c7247c6b3" + }, + { + "href": "./CF07_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd829d2daa5ec11b54f9049ed4e3782233d83c813068162fe9f47dcacaeb4e95" + }, + { + "href": "./CF07_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220369103fd4b43aa6388c3aa9ac4e47ca5e1f5fc023c015ff0295a60c981f5eea8" + }, + { + "href": "./CF07_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201d68e7847665ff90ed9cd669b189808b55dadde5cb31398082ae7c3810686c01" + }, + { + "href": "./CF08_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200b5f61d12ebebe0db5b31182f57559f38843588f8b3f11c799c1ef13b51fad63" + }, + { + "href": "./CF08_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220842f6bd2609aa03849f103ea29ed15ee24a023ae9b74e017e5ff0d28da533fef" + }, + { + "href": "./CF08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220df5b221a22e279da3f10edd0db41389f07a3c8da5735d546bb920d1742bac4b7" + }, + { + "href": "./CF08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a1e82348761a59c097814b0c68d52f2f98a3a4db7fe266e520d783eb0ab74a0" + }, + { + "href": "./CF08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cff8f42d3042aaff564dcfae17d8294b287965235c2fb96d90b634977d8bb4ef" + }, + { + "href": "./CF08_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080006b99d84841951305f43f99f37fbdf09c593ffa41f0407f79cad0e32b0288" + }, + { + "href": "./CF08_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9b1678f34f183b20f42fc9bc1778fb057c9192bcbb8ca728a8b6947f2cb4783" + }, + { + "href": "./CF08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f06aa2ca487bd3292220db80a4eb2edfc0de250c7ef0ddd67edcf009a19e105" + }, + { + "href": "./CF08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203a68b3fac65dcc99c7b1da8d4572dd888db6823ff6ac9601fb3f577b327e9de7" + }, + { + "href": "./CF08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f115b1cfeb13941246bb492e4cb21e0373e7eaaa81f84237ecf75da760661ec" + }, + { + "href": "./CF08_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208777254f4578dc92d9efc905feff92ada632f4c93334fbb58816955d4f1319ec" + }, + { + "href": "./CF08_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220151a47cb444af560eab8a62882a7118662c19af9ef43c0e5e90f12c99116accf" + }, + { + "href": "./CF08_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122070548f70085410e77a0ce1f858767bd30065a6fbfd162f13adff30297917a4d2" + }, + { + "href": "./CF08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a51e35e92bee074b9badb6d34ebee180cbebf67ff78652d14998c6cf8658aeb5" + }, + { + "href": "./CF08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e5a72cec725ac93d5fb7269bc7964ad6f3e393878aa02ca1ffa2bd9567efc66" + }, + { + "href": "./CF08_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086b1badfee30c3d219838e27110f94cfb4149b0be12519712c24d41c56d0a695" + }, + { + "href": "./CF08_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071a13713c29fc1af6d9cf5c84ba4754af700212f4498e932de88654b409d3a39" + }, + { + "href": "./CF08_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a20f0efe519d4b8373b996f9863b5f21f65da6b01fe5f1054bb5c3092b069021" + }, + { + "href": "./CF08_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d24c174be22d0b97dff16ec6c44342d52501adefb8ff26b5fd9af36fa80aa2f" + }, + { + "href": "./CF08_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201eec5498760b257d4afbcff88baade4b40feb3ce1087d20ec0e67ab053880692" + }, + { + "href": "./CF08_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122008047447b0ada1ba471d79bd8d83a72d3548af0e0048ff4ef9ae4f00a02813f8" + }, + { + "href": "./CF08_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c82992a75682abd58eafe1d7da98b410b27c6da0505d0ef803f36e0718f9eeb9" + }, + { + "href": "./CF08_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076955e0fce15e86338349628cfb55c76b23fd65d52a76b8b96b856ebff1cca88" + }, + { + "href": "./CF08_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205381a55a95cc52df3ed1d5f78975e99b0a2efd0c6ae22662f0c65dd39d10dbe3" + }, + { + "href": "./CF08_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201af6f7298b37c90fec6c75dad57d527d252cb86c711830f6d413b0279351bc73" + }, + { + "href": "./CF09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202799694b64dea9c387cbead198224e8cb72594b713f16b46308f248acfca3276" + }, + { + "href": "./CF09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122017327b266136287176ed63e3bba376b38ee84bf5d611869151bef1683d2f691d" + }, + { + "href": "./CF09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200815c64c47192690395e7ee8c024284e5971168676483c06a2c150c4653b3a38" + }, + { + "href": "./CF09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038b8e854b08bcae4033a98ad5a6241c6a4e9c538750eeba5f99e7378e642d322" + }, + { + "href": "./CF09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220346cdf7a3b71b14d97d28f0ba0d47e37e614d7b9789060544f75f8860b163bfc" + }, + { + "href": "./CF09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220219c7f0b51367303f0a79d8d044584223a4661aa24ad61577d4f7cdf8e22ed2b" + }, + { + "href": "./CF09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064a19b533e4225dcc74382242f6321ad43e0e57971c0812d9a9d9e8833e587c7" + }, + { + "href": "./CF09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c0703f40a1116f526a2111eea830e6e0ac601df4fdf19b562acd0ad3837b9fe7" + }, + { + "href": "./CF09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200daf42c0e1e4de0dfa44f1ebcbe3f4e44025968034246e1a0cf7da8eeb9b68d4" + }, + { + "href": "./CF09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090bba7489e976ac2788380ff6d8f271d51d70012e3acee2f83af9d89f2190187" + }, + { + "href": "./CF09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5ba41ecd67861baa7abb89ca9d5f280af60b4f1a749f9e09d37920c73b64c7f" + }, + { + "href": "./CF09_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010ead13bd6020185efde54c09f76e81a34c14e1b88bdffab9c5863ea2ff29c13" + }, + { + "href": "./CF09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122012650c92af5a51eaea4ff5be92d052e6c3ba7421bbb0afda9c5ba101b25fd1ac" + }, + { + "href": "./CF09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062c4714b0d9d1c84cd5139e02b9abff167dc53ca17368282a406b8b0286f93b7" + }, + { + "href": "./CF09_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200d4be48cedf65e80eb499211c8e0cfa201bdd16469b79d93282eacdc5730fd1c" + }, + { + "href": "./CF09_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122043a35cc9f12511eb2674c05558ab4ad6441a11ed1a4061d1a3362736fc7fdf2b" + }, + { + "href": "./CF09_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122022b003d4f097d1c12fe01b3c72df106f944d79edb65b25decb40cb19dcbfbcec" + }, + { + "href": "./CF09_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220db0f42cccc11be6b061b1dee210c9c2002fe1fa3a7a586122d11ea807d492db5" + }, + { + "href": "./CF09_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090582c7a8bafc5a0bbccfb943260da7be5f95662ab4b26333f08875c4240b2aa" + }, + { + "href": "./CF09_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220303d34c912940659a32819beb3f2f633315f199c637e7a8f90006e85db71a818" + }, + { + "href": "./CF09_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122016e5a4c5b0b82ff4b0e73df8c50568ebd6f186339cdad5e81be1ce334b67e3bb" + }, + { + "href": "./CF09_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062e54801d59ec64f9ae9a17e2e6bde8b100a2d6b632a371613b215f85bcc3aca" + }, + { + "href": "./CF09_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090b7c150306a058896beaeb62407caa78d9e6999fd161fb8693999f3e9266eaf" + }, + { + "href": "./CF09_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122057ba954394550e2bccb358eb769934b526d86215e932f507e030bd7af6fd471e" + }, + { + "href": "./CF09_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d06f20fccbaea93bda270ad2eae342b2a0a91602dfce6e272e915e557ac1b4c7" + }, + { + "href": "./CF10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8b111c1414820e5e447d879506a00820745193c05f172f5243210892321592d" + }, + { + "href": "./CF10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220264723a26727eabdb27de748608f0b06e07932553afa8549a265c9e1b1245d40" + }, + { + "href": "./CF10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c4346cfb1aac19c5060827a8f69e4499f1f26d4ffa7a0ef951d9fee5b0bad48" + }, + { + "href": "./CF10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220576e6dfa2eee4fd895fc17d7dd94c9f056726a727097993ab145eaf0f2c43c90" + }, + { + "href": "./CF10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206aa4682d5225057e1fab34832794923d08374d16bcef2b2a047a03c0cd4a33d6" + }, + { + "href": "./CF10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220797412dd0a702d3e0d64642c23a0e242ec791b3298513c69bc75323255a22793" + }, + { + "href": "./CF10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122028ae2f0910c410e4ae814d7d238d915d3c0edbe3bc7208232453cb5679338312" + }, + { + "href": "./CF10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d4e909129b3478e4f057cb80758217883c3c73dd880c596a195fbf2141224d1" + }, + { + "href": "./CF10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076ccbbb6f0a602d22162afbafe2371e5faba03a8bbe52f30c2804aceea19a6e7" + }, + { + "href": "./CF10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220de032a9a17acc32cfc271be7fd77a5c8ec5605f04b44899feba189eab8ccc5af" + }, + { + "href": "./CF10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a63f1b5d73b9006e01ae658008747b0c7e926249bdabedb92470805961e0431" + }, + { + "href": "./CF10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d7b2cb9182b6672841f27430c7f5a30e6dac1d4a51120aee1e2d49ecf985b012" + }, + { + "href": "./CF10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e8f07b15a02d8050b6e4e6d0f56df23dad72c20340fdd71e746f64b4af16d63c" + }, + { + "href": "./CF10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208aa1dbd1c3081cca982b308088f1b66df1262527ff6f56f204a1901569fc576f" + }, + { + "href": "./CF10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094ad2ccb5c7f5151b761971c9bbd29636e256f34cf61af7fa455de4fc7059fde" + }, + { + "href": "./CF10_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209bf9f4f9a91349e75c35a8f161f97bcdd0d2b363c3373d95f263f1587d542dcb" + }, + { + "href": "./CF10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200947c9890b48e2119902bd172d276411a9d2e35857575d670919f09854c6fe89" + }, + { + "href": "./CF10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200eda629bc877a3250dbf8f4ff95484c1cd7b5ed3818bb7e287b0994fab0599ad" + }, + { + "href": "./CF10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092970777508e1fccbe90cc3cb1a6153bf4e9e2ad2eba8110b93afe2c1ee13138" + }, + { + "href": "./CF10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075150d3e38152bf6b2a306f7b1dd1cca1af68ece2eada676d8fec8185707d85a" + }, + { + "href": "./CF10_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b25a4d08e9dfc075f20aba358d09e756f5b6f788d81a1531049d2073b04a6ed" + }, + { + "href": "./CF10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b202d9c7da704dc75ecb1fa733ee84c12af0656ede30d36939456e5e2950d45e" + }, + { + "href": "./CF10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208c377f475ca49a66db55cf7742bc0f5cef6bba6e9e84cdfff5e513818dc35448" + }, + { + "href": "./CF10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200fc385dd4d43c0a417b82360f07937e9163d7592204b203f801e60482c47ef52" + }, + { + "href": "./CF10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122026ed71d7374bd4bba88e4ba74c481d751b1c793644618ea08eaaad7b6f066182" + }, + { + "href": "./CF11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202066068b849a7727b75e45c7a33a16fc20a2e20652b95dace61d7938539e0b18" + }, + { + "href": "./CF11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200eff092d76a369644b763be2880cdf20303555924204a16e7462bd3dd974c94a" + }, + { + "href": "./CF11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209787ca8d5deb1d3a3c29b48d4330484632dff10f1ad33b94cac4ca4b88047023" + }, + { + "href": "./CF11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f74b81b71122257591dbaef44167c30b7505836eda902e7642e4396120f2357b" + }, + { + "href": "./CF11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220471c255a337353c54cd6681b238a2324336b77a1089c9e9be92c4de6bc08e7a0" + }, + { + "href": "./CF11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220364afd72f3a1ca6a2191e078134c168dfc7abecdca009146a35a30d084e7cbd2" + }, + { + "href": "./CF11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aef552c0a54ca5539b423534c9fb38e157220073d050272e69e64001da3152bc" + }, + { + "href": "./CF11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c82479629ea7d0fc1097ebbceda4e9fcd59dbce2fa2bbbc36cfe8e8b3ca71dd9" + }, + { + "href": "./CF11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc87df297e90f17ffa5f59b1a58d137a7e2a981c210ac0bf72cbf398bc132664" + }, + { + "href": "./CF11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a663930fe13020c4b239f4e870478fd06a07dc01ebcefef77f7827915260796d" + }, + { + "href": "./CF11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122038e4060ef00c6ec0b78cf99db86a9288ea47074eb1d708089c99b71aaec46121" + }, + { + "href": "./CF11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d8e8d73bec19822caa6b6847ddb61502000d65a97779eeb69d57f42e71004e41" + }, + { + "href": "./CF11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce17f5099997d178b626004a96e40184cd22301a06a01ee9a70cc82e5878b748" + }, + { + "href": "./CF11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205f789d600ad5a0d354511ffd21c910df4cb0378ab84fc5d674ba8545163321de" + }, + { + "href": "./CF11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122013ffadb5cbc9aa4ca577cf6f7e74210e2b24d1756b9f08ea4541df12da326b56" + }, + { + "href": "./CF11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dadf505745e7a2accccee47fdaa92a2d2bf7153341fc0acbcf44ac82f4ccb759" + }, + { + "href": "./CF11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c1e75a2df65f4c606818915a59361929eda0de98a618d90ea3e4e4d0d9f6410e" + }, + { + "href": "./CF11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065207f2f71429c36a55e2adfaa5f91593ddd17f0e0170c5d72854ce4e9b1791d" + }, + { + "href": "./CF11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc830ef9ee376c6b2cb979ff0a359100cc703996e86eb4eda01687506a0ee3ee" + }, + { + "href": "./CF11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2b49d5b4dce91af774e581842466cd3437d8a6e0ecc6f3d3250a45b7639f5d8" + }, + { + "href": "./CF11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060e720ef271f0cf4d8d72ed3a6ecf34d11b62cbf2566fac425198412bea58265" + }, + { + "href": "./CF11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a00b70dd8c49012c43f3a3b60810f711c740980997a1d2a9a492b4c909eae420" + }, + { + "href": "./CF11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209674c9adb04a827780cc989841b3b96bffe8d8f8ad7bc69c0771b45a3a88fe21" + }, + { + "href": "./CF11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e367a290e0dd2e38e44d335ecbc05d6e8a0c95cff4d00ec9d4fda2f24485bc92" + }, + { + "href": "./CF11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122006344161921d22ff9a83a2d82806b889864b088ed3465a97693adccd1dca575f" + }, + { + "href": "./CF12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a10e34057a83b5a7094a7f62bbe53f66581073071c981dc3162088b40ddbc0c6" + }, + { + "href": "./CF12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b7bb00a09bf215e6c4cf425aea155c618acc01b7db6bb9bdacefb4f44570b20" + }, + { + "href": "./CF12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122068e3c33c7cb6ed0dc2004bbef08ad6c7e65d738ac86b9e523350b9679ebd7184" + }, + { + "href": "./CF12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a830ea219b7b0067068207ad1bc63a43a8f6724a3d8fe929c45113cc29918657" + }, + { + "href": "./CF12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f04174101ae39dd749f60c400ca6e094696d5f12db37ae6fb93f5c52dce41536" + }, + { + "href": "./CF12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122080b6a2b93d9da419f8dbe7f87cdfd1c70859cb12dfab8f8f02e52df74bb45c0a" + }, + { + "href": "./CF12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f820d9316c58ab6f6ebf0b167fe8ac960336d7ea0325a421c46ceedff5b905b" + }, + { + "href": "./CF12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122090dd8966b9b40c147f7402a268a1fc7c946b6c223198df0c84c05475554dc43c" + }, + { + "href": "./CF12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b15c8d48a2f1dd5fdde4a6e04d5f9e81d2004edc5a9935daee8c435a19174cd8" + }, + { + "href": "./CF12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d5f0ba76b26a0664f0058a5a2d3d59cb1a17edef2c42b7c222fcd1069352769" + }, + { + "href": "./CF12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d5e6b3c0a6bd50f9c6089dd699a6c84a703aae9525ab623a4cf36f5df6bc449" + }, + { + "href": "./CF12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220770b144a62ecf6b649cc835c48adf18ab5df7066324da6c436a63ca41bf9a019" + }, + { + "href": "./CF12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf1c3dbc9c011151f1353be6ceba9aab2363badcc04f8a05a4b5f90f491a75b9" + }, + { + "href": "./CF12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055850d9b82ba0a4c98cb1bf66ccba3b704eedd328266df350057eed91316733c" + }, + { + "href": "./CF12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5f2a6158b4a594c6e7cac1d55200f18ea877b882d03663b977a9e02a9af21e7" + }, + { + "href": "./CF12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd16eef43da6b157ef8160a9c6cc0dad088480c1a1f260eef7798f95e331fc01" + }, + { + "href": "./CF12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a2953cdcd4d80621aec5ba57eda0536aa8772ef86516fde5980ddd608347d1be" + }, + { + "href": "./CF12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e0fe60ba66d6e7c58d999c8070480ce65d84bd85dd2ad81413ebd52496b732b8" + }, + { + "href": "./CF12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aaa4a67927c98570eb01c60a94e019f9419cfc45790deefe063fb9611dfe74b8" + }, + { + "href": "./CF12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a6ca093d77953a5ed2a2817202709270e80e9c91241e14aab20641f0980e77ab" + }, + { + "href": "./CF12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d975f245b49882ee9a243525def2d340c5aa7bdf36efd26ab7ca957d569f984" + }, + { + "href": "./CF12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060e51a53b90b19a5c5de7f5d7d19b071a1ab1df854ced7c60086d1da6ac92d1a" + }, + { + "href": "./CF12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ce26aca48c8f73df0bf8eafcf54467f1b78ece19a2c90be880b9214b731dd555" + }, + { + "href": "./CF12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201c673c5b8a7ecfda0f5651eedf251a497befb159deb33060bc79f06d7507451e" + }, + { + "href": "./CF12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bb43ea797bbc8f17ddbf85bf3ea9b1995745f7dd6e7c57df6b7aa21c71c70d3e" + }, + { + "href": "./CF13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a7ead887d387b0d885efde61c3b3987736335db14d76baca7d04c23d538a7c02" + }, + { + "href": "./CF13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dff8dff22f9420ce9e009ba3bb8c3386d13cf6c962eb97645ffb45754c5df8ca" + }, + { + "href": "./CF13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030e747f6fcf343d9e6898dcb1ec1e032a4de827f9aac01d9298c36d1e77310f7" + }, + { + "href": "./CF13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8a5f83befc43cf60c9232b64b80ceee2180993bcc85dc2dbee17ccecfb16887" + }, + { + "href": "./CF13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122091420db21d4902e0ebabdb700ba06f618ceae5eaf1e755540aa326ff09eba893" + }, + { + "href": "./CF13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200611413e506dee54a43e09c85e1cb15e87716b7ac2d22e12335849e98b2bbaeb" + }, + { + "href": "./CF13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204ed7ec16e1f6722d8488ee2ee08726717e645bf72f6759618cb3f13025355385" + }, + { + "href": "./CG08_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122035bd95fe428f7bbaf8a506ffd1a98d270816e7096478713a18a40833906a7a02" + }, + { + "href": "./CG08_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c7e4909bfc39c28043038e350e837937f5a0267796c98ce9b2a0b64d5dac8799" + }, + { + "href": "./CG08_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f56330f4c14fa7a5da71b9ec40c2f46bd33dc9117d239928ee0b799605b536bf" + }, + { + "href": "./CG08_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3e522bc4b5d429b3d17d5f645ab6d9622a79b27773f82878a3285179190831e" + }, + { + "href": "./CG08_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122050a94c460e80b3a2ac501a73b73cf8167c5211e66a843984ca52ca57e27713a4" + }, + { + "href": "./CG08_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abaf2ede042276bcfd4ed8e5bffaa1efe3357ef1bf314c1d83377a6be235737f" + }, + { + "href": "./CG08_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122042e63e08281f1313498d30b94e146802027883e595e2640a71bfbc7108a26378" + }, + { + "href": "./CG08_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060d7c3f5dccb27b230cb3855c82f6377918ed3c13e498f86674ce048abff61ea" + }, + { + "href": "./CG09_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200bbe7e94272361ae8073b32cf0c9930aff7c3c14fcbb5a8503dd5863c1c86b15" + }, + { + "href": "./CG09_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a0f536d33e9a8c95e2c228b9339e05138443262736913261bb3144eddd82cec" + }, + { + "href": "./CG09_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094e8456921cd87e9950b5e96cbaf33bfa576201e181fb8425581031c6611d676" + }, + { + "href": "./CG09_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c715061bc0e03a177724a01771e95fefe741e3757745a48b645b8bee0e31d39" + }, + { + "href": "./CG09_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d631764792638cc3795d7d0b38722953ca420ba3ee04ac2cc7ec90554c423c8" + }, + { + "href": "./CG09_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122094403c2abd94b40cfafe74bc77e95905ec9ae312f1f3e01d2f7f07c173e3a6f0" + }, + { + "href": "./CG09_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c41bbd88d5babd57e0c1b11588cb34ccf698859e739a63e0a26f095b85653544" + }, + { + "href": "./CG09_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071bfad494b4576bd9e2a72f9f680cd5ffbb0d8f2686d4b9bd027dcfb565a9d97" + }, + { + "href": "./CG09_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025dfb07d65e7801b73777e579caf4ba7ee08297987d5e8016aa5347e639a7404" + }, + { + "href": "./CG09_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f1a0769aa26ab742588360bb9c4269c71d610d6f4008045a9bc58a74f9418278" + }, + { + "href": "./CG09_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff2e697d88662d8b6f004a9168de83e5d46ba96f215dd1ba4318dbc33565d13f" + }, + { + "href": "./CG09_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201094053ab10bf35bc44c2df22b2fe1848ce4446f7a2f67a6fb7d65908fe7e09d" + }, + { + "href": "./CG09_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac18843da7a4a8c64a8e68a1a7d16e211a8168bbe5375336f599077dc7cb3984" + }, + { + "href": "./CG10_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202631ea7c468ee5eb462f186d2bf15e301c9f9673ab3a1d88a64d16ad51c223b1" + }, + { + "href": "./CG10_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122014f8975952ba7b73e19c77190d8d6a158a3a39e27a70562831ee5a817a549866" + }, + { + "href": "./CG10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c763918f876c71e151ed39a6b24b2554974594fab0d379f891221f8eea5effc2" + }, + { + "href": "./CG10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d9f8266266712f056c7f8938884968d2421c33ad53724dae56bca5196bf27b5" + }, + { + "href": "./CG10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf275e400c325a713e8b0822e4457860de2dc72c492acd5858a9c479af80afa0" + }, + { + "href": "./CG10_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ff2a735a026c4afe4330f82486d3f525fcd7f90b437241848bcf24f403caa11d" + }, + { + "href": "./CG10_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b63af06e176cd9c1248a759cff7a1529f292643b4e58969d7058a918cf05dba0" + }, + { + "href": "./CG10_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3c05fa6ac124de15433496ae62e66731953853aa93f1bddf5f4318d072c5357" + }, + { + "href": "./CG10_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220632339553f54ea25f8b193fd065264c9070a338a9d6cb2e7283def63ac75ef42" + }, + { + "href": "./CG10_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122062b40516e4684b633df3f50c9c70484985a3ba6b757b1fcfd05b5daff831976f" + }, + { + "href": "./CG10_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201b64d5b5a8c0f8d86d38c5c0744c4f3008575fba4b1477ed5002ab7c87134f75" + }, + { + "href": "./CG10_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f61b89a2a3d5e0475d8663874cf6d801fab2a23a05fe741fac2bb01ad05bf222" + }, + { + "href": "./CG10_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202162fa7890d3b8f8d169cc8908215d58852e78c45c47d9c42cc830cff984c695" + }, + { + "href": "./CG10_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122025c24b169b419aa96c48622e5d224680f0e95d82c670d439827f491e89cd4220" + }, + { + "href": "./CG10_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a89cdd1364db4dd3e8a70c88ad891d7b77463a047a0e63ea50231d80b2eafdc5" + }, + { + "href": "./CG10_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bc18d7e59845b04685339dbaab967f1e286129c625aee9f1400a736b092171c9" + }, + { + "href": "./CG10_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049530231f9691e25865bef5f498ad394f606627ec3d69ca11a6c35df53ddc429" + }, + { + "href": "./CG10_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dfdcc2415a2fd8cfcdddb8b9c2ad71c7a8c61e33aba090dae9f0d9ea8d1d1e69" + }, + { + "href": "./CG10_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122083d6f517c4c7384dc64dbad22c86035c22fa43c848ac13dc1f7a016978a4d9fa" + }, + { + "href": "./CG10_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac350926c9adae18cf729715d2990fc5622e1ed77c5501a3294f1bc1fcc7ef3d" + }, + { + "href": "./CG10_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ec066a6a30df50f837315c099c8bd331077263cb7639002d8170a785a15daef" + }, + { + "href": "./CG10_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c018a4791e2e96d4733f608b446bc93481e17ccca89fcfb459cbcfceb18164c9" + }, + { + "href": "./CG10_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122076340d4379e119a7907503cf23884207ea20e6852e518bba210ce5e0e5927c4a" + }, + { + "href": "./CG11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122059accea165c6ec13b673c2e2732167a0b63739b559c85e827a00c096e7eb376c" + }, + { + "href": "./CG11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204d014dd20b0405c65ff1896f99970fb53be050b7026b04f6c891aaeaeb36c1f2" + }, + { + "href": "./CG11_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220933ee115e581bc7d6d6ebfe0c324c0551e7f87c1450280c9ba338e365002656b" + }, + { + "href": "./CG11_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc27a4810efefdbc482b720d9095f4cc955974bdcc3cebbe9fc1cb710c6aecc0" + }, + { + "href": "./CG11_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075d4e1c7162d0b7879d7a618b9fb79fb9d8a85884c272677ed46cdf5e2235777" + }, + { + "href": "./CG11_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b46caa57c772cf93343ec0b315099b0b0eba948421a8e674207b4bf6ac7566f9" + }, + { + "href": "./CG11_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208b40c29a3d89c1bc0fa1a22429cc6abd80894bf49a15ea07ebcc094fbe0314e9" + }, + { + "href": "./CG11_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206b2431e2844bc0e0aac03c20754f8247d69ed45716279f55a5bd75d4a301ab83" + }, + { + "href": "./CG11_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220263077711fa84ad6bce1b23b4f2e5815a4b2571da60cdca47d9828f2877a11d5" + }, + { + "href": "./CG11_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0456d108d41fade186d43c6bfb1188991bc8769651fd19fbaac91798b1f49d3" + }, + { + "href": "./CG11_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201441e310db6e2a6670f57eca589f111b40c17b14732a47de790ff8650b4e8b7e" + }, + { + "href": "./CG11_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206ea7df504fad9b2eca5c0910c07818cf92a210f878994a87b1ee4cbb90f972cd" + }, + { + "href": "./CG11_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201653d9a6e581da3853f5afbb7cd8fee0088dacd807457a1e6c12d73806c6343a" + }, + { + "href": "./CG11_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220320986b871c756690c9b034878443979e05e462705513829bfb2bf98980936b1" + }, + { + "href": "./CG11_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d8d707708e0fed5ee1b22839ea0f44614941c79a418834ef78e21efeb15f69c" + }, + { + "href": "./CG11_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b72ded828828acdf4b68e4ed5c4e69467ae9d467293ac7aacb649aeee1b7f54a" + }, + { + "href": "./CG11_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a125f2ef4df9cd5350ab22c23f9ac4ec18dbd5a53bf03f78427e7e666279dc7" + }, + { + "href": "./CG11_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206e3eef8fea93dc8d20cb0d70a232fed7a293b89993fa7926af28272cd67d2908" + }, + { + "href": "./CG11_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122077e9c073228325aa0d6a82e01703e05099c810b44fdd57153624697a5eb9aa87" + }, + { + "href": "./CG11_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200c28d41140ce989a39f39462acf35bae462220ca93f924a96cf4ebc9b0ce095a" + }, + { + "href": "./CG11_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122071b2ff11d10a0d494595ff55e0c4eb6d64773ff332a7971b63be397348c56e3d" + }, + { + "href": "./CG11_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201a76bcc934a5e5516c4d5be76b7f6353f2c6dcb7b00e08918d9bbca002a38e2f" + }, + { + "href": "./CG11_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c03998ecd913b40e806fc57efa59289562c367a675666f6ad13991e85fae00e" + }, + { + "href": "./CG11_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122030677be451aede72acfedc6af276359b57ab42abc6e2dc6f59b16df16f031f7d" + }, + { + "href": "./CG11_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b44eceb3e0286fe8ec8d9485ebfcb112d6bd90f1d556f14e9c5220d14140de02" + }, + { + "href": "./CG12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220319c57d6587e67200238276ec6fe21eae37d5c0497ad13464238381985dbfa77" + }, + { + "href": "./CG12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200cda3f381243be9f5e60925864f6d02d756b2eeb58ebd6a80b5dfe8fee065f7a" + }, + { + "href": "./CG12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088cb7050220652150e70f0bed7996598e93d23ceaab4cac3ee685ddb3000ecf8" + }, + { + "href": "./CG12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207a9ed06f1e87fbe32f5e0ef09cac8168ee9dfa1d398582eb0751a22ee7e5fde5" + }, + { + "href": "./CG12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220208382a6016737250dc97366f20f8942a7880c7a6f9c029bcc6f353e447b7964" + }, + { + "href": "./CG12_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209ebfee32b664271a94247cd14a9d80d087c7b394bb22495c407fd1c0bca93f01" + }, + { + "href": "./CG12_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122046c4510904956439d9c0962b9000158ab57ef1041c64682fa7686c1638e6082b" + }, + { + "href": "./CG12_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eecd7793d17efa1abde9ebe709d6241ab2ffab7e64a31509c523a1a3ceb4b91a" + }, + { + "href": "./CG12_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122037495801671bbf421f1e4d4d4af6757c3a461b1475f478fb80cceb55e428a40f" + }, + { + "href": "./CG12_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122089e5edda9b2aaa415128b16c8f2e47de58ea84482ddfa7f6e9a2830f8b33ae6e" + }, + { + "href": "./CG12_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092e73b9c7300bda0c751b2ef46154def76654a56b19526df964994674164fbb0" + }, + { + "href": "./CG12_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220aa91cb3bacbad52c7021cd41dbccd079965c0876745e7641ca06848de38c1bbd" + }, + { + "href": "./CG12_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208da07ca3dc1d358fe7e98dafdfffe46501a9c53707095a9100c3e621f7fc8d90" + }, + { + "href": "./CG12_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b500d0084c986d30240f164223f00df6c4ac8fe40cb9231451e283ce0a67ab35" + }, + { + "href": "./CG12_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201334a30938eb137fee723eb0c42daf96ec4cc547e0ed2ba7df4ba7288b88a496" + }, + { + "href": "./CG12_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d6d602a846d28fb44748602fa6b28c8eae6390bac5f0614a305c079a53714721" + }, + { + "href": "./CG12_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220723952c46a3c512c0e524ad3cb6c7fd519d5002881b2e01ee08393c5b2ddb71e" + }, + { + "href": "./CG12_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220875b6ab997e50d6910748643e9256a51c4ffa072ab86d01955c8800629980635" + }, + { + "href": "./CG12_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f5bd4ace11b897c9a8a4cb7f5aaac9c4b7418c7f6f430b7e25a950d25d40376d" + }, + { + "href": "./CG12_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122003517a4b4c430d094e2b575a826978e6f967b463844447042a48d4bae51f2e24" + }, + { + "href": "./CG12_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005f4b799fca4d8788ba51fd56a81adcc9198116fc479e4bcef32698f26543d76" + }, + { + "href": "./CG12_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b06ca8da5c8ab7e405e05c0dfc7a733598e6125fbe0b577daac446038068bc59" + }, + { + "href": "./CG12_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d1071dac65db3701d356b2b6b0327ac86f9b089d5043f3ad11917510bdd8cab2" + }, + { + "href": "./CG12_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a24fd859109d57b28d9a5b30970e72282161ce7b1981feb46fefdcba1c5b4284" + }, + { + "href": "./CG12_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a4b75153271b3d059871ef4b1c33473de0437778fb2006933441248f048ba69b" + }, + { + "href": "./CG13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f96926cceefda265d045247841fafca1fb1047873d1f3eb32ce1485fa90e1bd5" + }, + { + "href": "./CG13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f7c7ca5b724ee308bd02d164db3cb8be92d8516b43e7a89cdd30df769b609f0" + }, + { + "href": "./CG13_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073ba0879803892f2e941c9a3646cb44f10fa0e587b6475611daee7aab6e1acb3" + }, + { + "href": "./CG13_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d19c9d67bdced25be7589ea845accfd68edf9ff0956f350520b8c136905474b5" + }, + { + "href": "./CG13_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205640306ce27722118fb7d6740d218c129e18f19cfa2e0bb4de4d1caa2d60e058" + }, + { + "href": "./CG13_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a63a4151a466d0cbef71a435ece00b5ea3d2e4a4d54a67483495fabfebad1cd2" + }, + { + "href": "./CG13_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e3aff01205fa6629897985391d761782154556bb1f9c1aa9f4f47264e0f86995" + }, + { + "href": "./CG13_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cc771f968ab54ead8ea507362d950711c4e7792175afb656fec23917261b1bc" + }, + { + "href": "./CG13_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052a842ce02f0affe1405c3178bf463b22ed82e033c6a9afc2f2608e050aa7f24" + }, + { + "href": "./CG13_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208c02844867c313b2a6e545c89f7f0fb49aa5d88a51347ebbfd5e3e162e71d86a" + }, + { + "href": "./CG13_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220198742bf4062fd5515363396f2b8d48496af9cc1c4f2d069ce6534aeb3bde77e" + }, + { + "href": "./CG13_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c39593fda68649229e124461f8bb33de9b9aa6e5b90788494b847652c945df09" + }, + { + "href": "./CG13_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204262bbe93660225b0c00ab74855b5f6b0f76d1a3033f70aa4c621373712f2e4c" + }, + { + "href": "./CH10_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d783464d897e62a20c9938d6d6d186a8abebf157177798239c8941572f61fa4" + }, + { + "href": "./CH10_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122073ae1b6fba39936b4fd7cdc90ef7aba9ba8d79b8430a9da4cb513c9552a448b8" + }, + { + "href": "./CH10_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200274da21ba752bcfb82912265332572f4c0d566a31435c6085f4f6133e98d545" + }, + { + "href": "./CH11_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209da1cc00b71165397b144d091307b4c911d093d87acefed694285e5d7dd44186" + }, + { + "href": "./CH11_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220643fe88fcb8a2ae638de6f82074f6929c374403cdd7ff8382cb40be7259e69ec" + }, + { + "href": "./CH12_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206402003d3bbf42449469773aad5b6bb93c3102f976836f0829d71cfa2e103707" + }, + { + "href": "./CH12_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122029ee47c6b3bfea2a693bed4dfc4473c7175f69966dd33bd60296a83c47e5179e" + }, + { + "href": "./CH12_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122095af47a848c216527132082908687207b88aab9aa53d323daa7cb3967b775172" + }, + { + "href": "./CH12_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200db55fb708b54f4445378005a15f2c3496e4c6aee33ec441de77dbd2878d861a" + }, + { + "href": "./CH12_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205a5bd6bd668f15528592d64a1588ca297e3d8cf85ab093143e2309055a1f3ea5" + }, + { + "href": "./CH13_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122074b9c37f24fa5f4beee84754e00b4a379d77c7b39bb66afe03eee783967daa86" + }, + { + "href": "./CH13_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eea045d526499689bd692203cc962f4f432e39c8c6ad8a308fe1e3c30cb0f5cf" + }, + { + "href": "./CH13_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f428d932f745d702f2ac794ac4dec9f0525cdf04bea0956c17db6087ed5ca209" + }, + { + "href": "./CH13_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122005eaa9c575cf0d125813c20ac7698d9d8540ae80e25f25b89a7ca2c5937fc47c" + } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "southland", + "linz:security_classification": "unclassified", + "created": "2024-10-07T22:05:02Z", + "updated": "2024-10-07T22:05:02Z", + "extent": { + "spatial": { "bbox": [[167.1806453, -46.6893848, 169.3363348, -44.6247872]] }, + "temporal": { "interval": [["2020-12-14T11:00:00Z", "2024-01-29T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220b992aab3b8de45cf4957cc1cd8dd1387d55e8bc9f7c9cf5b23e71e31a3f15537", + "file:size": 49603 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json b/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..9f02495d --- /dev/null +++ b/stac/southland/stewart-island-rakiura-oban_2021/dem_1m/2193/collection.json @@ -0,0 +1,45 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPP62407807PEYMT6YQDAVT", + "title": "Stewart Island / Rakiura - Oban LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Southland region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CH09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ10_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "southland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Stewart Island / Rakiura - Oban", + "extent": { + "spatial": { "bbox": [[168.0465809, -46.970433, 168.1839243, -46.8359485]] }, + "temporal": { "interval": [["2021-09-02T12:00:00Z", "2021-09-02T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c3478a8823c9c4b53ae87b539e783db18c8f67812dfccc9321018d3f1903803e", + "file:size": 1342 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json b/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3f2cb711 --- /dev/null +++ b/stac/southland/stewart-island-rakiura-oban_2021/dsm_1m/2193/collection.json @@ -0,0 +1,45 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPP623W6VKW7M710STF24E4", + "title": "Stewart Island / Rakiura - Oban LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Southland region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./CH09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./CH10_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./CJ10_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Environment Southland", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "southland", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Stewart Island / Rakiura - Oban", + "extent": { + "spatial": { "bbox": [[168.0465809, -46.970433, 168.1839243, -46.8359485]] }, + "temporal": { "interval": [["2021-09-02T12:00:00Z", "2021-09-02T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c3478a8823c9c4b53ae87b539e783db18c8f67812dfccc9321018d3f1903803e", + "file:size": 1342 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json b/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..9269d2bc --- /dev/null +++ b/stac/taranaki/taranaki_2021/dem_1m/2193/collection.json @@ -0,0 +1,322 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPP623SNTZ3D1ZM1X4C3YRX", + "title": "Taranaki LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Taranaki region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Taranaki Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "taranaki", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[173.6951122, -39.9290771, 175.0828484, -38.6936157]] }, + "temporal": { "interval": [["2021-04-02T11:00:00Z", "2021-10-15T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f9a389e3cecc1e36bee704d4cec2e1e992da551f9dd606e44ebd22cd3391b309", + "file:size": 555756 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json b/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..d3121daa --- /dev/null +++ b/stac/taranaki/taranaki_2021/dsm_1m/2193/collection.json @@ -0,0 +1,323 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPP623X6NPBT9Q61NFCTCYB", + "title": "Taranaki LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Taranaki region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BG30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BG32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BH31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BH32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ28_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ29_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BJ32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK28_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK29_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK30_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BK31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BK32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BL31_10000_0105.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Taranaki Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "taranaki", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[173.6951122, -39.9290771, 175.0828484, -38.6936157]] }, + "temporal": { "interval": [["2021-04-02T11:00:00Z", "2021-10-15T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204989101c8b9b9b69ea6f9fb40e483930817b7c36235f1c9c471a69f9788a1526", + "file:size": 53726 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json new file mode 100644 index 00000000..6574365f --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2016/dem_1m/2193/collection.json @@ -0,0 +1,69 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPA9MGASXVBXH1SRS3SYZ5B", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2016)", + "description": "Digital Elevation Model within the Tasman region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", + "extent": { + "spatial": { "bbox": [[172.6868094, -41.1733388, 173.0857515, -40.7188997]] }, + "temporal": { "interval": [["2016-12-12T11:00:00Z", "2016-12-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a57875c2d6f78b06029600863fe479ee52de2b2f7c604be824a5550ca86d8869", + "file:size": 187920 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json new file mode 100644 index 00000000..3eb9ed8e --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2016/dsm_1m/2193/collection.json @@ -0,0 +1,69 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPAA86PG6F76DG59SHZ76ZA", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2016)", + "description": "Digital Surface Model within the Tasman region captured in 2016.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", + "extent": { + "spatial": { "bbox": [[172.6868094, -41.1733388, 173.0857515, -40.7188997]] }, + "temporal": { "interval": [["2016-12-12T11:00:00Z", "2016-12-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fb5aead8951a43e80be9470ab27f4067d639daed7f6d27b9c4ac334d281b4db7", + "file:size": 364919 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/abel-tasman-and-golden-bay_2023/dem_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..2ee4cafb --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2023/dem_1m/2193/collection.json @@ -0,0 +1,82 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDGG25AWBPBT4F3T2NFRZH", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Tasman region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", + "extent": { + "spatial": { "bbox": [[172.401518, -41.1084811, 173.0857515, -40.589008]] }, + "temporal": { "interval": [["2023-08-06T12:00:00Z", "2023-08-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202e42e69f3ffa27bdff3995e93471f0c1f8ad0b5f6f0c31d1f09829a0ba9fa2b7", + "file:size": 8762 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/abel-tasman-and-golden-bay_2023/dsm_1m/2193/collection.json b/stac/tasman/abel-tasman-and-golden-bay_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b893c26c --- /dev/null +++ b/stac/tasman/abel-tasman-and-golden-bay_2023/dsm_1m/2193/collection.json @@ -0,0 +1,82 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMDTT1A2G9V9ZQXN3S115RB", + "title": "Tasman - Abel Tasman and Golden Bay LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Tasman region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Abel Tasman and Golden Bay", + "extent": { + "spatial": { "bbox": [[172.401518, -41.1084811, 173.0857515, -40.589008]] }, + "temporal": { "interval": [["2023-08-06T12:00:00Z", "2023-08-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202e42e69f3ffa27bdff3995e93471f0c1f8ad0b5f6f0c31d1f09829a0ba9fa2b7", + "file:size": 8762 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json b/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json new file mode 100644 index 00000000..a5427852 --- /dev/null +++ b/stac/tasman/golden-bay_2017/dem_1m/2193/collection.json @@ -0,0 +1,93 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPEDCXEXA43NWG0GB4QMAW9", + "title": "Tasman - Golden Bay LiDAR 1m DEM (2017)", + "description": "Digital Elevation Model within the Tasman region captured in 2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Golden Bay", + "extent": { + "spatial": { "bbox": [[172.401518, -41.8218757, 173.2014805, -40.4590873]] }, + "temporal": { "interval": [["2017-11-23T11:00:00Z", "2017-12-15T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220270491bd89e1b97ab03408d1da07d971428b4d6cf85f19c6874575a22d9dccd5", + "file:size": 246354 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json b/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json new file mode 100644 index 00000000..0381df7e --- /dev/null +++ b/stac/tasman/golden-bay_2017/dsm_1m/2193/collection.json @@ -0,0 +1,93 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPEDCXEZHXEEMRPHHY1X502", + "title": "Tasman - Golden Bay LiDAR 1m DSM (2017)", + "description": "Digital Surface Model within the Tasman region captured in 2017.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BM25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Golden Bay", + "extent": { + "spatial": { "bbox": [[172.401518, -41.8218757, 173.2014805, -40.4590873]] }, + "temporal": { "interval": [["2017-11-23T11:00:00Z", "2017-12-15T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12208d1d1d28d73374f8141e7a475b5d196545c2c2c04785d5a6dd113323f2c63d00", + "file:size": 279491 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json b/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..264c58fa --- /dev/null +++ b/stac/tasman/motueka-river-valley_2018-2019/dem_1m/2193/collection.json @@ -0,0 +1,70 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMB9SANWRMAAJYWCTYPF5W1", + "title": "Tasman - Motueka River Valley LiDAR 1m DEM (2018-2019)", + "description": "Digital Elevation Model within the Tasman region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Motueka River Valley", + "extent": { + "spatial": { "bbox": [[172.5686916, -41.4975302, 173.1434853, -41.0435377]] }, + "temporal": { "interval": [["2018-11-14T11:00:00Z", "2019-02-12T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220aa35367b5abd9a671b92ca64cb52283b2ccc89d6c14a02ee244bb41e8c7e0be9", + "file:size": 8711 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json b/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..61864430 --- /dev/null +++ b/stac/tasman/motueka-river-valley_2018-2019/dsm_1m/2193/collection.json @@ -0,0 +1,70 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMBBBQN2Q73KEVPB3BKS8FD", + "title": "Tasman - Motueka River Valley LiDAR 1m DSM (2018-2019)", + "description": "Digital Surface Model within the Tasman region captured in 2018-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Motueka River Valley", + "extent": { + "spatial": { "bbox": [[172.5686916, -41.4975302, 173.1434853, -41.0435377]] }, + "temporal": { "interval": [["2018-11-14T11:00:00Z", "2019-02-12T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220aa35367b5abd9a671b92ca64cb52283b2ccc89d6c14a02ee244bb41e8c7e0be9", + "file:size": 8711 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..cdcf84d0 --- /dev/null +++ b/stac/tasman/richmond-and-motueka_2015/dem_1m/2193/collection.json @@ -0,0 +1,63 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HR6GEJEQ5AQ0MW9RDQE0ZBWX", + "title": "Tasman - Richmond and Motueka LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Tasman region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Richmond and Motueka", + "extent": { + "spatial": { "bbox": [[172.914164, -41.4976164, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2015-11-12T11:00:00Z", "2015-11-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122048b4240283634c1ab1d22bd940369e6ae37502484e8066352f76c7427c06e8d9", + "file:size": 4900 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..24a4963e --- /dev/null +++ b/stac/tasman/richmond-and-motueka_2015/dsm_1m/2193/collection.json @@ -0,0 +1,63 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HR81C46TWAY0DEF5DQG32XPN", + "title": "Tasman - Richmond and Motueka LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Tasman region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Richmond and Motueka", + "extent": { + "spatial": { "bbox": [[172.914164, -41.4976164, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2015-11-12T11:00:00Z", "2015-11-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204a8b2db6c065682bdca9881de7056c3a58319df14796b02d153aebffd53e69a3", + "file:size": 4029 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json b/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..13b53e0e --- /dev/null +++ b/stac/tasman/tasman-bay_2022/dem_1m/2193/collection.json @@ -0,0 +1,70 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREEBV8J3N56C9P3ZM34MNJ", + "title": "Tasman - Tasman Bay LiDAR 1m DEM (2022)", + "description": "Digital Elevation Model within the Tasman region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tasman Bay", + "extent": { + "spatial": { "bbox": [[172.913651, -41.5624698, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2022-10-13T11:00:00Z", "2022-11-06T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a1bd1d897ec19d2298cf12453c82f15bd7ccf47c3060263a7a915b424e790a70", + "file:size": 7574 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json b/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e7a6674c --- /dev/null +++ b/stac/tasman/tasman-bay_2022/dsm_1m/2193/collection.json @@ -0,0 +1,70 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQREEBV74KPEH9DCEB5VW8RQ", + "title": "Tasman - Tasman Bay LiDAR 1m DSM (2022)", + "description": "Digital Surface Model within the Tasman region captured in 2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Tasman Bay", + "extent": { + "spatial": { "bbox": [[172.913651, -41.5624698, 173.2582727, -41.0435943]] }, + "temporal": { "interval": [["2022-10-13T11:00:00Z", "2022-11-06T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220a1bd1d897ec19d2298cf12453c82f15bd7ccf47c3060263a7a915b424e790a70", + "file:size": 7574 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/tasman_2008-2015/dem_1m/2193/collection.json b/stac/tasman/tasman_2008-2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..cca78d58 --- /dev/null +++ b/stac/tasman/tasman_2008-2015/dem_1m/2193/collection.json @@ -0,0 +1,155 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQS7QXBZMDN9Z89E6B7JR05P", + "title": "Nelson and Tasman LiDAR 1m DEM (2008-2015)", + "description": "Digital Elevation Model within the Nelson and Tasman regions captured in 2008-2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BM24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP26_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP27_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ27_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "NZ Aerial Mapping", "roles": ["producer"] }, + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Nelson City Council", "roles": ["licensor"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[172.2197649, -41.8218466, 173.6014303, -40.4594477]] }, + "temporal": { "interval": [["2008-04-30T12:00:00Z", "2015-12-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220ddd347b83466a903c197a87b6d6ba39320239fd7ead5a7403dd40641eecc48b5", + "file:size": 507176 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json b/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..29312b5a --- /dev/null +++ b/stac/tasman/tasman_2020-2022/dem_1m/2193/collection.json @@ -0,0 +1,350 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRER6GRVPCYH5421CMPWECY", + "title": "Tasman LiDAR 1m DEM (2020-2022)", + "description": "Digital Elevation Model within the Tasman region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[172.0435002, -42.3395863, 173.3166108, -40.5883396]] }, + "temporal": { "interval": [["2020-01-27T11:00:00Z", "2022-01-29T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220f90163fbba9a17de650e4ca4d8e703c4dbed2ce524f4752cdc324bd49daedf6d", + "file:size": 32657 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json b/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..c32e78f4 --- /dev/null +++ b/stac/tasman/tasman_2020-2022/dsm_1m/2193/collection.json @@ -0,0 +1,350 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRERMM4Z22F9567QNDS7T1F", + "title": "Tasman LiDAR 1m DSM (2020-2022)", + "description": "Digital Surface Model within the Tasman region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ25_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR24_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR25_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR26_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS22_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS23_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS24_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS25_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT22_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT23_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT24_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[172.0435002, -42.3395863, 173.3166108, -40.5883396]] }, + "temporal": { "interval": [["2020-01-27T11:00:00Z", "2022-01-29T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12202453b979e42a0e6e87c65595755c18fe991ee45375418c66574a25677c607aa2", + "file:size": 33455 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json b/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..6f7da2f8 --- /dev/null +++ b/stac/tasman/waimea-dam_2023/dem_1m/2193/collection.json @@ -0,0 +1,42 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPPHEVZR2HR6QSF2FX41TVY", + "title": "Tasman - Waimea Dam LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Tasman region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimea Dam", + "extent": { + "spatial": { "bbox": [[173.143628, -41.4975302, 173.2012794, -41.4325902]] }, + "temporal": { "interval": [["2023-03-08T11:00:00Z", "2023-03-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122028f391ae3fde2da713cf3683525beff208987a7cc04e8366b61504d553f92c1a", + "file:size": 719 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json b/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..2d36e1f5 --- /dev/null +++ b/stac/tasman/waimea-dam_2023/dsm_1m/2193/collection.json @@ -0,0 +1,42 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPPKCHF11E2WK14JN54G78Y", + "title": "Tasman - Waimea Dam LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Tasman region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ26_10000_0501.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Tasman District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "tasman", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Waimea Dam", + "extent": { + "spatial": { "bbox": [[173.143628, -41.4975302, 173.2012794, -41.4325902]] }, + "temporal": { "interval": [["2023-03-08T11:00:00Z", "2023-03-08T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122028f391ae3fde2da713cf3683525beff208987a7cc04e8366b61504d553f92c1a", + "file:size": 719 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/hamilton_2019/dem_1m/2193/collection.json b/stac/waikato/hamilton_2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..c510e3da --- /dev/null +++ b/stac/waikato/hamilton_2019/dem_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9CT3B20ZA2R70AE7DMYHN", + "title": "Waikato - Hamilton LiDAR 1m DEM (2019)", + "description": "Digital Elevation Model within the Waikato region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2019-11-02T11:00:00Z", "2019-11-04T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220681cae03b44265c9bfdc02b1472d64bf0f8bf52c387718977fe33ee7b6ac9ba7", + "file:size": 5330 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json b/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..ec53fcbe --- /dev/null +++ b/stac/waikato/hamilton_2019/dsm_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQP9CTEXN4D0Q32W5XBSJSP4", + "title": "Waikato - Hamilton LiDAR 1m DSM (2019)", + "description": "Digital Surface Model within the Waikato region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2019-11-02T11:00:00Z", "2019-11-04T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220681cae03b44265c9bfdc02b1472d64bf0f8bf52c387718977fe33ee7b6ac9ba7", + "file:size": 5330 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/hamilton_2023/dem_1m/2193/collection.json b/stac/waikato/hamilton_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..88033b96 --- /dev/null +++ b/stac/waikato/hamilton_2023/dem_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HW19G256CF3VN562X0251PAG", + "title": "Waikato - Hamilton LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Waikato region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2023-11-09T11:00:00Z", "2023-11-09T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12204aae44985b4860a0bb94ca5bbdeaacb1445d3ef74a1353eadfaabeb10bf4043b", + "file:size": 1512 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/hamilton_2023/dsm_1m/2193/collection.json b/stac/waikato/hamilton_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..a0f5f137 --- /dev/null +++ b/stac/waikato/hamilton_2023/dsm_1m/2193/collection.json @@ -0,0 +1,64 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HW19G257AZSE4YDB819RPMW9", + "title": "Waikato - Hamilton LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Waikato region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0502.json", "type": "application/json" } + ], + "providers": [ + { "name": "Woolpert", "roles": ["producer"] }, + { "name": "Hamilton City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hamilton", + "extent": { + "spatial": { "bbox": [[175.0930298, -37.9097967, 175.4295474, -37.5845465]] }, + "temporal": { "interval": [["2023-11-09T11:00:00Z", "2023-11-09T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d5a11c9f001c69baef0e1184a643d7f3db51969b14e9078214e86cad59465ef8", + "file:size": 1510 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json b/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..9b9fcbbd --- /dev/null +++ b/stac/waikato/huntly_2015-2019/dem_1m/2193/collection.json @@ -0,0 +1,94 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMC51D40ZX601ECSSH30E75", + "title": "Waikato - Huntly LiDAR 1m DEM (2015-2019)", + "description": "Digital Elevation Model within the Waikato region captured in 2015-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Huntly", + "extent": { + "spatial": { "bbox": [[174.6525807, -37.6503992, 175.688171, -37.196423]] }, + "temporal": { "interval": [["2015-01-31T11:00:00Z", "2019-01-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122095532dc957e00f26de996c8726b5d9d2d69b300cf24c66f76535e4d151c4430a", + "file:size": 14839 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json b/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..0221bfa4 --- /dev/null +++ b/stac/waikato/huntly_2015-2019/dsm_1m/2193/collection.json @@ -0,0 +1,94 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMC55GJN7RRTCX0KZKN8A7S", + "title": "Waikato - Huntly LiDAR 1m DSM (2015-2019)", + "description": "Digital Surface Model within the Waikato region captured in 2015-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD33_10000_0103.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Huntly", + "extent": { + "spatial": { "bbox": [[174.6525807, -37.6503992, 175.688171, -37.196423]] }, + "temporal": { "interval": [["2015-01-31T11:00:00Z", "2019-01-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12205ab56c35a61eb276e6e4765c2b36762f7a97959d979ab0be3eccac9b24cd919b", + "file:size": 15181 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json b/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..6ab5895e --- /dev/null +++ b/stac/waikato/reporoa-and-upper-piako-river_2019/dem_1m/2193/collection.json @@ -0,0 +1,67 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMAZNDSCA35108E1TQRGFF9", + "title": "Waikato - Reporoa and Upper Piako River LiDAR 1m DEM (2019)", + "description": "Digital Elevation Model within the Waikato region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Reporoa and Upper Piako River", + "extent": { + "spatial": { "bbox": [[175.584141, -38.5310391, 176.5480563, -37.6392367]] }, + "temporal": { "interval": [["2019-04-15T12:00:00Z", "2019-04-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c58388c02869136abf95af099954b6f191f55b31199b819f48431d841c568627", + "file:size": 7147 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json b/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..621d8a50 --- /dev/null +++ b/stac/waikato/reporoa-and-upper-piako-river_2019/dsm_1m/2193/collection.json @@ -0,0 +1,67 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMAZXW6VDW1BC138P40B01N", + "title": "Waikato - Reporoa and Upper Piako River LiDAR 1m DSM (2019)", + "description": "Digital Surface Model within the Waikato region captured in 2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BF37_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BF38_10000_0402.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Reporoa and Upper Piako River", + "extent": { + "spatial": { "bbox": [[175.584141, -38.5310391, 176.5480563, -37.6392367]] }, + "temporal": { "interval": [["2019-04-15T12:00:00Z", "2019-04-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c58388c02869136abf95af099954b6f191f55b31199b819f48431d841c568627", + "file:size": 7147 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json b/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json new file mode 100644 index 00000000..3805fce0 --- /dev/null +++ b/stac/waikato/thames_2017-2019/dem_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMCC3RDTG6G61TR953B9A1V", + "title": "Waikato - Thames LiDAR 1m DEM (2017-2019)", + "description": "Digital Elevation Model within the Waikato region captured in 2017-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Thames", + "extent": { + "spatial": { "bbox": [[175.5102693, -37.4459782, 175.7400516, -37.0581599]] }, + "temporal": { "interval": [["2017-07-01T12:00:00Z", "2019-02-03T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bf1b806cd6dbc104e9d7f48c0e9f20d983c833fd24505e7147c50f81d6171710", + "file:size": 1931 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json b/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json new file mode 100644 index 00000000..fb452c47 --- /dev/null +++ b/stac/waikato/thames_2017-2019/dsm_1m/2193/collection.json @@ -0,0 +1,54 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMCC7SQYQWQ2QQ98W4R5X92", + "title": "Waikato - Thames LiDAR 1m DSM (2017-2019)", + "description": "Digital Surface Model within the Waikato region captured in 2017-2019.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Thames", + "extent": { + "spatial": { "bbox": [[175.5102693, -37.4459782, 175.7400516, -37.0581599]] }, + "temporal": { "interval": [["2017-07-01T12:00:00Z", "2019-02-03T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220bf1b806cd6dbc104e9d7f48c0e9f20d983c833fd24505e7147c50f81d6171710", + "file:size": 1931 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/waikato_2021/dem_1m/2193/collection.json b/stac/waikato/waikato_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..6ce641d6 --- /dev/null +++ b/stac/waikato/waikato_2021/dem_1m/2193/collection.json @@ -0,0 +1,5280 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRH2G1MPBBR8PBKPRASE0RE", + "title": "Waikato LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Waikato region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "rel": "item", + "href": "./AZ34_10000_0302.json", + "type": "application/json", + "file:checksum": "12206807ec92ce44d0b0020d62100611dda0eddcad7298631cb020b1e49ac77c27a9" + }, + { + "rel": "item", + "href": "./AZ34_10000_0303.json", + "type": "application/json", + "file:checksum": "12205c55f1a8600165d22debfd3e4a720cd2b795b6e6c4a40dd03e9f1a892edf20df" + }, + { + "rel": "item", + "href": "./AZ34_10000_0401.json", + "type": "application/json", + "file:checksum": "122006cf5f56e493bc5c4f9718dd0228720dfe06097d57662e38b2fb629097a0f846" + }, + { + "rel": "item", + "href": "./AZ34_10000_0402.json", + "type": "application/json", + "file:checksum": "12202245b16ceb53ab4c8fb7cddfca7304d68f4b531535187484f8292a87076e621c" + }, + { + "rel": "item", + "href": "./AZ34_10000_0403.json", + "type": "application/json", + "file:checksum": "12201dffba7f80e8b984799ea1309a333a5749fde7c6ac77c30f40dfa7a200877246" + }, + { + "rel": "item", + "href": "./AZ34_10000_0404.json", + "type": "application/json", + "file:checksum": "122007e65b4d94b43454f9e4cba655c38b0f876009a7a136507c917b33150327063f" + }, + { + "rel": "item", + "href": "./AZ34_10000_0405.json", + "type": "application/json", + "file:checksum": "122087e52d657d10d9bee9970749f0fd45e167577a45ccd27a2124ebcef756eda3f7" + }, + { + "rel": "item", + "href": "./AZ34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220770d22ecac48b087b6ae7b0acf8df50f2f28bffccc0eb2d17c7434b215c56e58" + }, + { + "rel": "item", + "href": "./AZ34_10000_0503.json", + "type": "application/json", + "file:checksum": "122099aca6927e9a216ba4f482b9c7fae5e5329317f0ab56515146f9ac90f73b827c" + }, + { + "rel": "item", + "href": "./AZ34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220ee4fa3816e2f50d9a948a502a85657a67df71c56fbe0acfe2a8be38be8b5adf4" + }, + { + "rel": "item", + "href": "./AZ34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e624b83cacf6e47ca0bad49768ba426656b4b331a8a2eb986d2f3804c92ef926" + }, + { + "rel": "item", + "href": "./AZ35_10000_0305.json", + "type": "application/json", + "file:checksum": "12208c73eb80156cdb4cd1ade287dab5a9551a52b981fc1ea6973b4a5a7deff1c7c2" + }, + { + "rel": "item", + "href": "./AZ35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220ba2d5d441be2c49f18bdea786d3e5fb6f1074ccfbdad98616eb521690587d992" + }, + { + "rel": "item", + "href": "./AZ35_10000_0504.json", + "type": "application/json", + "file:checksum": "122016f0c83536868872a2fd4d59a0b09df6a07457e7fe7212f6271b1e8d91b30221" + }, + { + "rel": "item", + "href": "./AZ35_10000_0505.json", + "type": "application/json", + "file:checksum": "12207b473b540f1101086ee7b053f3de427bb44054ae737fdb0d2ed86f6b879a4b5f" + }, + { + "rel": "item", + "href": "./BA34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220266213e124ae196c78b3e4172cb62e803f9e1f7ced99be8f51acfe22c99a8ae0" + }, + { + "rel": "item", + "href": "./BA34_10000_0103.json", + "type": "application/json", + "file:checksum": "12203e61773ea8c5cbf6c7511f44e4896471b0ced3e3a2ba179a544f4003d1eb6771" + }, + { + "rel": "item", + "href": "./BA34_10000_0104.json", + "type": "application/json", + "file:checksum": "122082b8e169262bd7bffeb41aae6be401bd211a0136e9985070370de9fcb3938f4d" + }, + { + "rel": "item", + "href": "./BA34_10000_0105.json", + "type": "application/json", + "file:checksum": "12206a1ceb873d7cc5b9b331d0948a7325bac21fd5df6d4156a5f757b5158bfafc2c" + }, + { + "rel": "item", + "href": "./BA34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220dba8f4aa0b1385abab6990d208c0c44d31ad56cc29646d8f000ee2b4045832f6" + }, + { + "rel": "item", + "href": "./BA34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220680117223e4a1f97f24e359a60b72969ecf1f1ce122ff1422bea5efccf4aeba4" + }, + { + "rel": "item", + "href": "./BA34_10000_0204.json", + "type": "application/json", + "file:checksum": "12201f7145a2e718f3d83f76c4fa54006045ad8cbf807abd15d451510271f921c0d6" + }, + { + "rel": "item", + "href": "./BA34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220fd25458a544e4f77e041141de95e2a0ccdcd55817b04b9fceea68a061e722c40" + }, + { + "rel": "item", + "href": "./BA34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220a8661e9b44b225c1f34191f1b7a6d6915e88d74c93ff48f2cd435021c2d0b7cf" + }, + { + "rel": "item", + "href": "./BA34_10000_0303.json", + "type": "application/json", + "file:checksum": "122071b3d6f0605c29047c465046c0621d987c74927158aa2ab3d7ad5e21b5661b3a" + }, + { + "rel": "item", + "href": "./BA34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220aa79ea202590d0cda60a427ae55a76a705caec4e03a04044e95708ef87309432" + }, + { + "rel": "item", + "href": "./BA34_10000_0305.json", + "type": "application/json", + "file:checksum": "12203a1639aa9de0abe4c9ba3d849cf9566e6ff38aa0cffe9411008cce9cc94846ee" + }, + { + "rel": "item", + "href": "./BA34_10000_0403.json", + "type": "application/json", + "file:checksum": "12205b6737b5c70b1b61fcbbe182661f90b529eac44448d62e972f17814a3fc3965b" + }, + { + "rel": "item", + "href": "./BA34_10000_0404.json", + "type": "application/json", + "file:checksum": "12206942024819f9d7da4d8085e09af32ae6b447bed731b55b0c1456990a86a35a9e" + }, + { + "rel": "item", + "href": "./BA34_10000_0405.json", + "type": "application/json", + "file:checksum": "12207bc8251ebb21fa258e51e8206509ded2c122410ad24551b96b8d49647c39df29" + }, + { + "rel": "item", + "href": "./BA34_10000_0503.json", + "type": "application/json", + "file:checksum": "122094993fcd29a9224c5d00394d0a8e0a2e9debabedcf53380f58b12a903a71098c" + }, + { + "rel": "item", + "href": "./BA34_10000_0504.json", + "type": "application/json", + "file:checksum": "12205cd434e8f51afa8cfab930d591b345bc852fab1273a6237a3240fc5373cfd390" + }, + { + "rel": "item", + "href": "./BA34_10000_0505.json", + "type": "application/json", + "file:checksum": "12203baab5f852fef197829210570ad1d5d1eba342538710ea9479e514e990ab0a89" + }, + { + "rel": "item", + "href": "./BA35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220dec4013cab6b4d89dfe3764a7f1acb79de8a92c4b2dc31e99d17cbc8f1e3a7af" + }, + { + "rel": "item", + "href": "./BA35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220e7b5c28bdd404d8928ef8aebccdaf16d72feef45a009e937d4ec12a7cdd65f16" + }, + { + "rel": "item", + "href": "./BA35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c0cfdc877b65157735e5c09457fd6cabf3d471f5c8bdc99f69922ec0f800fcf7" + }, + { + "rel": "item", + "href": "./BA35_10000_0201.json", + "type": "application/json", + "file:checksum": "122008b0e937109e277dec25de208f290e6322f34af556bcc88a14ef775323354b21" + }, + { + "rel": "item", + "href": "./BA35_10000_0202.json", + "type": "application/json", + "file:checksum": "12209746f3f178fe9d8880194d93d397771af40673aa71982415d50c59bdaa3d050a" + }, + { + "rel": "item", + "href": "./BA35_10000_0203.json", + "type": "application/json", + "file:checksum": "12200ea2ec79c47919b3fade88b17ea5483823e8dbfc2960a41e653fe24c480df066" + }, + { + "rel": "item", + "href": "./BA35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cbf692b583a1bc22ea8cba0970530fe3fad5b764dcd52251c561c90f174d8fbb" + }, + { + "rel": "item", + "href": "./BA35_10000_0205.json", + "type": "application/json", + "file:checksum": "122037d9bc191ce102ffcc3e5d32cfc98f66140ef440801eb460dd71360ef1fcc228" + }, + { + "rel": "item", + "href": "./BA35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220080eed5e5259376ab3d303a1094a04a3ec965eac4df97ad52b9c6911e36d62d8" + }, + { + "rel": "item", + "href": "./BA35_10000_0302.json", + "type": "application/json", + "file:checksum": "122090d4585e9af33bd45e66680d4ec7604c40e298de8cef9d5180bf31c23ddf9b44" + }, + { + "rel": "item", + "href": "./BA35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e4cc8fd27c95854dec56c82f9af3da8e69e1467c733325d42cbe77d5f206ae45" + }, + { + "rel": "item", + "href": "./BA35_10000_0304.json", + "type": "application/json", + "file:checksum": "12205ed7aab3212aab88c1112f868bc8a44a6165d55db409ae7acdb7e8c53a894e35" + }, + { + "rel": "item", + "href": "./BA35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220b841f20b5409ca9fe900016701b91679800cf1c4e6d57fd4e381dd979726daa8" + }, + { + "rel": "item", + "href": "./BA35_10000_0401.json", + "type": "application/json", + "file:checksum": "122003a9cae5d09d4618ed5433a3d28ab0e243fed4c593f9d19257113749ed0e4a83" + }, + { + "rel": "item", + "href": "./BA35_10000_0402.json", + "type": "application/json", + "file:checksum": "122022cf2ea1fc14a85101759b8171c0309e6a827af0b217be841b1d8ed3b6608f01" + }, + { + "rel": "item", + "href": "./BA35_10000_0403.json", + "type": "application/json", + "file:checksum": "12208cc4c1f3f3bc9786d7b2ea3e666f1ed8b5cbb1a5aa9755e1dc9e4383c0ea6097" + }, + { + "rel": "item", + "href": "./BA35_10000_0404.json", + "type": "application/json", + "file:checksum": "12200307af9894adfd5939ce318ef3d8828a0b91b5e91ce2d67a1570e082c7142746" + }, + { + "rel": "item", + "href": "./BA35_10000_0405.json", + "type": "application/json", + "file:checksum": "12209016f36f42af2a52815b2cabb87301c8ea53852b84613633c63cdff3842bde7c" + }, + { + "rel": "item", + "href": "./BA35_10000_0501.json", + "type": "application/json", + "file:checksum": "122021b1239483126da8c8873b9852fa7202619a19b54c3e29908e92c9ffb904c4bd" + }, + { + "rel": "item", + "href": "./BA35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220aeaefcda2e2413dbee6c6eafe90b173702a2809e8423f9e6f43aee36949d1bb9" + }, + { + "rel": "item", + "href": "./BA35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b17a877648e51cb54fbd6c9701dc758920ac5dd8866e8c0a3bf9c2ba42a9482f" + }, + { + "rel": "item", + "href": "./BA35_10000_0504.json", + "type": "application/json", + "file:checksum": "12204bfb3e4b8b066d9cf10c6ed073b9b3b07de05bd773b2982beb40bd65581d3748" + }, + { + "rel": "item", + "href": "./BA35_10000_0505.json", + "type": "application/json", + "file:checksum": "12209b143f9a3fc6436422f223b204525d8799bcba6ba4523ea0b1d919f22a20e3ad" + }, + { + "rel": "item", + "href": "./BA36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b915bfc8950aba468e7a8d04276e4732a2ba5e6a1742459fef1250a688a60402" + }, + { + "rel": "item", + "href": "./BA36_10000_0102.json", + "type": "application/json", + "file:checksum": "122042bbe705d8f999d6bbef20b990e690bf24384038c15cea220eb0b3208ab527dc" + }, + { + "rel": "item", + "href": "./BA36_10000_0103.json", + "type": "application/json", + "file:checksum": "12204c5f674326c0659a9fd2f7156fe9661ef440a39a32c412ee7b86461e917b7ecc" + }, + { + "rel": "item", + "href": "./BA36_10000_0201.json", + "type": "application/json", + "file:checksum": "12202f4a8ed3d88ebfa6007c93366160ddf677bcaf4a89312d5ec6f2effaab0ed8d9" + }, + { + "rel": "item", + "href": "./BA36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220fa68228e464be32cf5fa97bc5dbb61b780413d82b82fab615059d17bb07e9e5c" + }, + { + "rel": "item", + "href": "./BA36_10000_0301.json", + "type": "application/json", + "file:checksum": "12208b2ea92eaded3c84644dd257d90f9831cc71a48ace32d73f44370decf548c19d" + }, + { + "rel": "item", + "href": "./BA36_10000_0302.json", + "type": "application/json", + "file:checksum": "12203a7eb4e7b8ce51347a226a5b53d71335406ddbdf294e762615061c76976c174c" + }, + { + "rel": "item", + "href": "./BA36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a228e60b227554acbd5c317f0d9263e027d165f8416f02436e44d0beda7b8fd0" + }, + { + "rel": "item", + "href": "./BA36_10000_0501.json", + "type": "application/json", + "file:checksum": "12204e5ebaaf32b25492b90420c4ddfe64ec565b6abc238fa5f0fa1853ef21877ed1" + }, + { + "rel": "item", + "href": "./BA36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220d7919fbb5814ccfa232513802161e7f6348d135874bf9178aff0a2c2947d423c" + }, + { + "rel": "item", + "href": "./BB31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220561fee9c5ce30356a9b0b761a940df038aff4046004117ace484c39543afa490" + }, + { + "rel": "item", + "href": "./BB32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220edc321f3102f3257fb2fc869cd6e4a8cddc274998d396985943389b76c4b2bd4" + }, + { + "rel": "item", + "href": "./BB32_10000_0502.json", + "type": "application/json", + "file:checksum": "12204f9f7f890ee92016b01cb94d364b784410f73c1e9c6f0caca2a2b1c0c2b70c1f" + }, + { + "rel": "item", + "href": "./BB32_10000_0503.json", + "type": "application/json", + "file:checksum": "122025ad754063650e5b003f17011aa4602bf651caea895259c923380c69b92be39e" + }, + { + "rel": "item", + "href": "./BB32_10000_0504.json", + "type": "application/json", + "file:checksum": "122014aa83d89883e915f79819c040d86a8ae6347c864c8761ee01137ea1960faa24" + }, + { + "rel": "item", + "href": "./BB32_10000_0505.json", + "type": "application/json", + "file:checksum": "12204be900e7294eb2b0b6f67823f5f3994d90ebc50c1daaffaf2ffca78fd8455508" + }, + { + "rel": "item", + "href": "./BB33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ab31d17e7b0f53e73a6b201f7891dd0014add9b991c44fe7ce5a6ffb6fcdde79" + }, + { + "rel": "item", + "href": "./BB33_10000_0305.json", + "type": "application/json", + "file:checksum": "12208412ec6953a012e5d2946a749e47d341f1a9464abd6f80794c92196a935c236b" + }, + { + "rel": "item", + "href": "./BB33_10000_0401.json", + "type": "application/json", + "file:checksum": "12204ef080b714ef3b462ae5d5f92b0d377a81b286d02095e0f461c78fb8e04a13a9" + }, + { + "rel": "item", + "href": "./BB33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220255aef3df7eaffe2666dea291b54bcaa7a170da3fd54e4714f51f444b136d651" + }, + { + "rel": "item", + "href": "./BB33_10000_0403.json", + "type": "application/json", + "file:checksum": "12202b003a0e2e9b22603bed6bf56afb8d7a072a5fbb6c058afc52362c5320ad6bca" + }, + { + "rel": "item", + "href": "./BB33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220356e1c5139afb1caf0299f35e406f7c30c83cc7bb1d5b15c6a6eea7c6a7804ca" + }, + { + "rel": "item", + "href": "./BB33_10000_0405.json", + "type": "application/json", + "file:checksum": "122010aab0f99abf4850d4f3222575e01df6192dfb80c09e6a2667c1777a0303dceb" + }, + { + "rel": "item", + "href": "./BB33_10000_0501.json", + "type": "application/json", + "file:checksum": "12206aaf6440ac5348d015dffd56b266b3d872f1a56b26e43b7db2db080db62a11d6" + }, + { + "rel": "item", + "href": "./BB33_10000_0502.json", + "type": "application/json", + "file:checksum": "12208e4ef417c045affeae963922feaa05a1c0dbcdc8ff50b6d8c9b5e0c489e7e865" + }, + { + "rel": "item", + "href": "./BB33_10000_0503.json", + "type": "application/json", + "file:checksum": "12204550fa908f7844d88fe29b00cf5584598671ad324afff8382a6a14fa3c7e5ffc" + }, + { + "rel": "item", + "href": "./BB33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220df096498f99447fb6c0cf5c42cd86eb7a256f9a204913836adccabd6bd69fcda" + }, + { + "rel": "item", + "href": "./BB33_10000_0505.json", + "type": "application/json", + "file:checksum": "122085a653273db393614cb0428904e698ca845ff0166b2811a2d16d05f08e8af776" + }, + { + "rel": "item", + "href": "./BB34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220567d6c547b1d3865bd9fe5526936ebac440344c43e8883dabe7545fd64c6292a" + }, + { + "rel": "item", + "href": "./BB34_10000_0105.json", + "type": "application/json", + "file:checksum": "122041d71ed8e9d50b52c8112819bed94797e3d3140ecc4c7ce5cbc43fbb74d0ab0e" + }, + { + "rel": "item", + "href": "./BB34_10000_0204.json", + "type": "application/json", + "file:checksum": "122090f4d75aff7109fae993e814797a32d96ccfa10965e7dc9595a3645ffc712d44" + }, + { + "rel": "item", + "href": "./BB34_10000_0205.json", + "type": "application/json", + "file:checksum": "122021d63742d7feeb21504f7f8498c61fef5a333692a9ad238aeb48ea66766824d5" + }, + { + "rel": "item", + "href": "./BB34_10000_0301.json", + "type": "application/json", + "file:checksum": "12201b730f912fbe2fca5e4b9ceee7138edfe7de9208a5a0c71f282130d7cef92259" + }, + { + "rel": "item", + "href": "./BB34_10000_0305.json", + "type": "application/json", + "file:checksum": "122016ed8128042768a0c1ddd9355b6e016cae386df4876dda5020015942ffd3a5e0" + }, + { + "rel": "item", + "href": "./BB34_10000_0401.json", + "type": "application/json", + "file:checksum": "12208eb81e60b8679bfd41df414cb07cb05092072b3159a23ed6d461c5923298675d" + }, + { + "rel": "item", + "href": "./BB34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ac34f1b1ebc2ae8c5c99efff30f6f956e78d80bd00fd4c013c6e323e3fc1c79a" + }, + { + "rel": "item", + "href": "./BB34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220111757e518625f6c291f166639f8f7f9a6bd4148b8318f3c09bc5adc1024231d" + }, + { + "rel": "item", + "href": "./BB34_10000_0405.json", + "type": "application/json", + "file:checksum": "12208d2a9b41eaf8944659f97d9200110ca98fa12e5d263ee36fe0ea39fc7741fcb0" + }, + { + "rel": "item", + "href": "./BB34_10000_0501.json", + "type": "application/json", + "file:checksum": "12200065a8e68046a70effa27ff38787bda776f94f7185558afc88a88cca2f1b97c8" + }, + { + "rel": "item", + "href": "./BB34_10000_0502.json", + "type": "application/json", + "file:checksum": "12209485bba93f19914b5652eaa2ff545d333923eac0c462ff0a6d38ae9c2dca80d0" + }, + { + "rel": "item", + "href": "./BB34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220c98c1a7345eacf46a822fb4e6e3ff43ae5e9d38e05bea886ce1a29ca3ff5fd25" + }, + { + "rel": "item", + "href": "./BB34_10000_0504.json", + "type": "application/json", + "file:checksum": "122093aecb469cc28d2696faff64604d5880bc0e7efbc22677eb67b9b1243af17fb9" + }, + { + "rel": "item", + "href": "./BB34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220aeff2620c79259c243b2c9b4c0c73ab0fa60e61a31517804f16c042905509c5e" + }, + { + "rel": "item", + "href": "./BB35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220204af960d1851ac42d767caa218ee573a1cd652cfd53e802ef06b352989eaace" + }, + { + "rel": "item", + "href": "./BB35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220428fa1df185e8c4b3bfc6baa460b5a646259e2c5e6d3207b3b3a9b4f3356a819" + }, + { + "rel": "item", + "href": "./BB35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220c58d2e31a554f2ffe534d715adf55b9afeca40dee375cbd1f6f90787fe3b6855" + }, + { + "rel": "item", + "href": "./BB35_10000_0104.json", + "type": "application/json", + "file:checksum": "122064569e9c3da8ac025dfc05d512bd61b24b85fd3b5c81c3ca37e3bca54fe53c5c" + }, + { + "rel": "item", + "href": "./BB35_10000_0105.json", + "type": "application/json", + "file:checksum": "12208c9c530ff80e38416fc82e6fb394acbfdba9d7d05e673e3aa93b0ace07a9ec1e" + }, + { + "rel": "item", + "href": "./BB35_10000_0201.json", + "type": "application/json", + "file:checksum": "122046ca15b313a6bed172d125c111125354f226040c93cb8d6ebff91af9c1fb7627" + }, + { + "rel": "item", + "href": "./BB35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220289d4402b424c9b7d8be715dd90e06bcaa935e7c7d13b81d21fdb76eb19b6ed6" + }, + { + "rel": "item", + "href": "./BB35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d51d5be1f0daf93cc7f2ed35206ec9add9c0229aaa944398b00e4b457c8a0d97" + }, + { + "rel": "item", + "href": "./BB35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220788515118c1e69947b275459478f2e30b1b81b94ef2d20ff7856059eb367b848" + }, + { + "rel": "item", + "href": "./BB35_10000_0205.json", + "type": "application/json", + "file:checksum": "12205369344d961c26f1a83fa464b3ccce8970d839290c4d80bd8a0ad611431a083f" + }, + { + "rel": "item", + "href": "./BB35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220fd5483fc0a2249a2d8c69f586571f1db1ace2747ae723719661f88e1fcbcf649" + }, + { + "rel": "item", + "href": "./BB35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220a29ae364ee1bfa027ba51bebb5dcf624ee275f231e7da9eb0d4d6b2b55dc07da" + }, + { + "rel": "item", + "href": "./BB35_10000_0303.json", + "type": "application/json", + "file:checksum": "122006c897ec0301f689dbd9e5041e6644d2e98b1d835de5c4d5942caa8276f3dde7" + }, + { + "rel": "item", + "href": "./BB35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220b51b2fe7b2b0bd54de3c320ec996a7bed47d38784ea1f641516dd8b52ee61a86" + }, + { + "rel": "item", + "href": "./BB35_10000_0305.json", + "type": "application/json", + "file:checksum": "12200f1fe0b6197491f206cdb8b5904349212105d85aadb811847bfc970d65e63ec7" + }, + { + "rel": "item", + "href": "./BB35_10000_0401.json", + "type": "application/json", + "file:checksum": "12204d9cf3794ec01fca87e53dd31f13763680e77dfb76c8f022797c27b084723a3e" + }, + { + "rel": "item", + "href": "./BB35_10000_0402.json", + "type": "application/json", + "file:checksum": "122087c7829a19b326c46a644b945362f65bd119ccf6f02f753dcf49cd1b8c0c1699" + }, + { + "rel": "item", + "href": "./BB35_10000_0403.json", + "type": "application/json", + "file:checksum": "122070e583b9bcd608e8d34e0e5674da4a30f0559c63936f38c8a65697ce75560502" + }, + { + "rel": "item", + "href": "./BB35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b35c409d0489aa0ba79b04159bdaffa0f4a9274b26c409e19501b3e24c930498" + }, + { + "rel": "item", + "href": "./BB35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203fcfd1dc5845d479739d3d7b2d4ba8a2cd7dcc83f07756a93d8e5973e278e4af" + }, + { + "rel": "item", + "href": "./BB35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cb2270fba34a55f61538031c4f98f99ef51243c429f25e36762eb2a0c9b33454" + }, + { + "rel": "item", + "href": "./BB35_10000_0502.json", + "type": "application/json", + "file:checksum": "122048c380df21f22a290b22416c0a4c7385546bbfeef4a6d469d1ab26e7cb03f280" + }, + { + "rel": "item", + "href": "./BB35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d0440a9a35128f9ef31c101e2d6694132366f92e55063d3db4aeaf612d93e3d8" + }, + { + "rel": "item", + "href": "./BB35_10000_0504.json", + "type": "application/json", + "file:checksum": "12207f53e7903dc9787d9a89c3dad2050380eb438d39a82051dbfee2d41e8c03f8de" + }, + { + "rel": "item", + "href": "./BB35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220255fd8c4c96e4f2ce51f3ca8b7c48d764364b2d0aa2929a1bb1e6167862833a0" + }, + { + "rel": "item", + "href": "./BB36_10000_0101.json", + "type": "application/json", + "file:checksum": "122006a82a0f376cdda66aa0f77100615fdcd2990bb5dfe5850caf1ad92d168f22da" + }, + { + "rel": "item", + "href": "./BB36_10000_0105.json", + "type": "application/json", + "file:checksum": "122068ca0047a61e81e48668e38f0ba67f9480c0f37f1c2ecd9f8a4f207ccd2f2dc9" + }, + { + "rel": "item", + "href": "./BB36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220e35b81b97d4cbda01a15241a0fdbb8f00da0c773f30ce51fa1dc218a6c006aa3" + }, + { + "rel": "item", + "href": "./BB36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220dd35a79aff6c90ed83e08b9a27e0e8d1c759b53cb4a8e53438f4fc379fcdc234" + }, + { + "rel": "item", + "href": "./BB36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220779e63f07466147e0f22f31d74135b8a09f1fa0055b22e279658b6ea4f41be0a" + }, + { + "rel": "item", + "href": "./BB36_10000_0301.json", + "type": "application/json", + "file:checksum": "122091d7cc39200f67366d8f60052f6b4fd86cb780ba1585219e48bfafe6ad2cc065" + }, + { + "rel": "item", + "href": "./BB36_10000_0302.json", + "type": "application/json", + "file:checksum": "12208fbde404ce1e68a49a630c2dcdf24c292e186e51d671016deac79db3f1652736" + }, + { + "rel": "item", + "href": "./BB36_10000_0303.json", + "type": "application/json", + "file:checksum": "1220acaf132943b8f02ddfcc3ff209cef29300d2d4c5c9e7e0288592477d0c67106e" + }, + { + "rel": "item", + "href": "./BB36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220cf8fbb8bfe9d3a3dec782d83731adf9160d62503bdd73115031c5466556b0a01" + }, + { + "rel": "item", + "href": "./BB36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ad1f87aeabb05a98ead94db039845fbdfb385edb28bdb9c1799d8956d2db28fa" + }, + { + "rel": "item", + "href": "./BB36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220a8448b41f25a49c117cfae2c3421b8b6bd874dfcc85b9a40f40d2c1ce7967ba2" + }, + { + "rel": "item", + "href": "./BB36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220422090894b717da15f7e73ea2217383a0c843a78bc930a9e4e1cf0413e6b505a" + }, + { + "rel": "item", + "href": "./BB37_10000_0101.json", + "type": "application/json", + "file:checksum": "12205c1be5ed0773654e8c71657b28d68f9d1a0f8cc7ad7a83ccee555a713488cc5b" + }, + { + "rel": "item", + "href": "./BC31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220031123a2fa59c1764980a6197454f823a46f9a115989f9172fb936a6e25b224d" + }, + { + "rel": "item", + "href": "./BC31_10000_0105.json", + "type": "application/json", + "file:checksum": "122062ab8b4c7dfe171a5914396a2b001bca3c1198ba072e0e236be311bc4ce50bd8" + }, + { + "rel": "item", + "href": "./BC31_10000_0204.json", + "type": "application/json", + "file:checksum": "122014350e7287710de9b24cccb8f1acfcedefdc292442941f6435d8d740e38c559b" + }, + { + "rel": "item", + "href": "./BC31_10000_0205.json", + "type": "application/json", + "file:checksum": "12202165061008624f8122eb7842d51e52cb677f0f166c9aa8597033cb058faacde7" + }, + { + "rel": "item", + "href": "./BC31_10000_0304.json", + "type": "application/json", + "file:checksum": "122017417004388c67cebdedf60f294742fc2bd520b44574a33877fd7e595e4beec6" + }, + { + "rel": "item", + "href": "./BC31_10000_0305.json", + "type": "application/json", + "file:checksum": "12202d31a44256291cad7cecca37d3de20bed967408e0b3dbc2c3f0aa896ee8b5eb8" + }, + { + "rel": "item", + "href": "./BC31_10000_0405.json", + "type": "application/json", + "file:checksum": "122051fe21c3d6edd86cfe72355c187496dc845a1239ff5bec7cd780b0661476781c" + }, + { + "rel": "item", + "href": "./BC31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220817ee98c58638b7f8737876f585c3a1afdb4d9ef031207123e5ee4ad4a4a8c0c" + }, + { + "rel": "item", + "href": "./BC32_10000_0101.json", + "type": "application/json", + "file:checksum": "122028f3f95df8e9f384e6eef0d2ba1480a91b72f7f155c71ec8937ed06f73ce2742" + }, + { + "rel": "item", + "href": "./BC32_10000_0102.json", + "type": "application/json", + "file:checksum": "122079cd1667c1f6e3547075775b2c7b496c428a2a95c7de1d80e7092c35bb9129b5" + }, + { + "rel": "item", + "href": "./BC32_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f8b4434e96407556d5a0d897a7b3643e6b419b56910bc8589a778e6fc00bfc55" + }, + { + "rel": "item", + "href": "./BC32_10000_0104.json", + "type": "application/json", + "file:checksum": "122082e906b14105ac46be34d7b2c3e91f73edcfb546f1a89d689a65cecb6fc0713d" + }, + { + "rel": "item", + "href": "./BC32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c7dc59565bcdc2186f51bdfdba9ae627682f0bb7e82409a3db5ebac64293b7b9" + }, + { + "rel": "item", + "href": "./BC32_10000_0201.json", + "type": "application/json", + "file:checksum": "122095d468b6d32015ca3bfe41735a45bcd1f4ed5435a73899ecb8619b66cedf1c67" + }, + { + "rel": "item", + "href": "./BC32_10000_0202.json", + "type": "application/json", + "file:checksum": "122032186a8be510fd90e2ec94cb25b5fa9d371a257cc98ac2ad4a3d71e17f0592f7" + }, + { + "rel": "item", + "href": "./BC32_10000_0203.json", + "type": "application/json", + "file:checksum": "12200ad676884abd0987d27f27d617ef768ef2bebe365092693dc0abd8e8cb0d0e0b" + }, + { + "rel": "item", + "href": "./BC32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220a999c172225783c48019ad7586f01a32151e95ca2437cf28276c75efa60f58d5" + }, + { + "rel": "item", + "href": "./BC32_10000_0205.json", + "type": "application/json", + "file:checksum": "122056702ac8252df667e0e83874d2b05964ece46c386f3861715d47ca0bf2c768f7" + }, + { + "rel": "item", + "href": "./BC32_10000_0301.json", + "type": "application/json", + "file:checksum": "122023be0b0c4a003681f829e565402ec05880914f8a4780527aa626934e75c4ed36" + }, + { + "rel": "item", + "href": "./BC32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220844bdda9b811dca854325cee88d67563275ab763291a800f2af6cad6ccd808da" + }, + { + "rel": "item", + "href": "./BC32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220ad5fd07f6033ac949b9de23b9888a8e398fb564f34618fcf80b3cb31c542e066" + }, + { + "rel": "item", + "href": "./BC32_10000_0304.json", + "type": "application/json", + "file:checksum": "12208b55e83dbd6e51cef105ec93bb345a06dc5fe2c3d8b596fe5970ad0bf04d9156" + }, + { + "rel": "item", + "href": "./BC32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a2c7906f35e32326334db87b6a60193b0fffedb5aba8aae85b1fffa03f7063b7" + }, + { + "rel": "item", + "href": "./BC32_10000_0401.json", + "type": "application/json", + "file:checksum": "122008025ad915371179ccd2913ae52399b50c7630925e74feb57ab064a5a64d1b15" + }, + { + "rel": "item", + "href": "./BC32_10000_0402.json", + "type": "application/json", + "file:checksum": "12208bcc795543e2a91519f8294796efda042a6276fc95a01b3960b43371fad93df2" + }, + { + "rel": "item", + "href": "./BC32_10000_0403.json", + "type": "application/json", + "file:checksum": "1220d038017586bdf3e68d8f1abce9e061de3c48f670694d0acd1a7e88bc5067bb5b" + }, + { + "rel": "item", + "href": "./BC32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220c2ad9105c2d73fcc00381ac58f33c10565458e9d22ba88c8a75be3320479b004" + }, + { + "rel": "item", + "href": "./BC32_10000_0405.json", + "type": "application/json", + "file:checksum": "1220685e28a7ec204bd37121d1a26e840fb4f45f06b4277e1c673134cd4da1e08c3c" + }, + { + "rel": "item", + "href": "./BC32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220911ffc25b40c2d95aac949b3212ffde7c339795ba6bd9fadff5d3157103bc9ae" + }, + { + "rel": "item", + "href": "./BC32_10000_0502.json", + "type": "application/json", + "file:checksum": "12208c87de837fd12efbfcbb6ccb38a6372d8803924d74685ccc8bd9b05135c83470" + }, + { + "rel": "item", + "href": "./BC32_10000_0503.json", + "type": "application/json", + "file:checksum": "122095a0fb3e341156881ab2a028e2206e2c6b569eaa07a3b775079d83abf76dd536" + }, + { + "rel": "item", + "href": "./BC32_10000_0504.json", + "type": "application/json", + "file:checksum": "122047288a6615da88e01f207443ea8f11be8ba92762320a97ae5c69f2feabedccac" + }, + { + "rel": "item", + "href": "./BC32_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b377d0b0759fa4592600e9d9ca57356d140852ece79983c0649ed06dde054d66" + }, + { + "rel": "item", + "href": "./BC33_10000_0101.json", + "type": "application/json", + "file:checksum": "122048f1fd1a0f95a77994288473bbbe399ec10ed8f74c733abf23961f416cd83eb4" + }, + { + "rel": "item", + "href": "./BC33_10000_0102.json", + "type": "application/json", + "file:checksum": "12204e893211cea14b4f982c5098847e4acab8a1866ad664a6064b6c7453a5679ed3" + }, + { + "rel": "item", + "href": "./BC33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220dd51f2fea88e2a9d5bbc112195e6da9131bd1e2fddb4dbffb1f006d83072518a" + }, + { + "rel": "item", + "href": "./BC33_10000_0104.json", + "type": "application/json", + "file:checksum": "12200e5da384cbf65243205b9d9c6292a31bc26d72a6dbe0d8e32ba2209105b813ff" + }, + { + "rel": "item", + "href": "./BC33_10000_0105.json", + "type": "application/json", + "file:checksum": "12205ff4aec339694c6b4328ea282e62345c7aac8433463646b40a29c9b8c6b3ae1e" + }, + { + "rel": "item", + "href": "./BC33_10000_0201.json", + "type": "application/json", + "file:checksum": "12205dfa046fbead611a36c1c49db7792bb5cf2779c1c51b020c77c2018c6c455c39" + }, + { + "rel": "item", + "href": "./BC33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220953443049040d20254f69fab9f1e0198817099fe9cb1839823de02a814507af9" + }, + { + "rel": "item", + "href": "./BC33_10000_0203.json", + "type": "application/json", + "file:checksum": "12203b178057014845d00f55751d4a5c59a3a2339468c53585f32a0b21f54a2568af" + }, + { + "rel": "item", + "href": "./BC33_10000_0204.json", + "type": "application/json", + "file:checksum": "12202a30b6f9c3d8783fac6a6f42529eb54c3e14b3185a87ed4e03712827e498a31f" + }, + { + "rel": "item", + "href": "./BC33_10000_0205.json", + "type": "application/json", + "file:checksum": "12203efb570588fa5352cf3d0c16dbd4336c2daeaf151b275dfabf4f0d4e89a62839" + }, + { + "rel": "item", + "href": "./BC33_10000_0301.json", + "type": "application/json", + "file:checksum": "1220a2e27f12bd338931fed66d65e39689bac30f59c2a88789e5cf873a0f83e2690e" + }, + { + "rel": "item", + "href": "./BC33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fdad2fe3d39ab0a928d8656a022da5568a9d2371527dd8ed28130be8956098e9" + }, + { + "rel": "item", + "href": "./BC33_10000_0303.json", + "type": "application/json", + "file:checksum": "122091ca12444439b8b9f001df55c2636c43d9b82c450ca5a50744f91e959261a04e" + }, + { + "rel": "item", + "href": "./BC33_10000_0304.json", + "type": "application/json", + "file:checksum": "122098a4b63eb036a407bf6a77a3efa00b66ab10f20f63c7389d236f9ae9b57bc3e4" + }, + { + "rel": "item", + "href": "./BC33_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a15e7b0d2e2f6415d9e83bef20066f47b5921383207e530c65d050e532dd8053" + }, + { + "rel": "item", + "href": "./BC33_10000_0401.json", + "type": "application/json", + "file:checksum": "12202d1a9e09526165c8ba169068f7e823f8ff5052f4e4c705b070c2305a78b194fc" + }, + { + "rel": "item", + "href": "./BC33_10000_0402.json", + "type": "application/json", + "file:checksum": "122041e52af797d087e291b75d369deaceb25093fd9b28c951d4c07bb44216818ba5" + }, + { + "rel": "item", + "href": "./BC33_10000_0403.json", + "type": "application/json", + "file:checksum": "12200b6b7c1c66fc74cceb095a153d445474334e0e8d7cef0c7d67b5c04b7cbd5e9a" + }, + { + "rel": "item", + "href": "./BC33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b8f5fd2f1e24cabb0d88ffbf2612ab7128db807b8a22f6c90eec84887320caa5" + }, + { + "rel": "item", + "href": "./BC33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220ef492e7c184acd89f00ee47e66ecea5e0191d032f8dbcb7e5c4f265c2d6e9f40" + }, + { + "rel": "item", + "href": "./BC33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e5155441460b0bcc3d82f4cd4bb0c7833f191df88e2c92f8f01b57ad71dbe587" + }, + { + "rel": "item", + "href": "./BC33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fabf60f350373913814894248ed6a5b4ac6445299748408e6c9369451dbe6cac" + }, + { + "rel": "item", + "href": "./BC33_10000_0503.json", + "type": "application/json", + "file:checksum": "12209206cb1450aa009b5b47021d1fc33200d3c226663006c3d258c07fa6e1391a28" + }, + { + "rel": "item", + "href": "./BC33_10000_0504.json", + "type": "application/json", + "file:checksum": "122066cee475ed492957cb955f6ff01806de812f6bdfefe17bac4f2e0870b94239bb" + }, + { + "rel": "item", + "href": "./BC33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220783688803e7f46cb8bd0fc98674dca34175d453fb16817a315c5b786c4d78130" + }, + { + "rel": "item", + "href": "./BC34_10000_0101.json", + "type": "application/json", + "file:checksum": "122022d96feca9fcc4c7c5c14aa2be01eb57551545414b5ab0d0a79ada2ff1496062" + }, + { + "rel": "item", + "href": "./BC34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220aa113a5e49f678a08935a50bcbd782a83b23d2da977ebdcf0e47ef35ffa8f0f9" + }, + { + "rel": "item", + "href": "./BC34_10000_0103.json", + "type": "application/json", + "file:checksum": "122020fcc36a39a72ae5012ff3f2d0612c9f3be7ae7da96d95e85766c9cd90f200e9" + }, + { + "rel": "item", + "href": "./BC34_10000_0104.json", + "type": "application/json", + "file:checksum": "122005f8c851a3f56d4bebcac93b3c08fc054883c7b216153dfe85afbf7e2f4aa42d" + }, + { + "rel": "item", + "href": "./BC34_10000_0105.json", + "type": "application/json", + "file:checksum": "12206fa9faa926d7117aa6c2f6bb97674a112516759b0dac2d67d29733f4b8738eb6" + }, + { + "rel": "item", + "href": "./BC34_10000_0201.json", + "type": "application/json", + "file:checksum": "12201721e67bfba0311693a6b53afd37d1e2791c4e78b15b3e42c405ba3d1f596a95" + }, + { + "rel": "item", + "href": "./BC34_10000_0202.json", + "type": "application/json", + "file:checksum": "122020a37cdfe021e0a431d847309abee44dd52abdc19b00ba17ba9a6118d28880d9" + }, + { + "rel": "item", + "href": "./BC34_10000_0203.json", + "type": "application/json", + "file:checksum": "12206c35022d64f10ef66891815f51d414756ff08d66db33977f56ac4647e9532849" + }, + { + "rel": "item", + "href": "./BC34_10000_0205.json", + "type": "application/json", + "file:checksum": "12208bf660d5a9961ade3f702232afec1138a3ed2568e187e5d04c144dadd630ca31" + }, + { + "rel": "item", + "href": "./BC34_10000_0301.json", + "type": "application/json", + "file:checksum": "1220603c51678c133348c84521d988d79cc636fb40355aebca94c10e73e9a3d3b86d" + }, + { + "rel": "item", + "href": "./BC34_10000_0302.json", + "type": "application/json", + "file:checksum": "12207339460458acc9800f852e52d39765bbed78eb390e8382b68d9c3baff3e68730" + }, + { + "rel": "item", + "href": "./BC34_10000_0303.json", + "type": "application/json", + "file:checksum": "12203ebbcec4a62435db6f605ae0af8052e872a9e35cb82487bd1466988622afd55f" + }, + { + "rel": "item", + "href": "./BC34_10000_0304.json", + "type": "application/json", + "file:checksum": "12205bc48625ff10a1bf84c5a99c695675a68e40a996893328fb3527bb2562545e77" + }, + { + "rel": "item", + "href": "./BC34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220894b3c67a157f05097db4e717103752c640430588572f20fb3aff2d665669231" + }, + { + "rel": "item", + "href": "./BC34_10000_0402.json", + "type": "application/json", + "file:checksum": "122043f1a1a299405f12acbfcd4fc6d54d9d487f73eed523b9ae7f1f563e9c0db166" + }, + { + "rel": "item", + "href": "./BC34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220381d84286562d716b792a29e27dad789134cfb3e3bff0daaa9e466e7900255a0" + }, + { + "rel": "item", + "href": "./BC34_10000_0404.json", + "type": "application/json", + "file:checksum": "12205afbda903b2f7a234b903e611f81f0932a4474604f28c0180a8da491b951c3fe" + }, + { + "rel": "item", + "href": "./BC34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e3f3defa11c38f62aafd303fde9000fde18934566bdf9bb80a8e24ff8ce2b07b" + }, + { + "rel": "item", + "href": "./BC34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220cf199677faa88c077af7d6a0e3d874dbfb382a958d9d810de09391cf9b06bb5d" + }, + { + "rel": "item", + "href": "./BC34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220c022fd43ba5fb11cd02f8d07f1e78f4be4427e426da1886afc8b70f064ce7eca" + }, + { + "rel": "item", + "href": "./BC34_10000_0504.json", + "type": "application/json", + "file:checksum": "122074ddf74b599c01ba9b5b1adecdfc074549fd25a32cd010c86c1b7df556a2be80" + }, + { + "rel": "item", + "href": "./BC34_10000_0505.json", + "type": "application/json", + "file:checksum": "12201e58dcee01d43ed87bf2bac674e0a6852bd4ab5323120a2caf1571c404ad2968" + }, + { + "rel": "item", + "href": "./BC35_10000_0101.json", + "type": "application/json", + "file:checksum": "12201752ecfc9bc75afced82e8e35afbcb9341ad6af50d6ba0d5855c785a2a178113" + }, + { + "rel": "item", + "href": "./BC35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220a77a2d331a904160b1154f59024e2f123bc11a2a8b9d689f6a71c8fc843075ca" + }, + { + "rel": "item", + "href": "./BC35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220841fe647ccd85263d265efd93c91da4b42154edc6eb253d182ce7225b0ccb7f4" + }, + { + "rel": "item", + "href": "./BC35_10000_0104.json", + "type": "application/json", + "file:checksum": "122045aef06c9b1b9ccc512caca8bd8390a4807a73904bd68001aa322887f80023b1" + }, + { + "rel": "item", + "href": "./BC35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220cf435c03e509c235715052a88c276007cd645b9b51990fc7d84d1f7f7a0a6a92" + }, + { + "rel": "item", + "href": "./BC35_10000_0201.json", + "type": "application/json", + "file:checksum": "12207e3651c4606b69a16d636951eb24d17beb80eac60e0288aa31a5776fb879473e" + }, + { + "rel": "item", + "href": "./BC35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220332896d66c6106cf8ad826f64d36b5f13b3eb5d328ea9caa70458fbe9c7fbedf" + }, + { + "rel": "item", + "href": "./BC35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220adc67a6c44e35d058f115528b3d03b7bda9daf64db424a89c121bb5740e14e28" + }, + { + "rel": "item", + "href": "./BC35_10000_0204.json", + "type": "application/json", + "file:checksum": "12204a0bce910f7ba0f6ceabba3c5c0bde24408e54ff35c61e16029f54258f55121a" + }, + { + "rel": "item", + "href": "./BC35_10000_0205.json", + "type": "application/json", + "file:checksum": "12204d16e0526a3dc9213ff74728c15a276886ca1053c8330ccade5a25a73c2db85b" + }, + { + "rel": "item", + "href": "./BC35_10000_0301.json", + "type": "application/json", + "file:checksum": "12209c038c9470c79c8a57c6e9ae4cd26eee433febace04e51d49d59db2d19d5dfc8" + }, + { + "rel": "item", + "href": "./BC35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220da5c8231fd8790cc8278e508a967b055c1c7849ef227d69ccc55b442d7326bda" + }, + { + "rel": "item", + "href": "./BC35_10000_0303.json", + "type": "application/json", + "file:checksum": "12208623885f319d4e34179dd744045ef7f580d00891a005604a0bd037b1dded6071" + }, + { + "rel": "item", + "href": "./BC35_10000_0304.json", + "type": "application/json", + "file:checksum": "122093afaacd6d4d270f1174c0f81cc9473495af410b38aaf960c50e46298c14c736" + }, + { + "rel": "item", + "href": "./BC35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220bb3469a2ee70b903e909a89fd46c35b48adfba5fbad2cb7b157f11d7a29d327e" + }, + { + "rel": "item", + "href": "./BC35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220777833ab38759841f63de309ba72bc4d1c294148b40c26613c04646073539ae9" + }, + { + "rel": "item", + "href": "./BC35_10000_0402.json", + "type": "application/json", + "file:checksum": "12208c132de6d4b4b3e62a9ee921bf4083c694721b1449e3777836dd71bee9700baa" + }, + { + "rel": "item", + "href": "./BC35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220af7a3dc7c14597afe00bc86f67052e33346789ab2c262e4f35190c71126ad93d" + }, + { + "rel": "item", + "href": "./BC35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b25c48e2bdf74c02dc4e35a46ac73b407b1effb92cb51782b3e1516cc74db888" + }, + { + "rel": "item", + "href": "./BC35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220a414713ddba9a509e814fb7aea5ff4b9e6c35481383b34635882e28c54b49c82" + }, + { + "rel": "item", + "href": "./BC35_10000_0501.json", + "type": "application/json", + "file:checksum": "12205bf9731721adc7cee79d8881aea211e1b6063c7c3a0b5e6f0e0e544640d61351" + }, + { + "rel": "item", + "href": "./BC35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220db7927caa3ab5de44af6f58fccf1d09351a720d4b795af8a943ad788cf5e34cb" + }, + { + "rel": "item", + "href": "./BC35_10000_0503.json", + "type": "application/json", + "file:checksum": "12206ed6d6a86620c22d32ceae3d83549b86b022b3548c2c7c9a2da6ffc2758d552c" + }, + { + "rel": "item", + "href": "./BC35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220e1e2bfa9843052cb81686ec3bcc803982b6042cf66816e23566f840b7795b154" + }, + { + "rel": "item", + "href": "./BC35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220abb07c9cb212e77c8c5ad6097c1b0dce2fd8e2ad83b116cbdf7f71010492b1cc" + }, + { + "rel": "item", + "href": "./BC36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b185dfd96b38c987bff9f0442a029d0d4da9a98d21402c9cb23a794d683caa65" + }, + { + "rel": "item", + "href": "./BC36_10000_0102.json", + "type": "application/json", + "file:checksum": "12203e554376672157dc2e244511d1416fb34ef18abeb8411ebc0d76a273a2f7f5cd" + }, + { + "rel": "item", + "href": "./BC36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220aed821882172fedaee12167184c0f230ce275a5c5a5d3e7c54e76e14ce4a870d" + }, + { + "rel": "item", + "href": "./BC36_10000_0202.json", + "type": "application/json", + "file:checksum": "12202ca39eeec91f78f0cd7881af0529dc22c77d9fa0666251f565e6d35246923ad1" + }, + { + "rel": "item", + "href": "./BC36_10000_0301.json", + "type": "application/json", + "file:checksum": "122030f72556314f596f79e9f893c14c19d1a2d67c6a32361d6de56b5ba3e6e25875" + }, + { + "rel": "item", + "href": "./BC36_10000_0302.json", + "type": "application/json", + "file:checksum": "12203d4e19ce09b50e7898d7314cb38d95f52c433f8f9892cd38d6ca0b14a66df1c6" + }, + { + "rel": "item", + "href": "./BC36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220fba601afc08bdaf8088e596a5e71a3ca4bf8b68fbf00053e01ec541f7061c3de" + }, + { + "rel": "item", + "href": "./BD31_10000_0405.json", + "type": "application/json", + "file:checksum": "1220ccfe9030771812b73cde1e0b9c71140d4183d42c4d3510aaa9903d3e67da4f8b" + }, + { + "rel": "item", + "href": "./BD31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e298810b48f17895ba6e746ec2201bf345af22e55079cefd05d558cabbb1135b" + }, + { + "rel": "item", + "href": "./BD32_10000_0101.json", + "type": "application/json", + "file:checksum": "1220a74cdd1e548236fb7ededbadca864e82d8106b464bca4b84498dce83bcf4ea80" + }, + { + "rel": "item", + "href": "./BD32_10000_0102.json", + "type": "application/json", + "file:checksum": "122046b069d9922ca2b41e154331f54a1ade78a26a9951108df4a7b39d372bfa7a0e" + }, + { + "rel": "item", + "href": "./BD32_10000_0103.json", + "type": "application/json", + "file:checksum": "1220e93370cd479c2c721c79bf7d3bb9be5461985f3649fb07f167a6b26059d9b7e1" + }, + { + "rel": "item", + "href": "./BD32_10000_0104.json", + "type": "application/json", + "file:checksum": "122082c69c7fab963f53a34c6835aa34e14ef93ae0557836644eb9b06b5e37449449" + }, + { + "rel": "item", + "href": "./BD32_10000_0105.json", + "type": "application/json", + "file:checksum": "12205921e61c1af11b8d0df3889468b9d9d376ad7966961ad66894755f1af666c61d" + }, + { + "rel": "item", + "href": "./BD32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220cd2e2de3bb223cee5b6ecb62517b007802c9ccdf2658b6cbcbcc2b368de6fa9a" + }, + { + "rel": "item", + "href": "./BD32_10000_0202.json", + "type": "application/json", + "file:checksum": "12209237b055aad440b09a0dd3e43b9b10c7d6b0b2d3d6e8792e827d904afc3d8fdd" + }, + { + "rel": "item", + "href": "./BD32_10000_0203.json", + "type": "application/json", + "file:checksum": "122066fcd3504b6114ec366981c9a1e1a860a5330a6a491a8d635c7dc7322ad55e4f" + }, + { + "rel": "item", + "href": "./BD32_10000_0204.json", + "type": "application/json", + "file:checksum": "122077de6fdfa4a402475491f36fd00e865455949c9c95b1ff041f7792d1785d19f1" + }, + { + "rel": "item", + "href": "./BD32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220537941e02fa36d5ee9ff2e4d92d3c0c12fd3ae4d8f61e1b8d494d10f41955f72" + }, + { + "rel": "item", + "href": "./BD32_10000_0301.json", + "type": "application/json", + "file:checksum": "12203de234ec985c14e7f0d081c0d5ea1bd5cfd8c28c6e42c95734c7491c8208c6c8" + }, + { + "rel": "item", + "href": "./BD32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220035abfcd841f685d6b97b25c153fcef2472efd02ad6d79d0602384dfb333850a" + }, + { + "rel": "item", + "href": "./BD32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c818e54d032bc0f4c9c5b05d06d0987cd05837e815ffb2a90d5d99186023aeb0" + }, + { + "rel": "item", + "href": "./BD32_10000_0304.json", + "type": "application/json", + "file:checksum": "12204b0a39474486f37cbb3acfd4c5cb4f7532a96d501c97bceaa43e22135a70b74e" + }, + { + "rel": "item", + "href": "./BD32_10000_0305.json", + "type": "application/json", + "file:checksum": "12202f772809eb79f9a790057ff1e2d1f3823e6bbc0e0de167fa8237254b7cd822bf" + }, + { + "rel": "item", + "href": "./BD32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220099ed85911afbdc9789e9647d5ce60fdbdf95ceb8db3c5222e6ebd4da6801cd2" + }, + { + "rel": "item", + "href": "./BD32_10000_0402.json", + "type": "application/json", + "file:checksum": "12207be11e6141cad9cafbd6c6d22e34ce3db6513162f1a1c2ed10007b933d606d4f" + }, + { + "rel": "item", + "href": "./BD32_10000_0403.json", + "type": "application/json", + "file:checksum": "12206cb2eb8a2dc6a7f69e59414fb5c99700a25d0c5a5e24e8ccf5a329fdf4c86904" + }, + { + "rel": "item", + "href": "./BD32_10000_0404.json", + "type": "application/json", + "file:checksum": "12205df8e8b4eef177a8cdd8ae356b15b84510ef5655a8b487b7dc19c539bc7f80d0" + }, + { + "rel": "item", + "href": "./BD32_10000_0405.json", + "type": "application/json", + "file:checksum": "1220a33acb2c5f68c54a4a7fba218103899b47f425d08debf2b362806cc95d868c43" + }, + { + "rel": "item", + "href": "./BD32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220acccee2e4f012a503d9ef54d18b38b3e3f2db9ed634149a2ad5de58a8bc1032c" + }, + { + "rel": "item", + "href": "./BD32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220770e89521afaf4517ce9ef6cdedad94cc33ca28047f3c80c14fb5a7824da0db5" + }, + { + "rel": "item", + "href": "./BD32_10000_0503.json", + "type": "application/json", + "file:checksum": "122055551a55082ce321b04bbde601c6691c72db67e425fb98615f14280d80427f8f" + }, + { + "rel": "item", + "href": "./BD32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220fbef1818ca1f9c9dd3acbbc34ff2ac3d73babc9f438d878752acf56248c169d1" + }, + { + "rel": "item", + "href": "./BD32_10000_0505.json", + "type": "application/json", + "file:checksum": "12206bee426166805315aae6b4466f6a69bff753a285964a2d014e1cb62210e180f7" + }, + { + "rel": "item", + "href": "./BD33_10000_0101.json", + "type": "application/json", + "file:checksum": "122069645ba009f75f9c4d2913b9ba47d85f18e6b1a9c9f655fda6afa2fd6c234c59" + }, + { + "rel": "item", + "href": "./BD33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d7fad89c2dea712d74a542dc245e73345f2732debb3bd9054b647e2c060722f8" + }, + { + "rel": "item", + "href": "./BD33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f2ac6548b3a57a8ef4b093fd75507a7c6bdbd22c8c9726528c028189275587e3" + }, + { + "rel": "item", + "href": "./BD33_10000_0104.json", + "type": "application/json", + "file:checksum": "122052cde8d4990bf66b48062c6053c17f747d4c1da407f8edf7ee265b4493015aef" + }, + { + "rel": "item", + "href": "./BD33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220e067ef9b691bd85a80b103d391dabebab518f3c4bff398e3c98b2bec85caed30" + }, + { + "rel": "item", + "href": "./BD33_10000_0201.json", + "type": "application/json", + "file:checksum": "1220933cceb441aed90bad7d5e2564de2c488ed7a724943954621c8b1b0144479ce1" + }, + { + "rel": "item", + "href": "./BD33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220036222ee430b86ae7f8b38208ef1000c16ab906142ee1dd523e29e81a6454189" + }, + { + "rel": "item", + "href": "./BD33_10000_0203.json", + "type": "application/json", + "file:checksum": "122065e3ec721e8d0daa3e1b26597eddcc0953f1be219086f2ace1eef29b91786b25" + }, + { + "rel": "item", + "href": "./BD33_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cc0183478fcb4d48f872cf42374f6fbaa989e996d081da8da7c55b9b716dc68d" + }, + { + "rel": "item", + "href": "./BD33_10000_0205.json", + "type": "application/json", + "file:checksum": "122037cdd9e911b3b9dc58c7223d4b27c483bd6df68122c7db509fcc9ed9bfb63177" + }, + { + "rel": "item", + "href": "./BD33_10000_0301.json", + "type": "application/json", + "file:checksum": "1220e429f4e5a06e4c21baa882d4edf1f02d80375f8d70cc75a5903887d32c560a26" + }, + { + "rel": "item", + "href": "./BD33_10000_0302.json", + "type": "application/json", + "file:checksum": "12207ed94dda08bacdd6d76c13f90157c143ce8442b8f55a5723261ce943d25fb5c9" + }, + { + "rel": "item", + "href": "./BD33_10000_0303.json", + "type": "application/json", + "file:checksum": "12202971ad61247ac4cb42007b28a783bc2f81d7aea3a1e260b7798c60ba5d1f6012" + }, + { + "rel": "item", + "href": "./BD33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220de558776901d908dee6c0b6721cb1688e0926dc2e573c52fae674fedb3d534b0" + }, + { + "rel": "item", + "href": "./BD33_10000_0305.json", + "type": "application/json", + "file:checksum": "122025c49eccf77a1bb33ade02bea36a702744bf5df26e3b962eb065dff595f66eae" + }, + { + "rel": "item", + "href": "./BD33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220207661f98a138923e789719749ea8e1ec5d18e28b3ca3f2f2f9a9f5158942ebd" + }, + { + "rel": "item", + "href": "./BD33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220456285d47ba45206132d02ca2e5c525aad6ae2aa09f2afd1ffddfc52d5c572be" + }, + { + "rel": "item", + "href": "./BD33_10000_0403.json", + "type": "application/json", + "file:checksum": "122062d13eebd79d2b0b6f86ce792d594c1e2567a60bd8d9c13b3d6086e66f8f728f" + }, + { + "rel": "item", + "href": "./BD33_10000_0404.json", + "type": "application/json", + "file:checksum": "12203368543d0dd06d85eb0510941f1d8364325600a756461fd3e3543b06010d53be" + }, + { + "rel": "item", + "href": "./BD33_10000_0405.json", + "type": "application/json", + "file:checksum": "12203ad15d72b7202556fe96f5701915a9a412a76fb356b7dc3960ef267856f7066f" + }, + { + "rel": "item", + "href": "./BD33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cf03e1183065c6e5db765a935452ddc8f4a2fea11e0503d8830f6836506ad1ba" + }, + { + "rel": "item", + "href": "./BD33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220279559cf40715b04eb783303d08dcb0f3e5ede9e01e94df372e3dac90a8fe4cc" + }, + { + "rel": "item", + "href": "./BD33_10000_0503.json", + "type": "application/json", + "file:checksum": "122054b65318f2e0d84d673842bc46cdddc6462fa37fe79e2f7076ff12877812ca70" + }, + { + "rel": "item", + "href": "./BD33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220ea9e7efea336a19bd486611f010aa1b446bff0ee45d2127e02fb8c0014d9258b" + }, + { + "rel": "item", + "href": "./BD33_10000_0505.json", + "type": "application/json", + "file:checksum": "12200815803ee58d8b986cf12c0016c5b0a4e60337e6af3335155670028cad887526" + }, + { + "rel": "item", + "href": "./BD34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d112ae9741e73c1b568fead87f1fbb5d7c66a3b8d7c64f1030fea175a93fcf2f" + }, + { + "rel": "item", + "href": "./BD34_10000_0102.json", + "type": "application/json", + "file:checksum": "12202bf108bd09bd337a07004094464e8e2330d7d035ecbcdc97e27b97204b25c1c4" + }, + { + "rel": "item", + "href": "./BD34_10000_0103.json", + "type": "application/json", + "file:checksum": "122095d20c114df9cfa328035eb2566aa220013efe28504589f6bee02b2891d0bd03" + }, + { + "rel": "item", + "href": "./BD34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220cea3bbb9193ca34dae5ee72eb07ee0aac076cb9337874b1a48d8c478a262b96c" + }, + { + "rel": "item", + "href": "./BD34_10000_0105.json", + "type": "application/json", + "file:checksum": "12204c4233ad43a83e877a72e509ecee45e865bdfcd0b26dae734b9244a4c2ed28ff" + }, + { + "rel": "item", + "href": "./BD34_10000_0201.json", + "type": "application/json", + "file:checksum": "122067cf8b8bc2a573f684688df55ec4674f8ede3b77a2f591789a162458f055c4ad" + }, + { + "rel": "item", + "href": "./BD34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220d5e08efc79a8b3656cb47d9249bb89a8cc4ffd87a74f66a16f55668f39f56479" + }, + { + "rel": "item", + "href": "./BD34_10000_0203.json", + "type": "application/json", + "file:checksum": "12208fd6e6157dedca2a01767ae35e861ce91f6e926e22dc23ac963e8240a5d0f005" + }, + { + "rel": "item", + "href": "./BD34_10000_0204.json", + "type": "application/json", + "file:checksum": "12204de60168f145b5dc493567049264a191fefc646dfdb2f1e2cdc7b4b3b2696700" + }, + { + "rel": "item", + "href": "./BD34_10000_0205.json", + "type": "application/json", + "file:checksum": "122084d3bfedb645f025f9f90f4afe50288d25118d554b8d8572dc07b665ff2cc7f5" + }, + { + "rel": "item", + "href": "./BD34_10000_0301.json", + "type": "application/json", + "file:checksum": "12201c788658d65151e6363136ccd46eb6ca3ed43d7e47a60e9e5e00480428c6385f" + }, + { + "rel": "item", + "href": "./BD34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e3f1e29f6ffc9937b1c91d23e5b68802d5c3b0e01fa9d8958df6d52df973115b" + }, + { + "rel": "item", + "href": "./BD34_10000_0303.json", + "type": "application/json", + "file:checksum": "122083eb784b8170df195dc0679ab6a9259dab08f783c065fb695c33ed84de1595d3" + }, + { + "rel": "item", + "href": "./BD34_10000_0304.json", + "type": "application/json", + "file:checksum": "122077e7842a9f07d6c390433850709fd3463261d7a9b8f162eac360a68ced87d9eb" + }, + { + "rel": "item", + "href": "./BD34_10000_0305.json", + "type": "application/json", + "file:checksum": "12206695147c4d3fc2df76d25f6f5be3968f716df52cfa5e232c9c4ac3bbd822c8e6" + }, + { + "rel": "item", + "href": "./BD34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220059fec4322efa4d730c90787292cf73c66933979239342e937ed62b9384b7ca6" + }, + { + "rel": "item", + "href": "./BD34_10000_0402.json", + "type": "application/json", + "file:checksum": "12208930204a6dffbbde9b1a8007fa9852fb3262a3c99d5b222da59b3bd3ba8cae4e" + }, + { + "rel": "item", + "href": "./BD34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220e0e32c1ce2c021cd14428c6ebeb7f64ef024a558fe84b53000717e6956a703a0" + }, + { + "rel": "item", + "href": "./BD34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220de76ac300150a38b28ad1295889267e02f991a8a9c96f47300b0d10cd3443591" + }, + { + "rel": "item", + "href": "./BD34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220c669b7fe46d5f9b054aafbc5f61f3452c346944c1139e038e0e6b8dd9e4e9f80" + }, + { + "rel": "item", + "href": "./BD34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b19d881f83dd54404ca8aae884819a73141c0cd22958e980aa40af4ea62bcae9" + }, + { + "rel": "item", + "href": "./BD34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220df87d3799b814c31bb3b97e8be2d6162ca8b07e7457c67c3d4bdf3549db62bb4" + }, + { + "rel": "item", + "href": "./BD34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220cb135074d6e9e9130bb8007c286d0b44c23e4a54b92a54303b88c703124e841f" + }, + { + "rel": "item", + "href": "./BD34_10000_0504.json", + "type": "application/json", + "file:checksum": "122021ab07ff7f01c3e3840c2c7bfdb114a07ab2e01a804f333d45def67a8c7559f2" + }, + { + "rel": "item", + "href": "./BD34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d1f18bdbd9e015e780fabf00ee38a29feafb63b9809e576d81ca08fe03578584" + }, + { + "rel": "item", + "href": "./BD35_10000_0101.json", + "type": "application/json", + "file:checksum": "122036f83da271667c4ae7b681aaade802dc3669a36faff76b55cdc409637f450111" + }, + { + "rel": "item", + "href": "./BD35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220363ee430e985b2e9cffd9a0c4edf9a13b98bc88f1ab29c91e0d049704960e66c" + }, + { + "rel": "item", + "href": "./BD35_10000_0103.json", + "type": "application/json", + "file:checksum": "12200018289bd9a751cbad07c4a02c9902af3c4fb66acd4c30005a3e46c58fda62ce" + }, + { + "rel": "item", + "href": "./BD35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b251138ef33de6283d726dc8ad343738f63dc9daf9e5f714591fa8d71640cf94" + }, + { + "rel": "item", + "href": "./BD35_10000_0105.json", + "type": "application/json", + "file:checksum": "12205b41051e0681f167ea4828766bfb357a9607cfca4546585f52f10fb969fab121" + }, + { + "rel": "item", + "href": "./BD35_10000_0201.json", + "type": "application/json", + "file:checksum": "122025a90dbaa8ff0793b09c890342bd403ac626e78de1a254c7fa656e668be723e1" + }, + { + "rel": "item", + "href": "./BD35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220c3f1028a139e9466b5b2d3120acda93eebc1d7854360467201ba70cc0ccb6acd" + }, + { + "rel": "item", + "href": "./BD35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220413f14a0564631477ccbf194fd6f825446f54ea03769b72fb38becdef2c3db74" + }, + { + "rel": "item", + "href": "./BD35_10000_0204.json", + "type": "application/json", + "file:checksum": "122087e0278eb2f23e4317eb947f632e9dea8d859784cd3ec02b7cf4b56f99f3a783" + }, + { + "rel": "item", + "href": "./BD35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220f10c6dece0d54b29a9f7e5c540a1bfe8d3209e2f75c43db9337fa6215d536321" + }, + { + "rel": "item", + "href": "./BD35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220045674d1af96621d9ac1e0df56f110e09ed3ea6dcd97b76dc30044ec969f75b2" + }, + { + "rel": "item", + "href": "./BD35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c1a49c2e9e0c86c93afe6e0144705ab8b6c4d72784344fe83a6c1cdb6fd0b547" + }, + { + "rel": "item", + "href": "./BD35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e215d9ceff27ce902bc9ad9680be8fc48e4ae7b957b07a2da0164c0e19b229c1" + }, + { + "rel": "item", + "href": "./BD35_10000_0304.json", + "type": "application/json", + "file:checksum": "12207d8ff00a77f252a752970bfe6323be9e8d60f5afa928b1b607f69947aa82eab4" + }, + { + "rel": "item", + "href": "./BD35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ec42ec9ed0999e57fa53b9005b80d0990cf3836557d50ddbca49be501a68c11c" + }, + { + "rel": "item", + "href": "./BD35_10000_0401.json", + "type": "application/json", + "file:checksum": "12200547188ad894bbfd6696f79e2541893a489a0f6e775ac2827eaedd75a52f8edd" + }, + { + "rel": "item", + "href": "./BD35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220db43c4de025423116a226a2221b5b860ab6617d158e235fad50105782bc2c438" + }, + { + "rel": "item", + "href": "./BD35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220c6855b28239c91a493d5dca5ed7dd7fb83d1de3c808a56262ed7878beda76124" + }, + { + "rel": "item", + "href": "./BD35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220aa0db31436e86c39f1adabe892e4c6917d5176a0ca9f20ee3118db7a61a70d0f" + }, + { + "rel": "item", + "href": "./BD35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220c71554d58e7d352e52a87b8d82fc1826178c40d39cf56f87607f2ef3fb8d3cf9" + }, + { + "rel": "item", + "href": "./BD35_10000_0501.json", + "type": "application/json", + "file:checksum": "12201ce6d89bf3124a05e405d287cd775370ba75891322520e4e16669eb5f5b51240" + }, + { + "rel": "item", + "href": "./BD35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fcfa21be12df6beec3b32e38344cf263c7a99d4322975f3400767b82f3ab75cb" + }, + { + "rel": "item", + "href": "./BD35_10000_0503.json", + "type": "application/json", + "file:checksum": "122032bf3c358bcb1237cf7981332115acc840d8cd0179178cc9a2bb59efaf725933" + }, + { + "rel": "item", + "href": "./BD35_10000_0504.json", + "type": "application/json", + "file:checksum": "12209f1ae93ceb71ed1b50e8692c52a1e547a7257e747fd6c2e08aaf49af0de72fcf" + }, + { + "rel": "item", + "href": "./BD35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b928285c6c42505ec0d3ad7b051a7ad8f1f0c6eb862f0ba6a8d6a96974b08c0b" + }, + { + "rel": "item", + "href": "./BD36_10000_0201.json", + "type": "application/json", + "file:checksum": "12203310606ec1248c21d1ad187f3e22a20859b7aa637bf55beb2910796180245f83" + }, + { + "rel": "item", + "href": "./BD36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220ad3c6677829cfb9d9bc25b2c938a2b6ebcc8b08cdb0321541457c1c4f75bdbe4" + }, + { + "rel": "item", + "href": "./BD36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e660a774e6a4b61d3f0dc212f8f6cf4b75ceca3a5bc027800a25d74bd4facd35" + }, + { + "rel": "item", + "href": "./BD36_10000_0401.json", + "type": "application/json", + "file:checksum": "122099f96718003acd04c087a63a01c6c1f92d662d54a4e1d9f061856f6d5d7a930e" + }, + { + "rel": "item", + "href": "./BD36_10000_0402.json", + "type": "application/json", + "file:checksum": "122050c151458ad8109e165d84bf6fae58bf5315a9e60b2abf2875c897be7cc10a28" + }, + { + "rel": "item", + "href": "./BD36_10000_0501.json", + "type": "application/json", + "file:checksum": "12201d65d564e14d9258a218b63aac6f4e1e00fd3c19236e1cec4cca2234f1116015" + }, + { + "rel": "item", + "href": "./BD36_10000_0502.json", + "type": "application/json", + "file:checksum": "12208a6ebe6e73f572337845ef31e83090f325430a50008989713b673dba899579a2" + }, + { + "rel": "item", + "href": "./BE31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220b7679ad8b238b1fa7320959a7641241c284ec7ae94e80a503a0f7e1fc1255c9e" + }, + { + "rel": "item", + "href": "./BE31_10000_0304.json", + "type": "application/json", + "file:checksum": "12208a54b3b0db76b791ff960eea0c617ec49ad6f68a831a21566e314d3dd894ccdc" + }, + { + "rel": "item", + "href": "./BE31_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ab6d66b2dcbce5d7c13f14ab4c8b95c57d455465a96dd96d7619da1a496e1026" + }, + { + "rel": "item", + "href": "./BE31_10000_0404.json", + "type": "application/json", + "file:checksum": "1220619ab9c1594049246b5eacdbe2f8b9796c07e8cbac10d87dd783085367eeb1e5" + }, + { + "rel": "item", + "href": "./BE31_10000_0405.json", + "type": "application/json", + "file:checksum": "12207067a128eea6372c324bcecf4ee5c16d86823e3206e3fcb7aec4ce00afd19bb5" + }, + { + "rel": "item", + "href": "./BE31_10000_0504.json", + "type": "application/json", + "file:checksum": "1220a9934ff99c271cae5e477c59aca403a3bd706718ce41c6b80c1a681dc18b51c9" + }, + { + "rel": "item", + "href": "./BE31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220c49ba4d7e418180979cfe7a8eb74c19ef7d94d0986205f5062e0c5fc475d18a9" + }, + { + "rel": "item", + "href": "./BE32_10000_0101.json", + "type": "application/json", + "file:checksum": "1220cdb15026a700fc888b2a51ae072d9b96df6ed18a5fd83cb37c8e32b3091b3516" + }, + { + "rel": "item", + "href": "./BE32_10000_0102.json", + "type": "application/json", + "file:checksum": "1220dadff8dd1a3457e70ca1eccdb6e1dc0ee159509ae2a623a0c5d91ec7720dc807" + }, + { + "rel": "item", + "href": "./BE32_10000_0103.json", + "type": "application/json", + "file:checksum": "12207eeec2003e5ffd4e5564cd1309727d3cc998ce4d2d0f7631732e87a736779aa9" + }, + { + "rel": "item", + "href": "./BE32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220e09dfdacd5510a4cf8ed7ee1987215858dee25367bcb071683e5c4dc01b8eed8" + }, + { + "rel": "item", + "href": "./BE32_10000_0105.json", + "type": "application/json", + "file:checksum": "122054b6e233d86e6989720b482f2caf3a97b4bcfeb6dbaba156f1e29f55fd7a2141" + }, + { + "rel": "item", + "href": "./BE32_10000_0201.json", + "type": "application/json", + "file:checksum": "122094c17fe9666fb08b8e0497c60221292f34aa030bc798726fdbba91ed1a01b00c" + }, + { + "rel": "item", + "href": "./BE32_10000_0202.json", + "type": "application/json", + "file:checksum": "12201ee85025ec2f0386901c857b7a2f6930a241fee09a9206961440345ead4ff975" + }, + { + "rel": "item", + "href": "./BE32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220fb202d3b9aea862daccb1c0d41d25a5e766597a5722e8bcc45e38f258e2b09c1" + }, + { + "rel": "item", + "href": "./BE32_10000_0204.json", + "type": "application/json", + "file:checksum": "12208861dfa15c41535ec2d99c25bf93c49d6d1b5ffa6c84371a91c7f8aae7e33647" + }, + { + "rel": "item", + "href": "./BE32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220ed868a8683272a1e02ce8a6f893a257415be3d2d86f4ec4aef3c18b2dfc8ccb4" + }, + { + "rel": "item", + "href": "./BE32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220c935c448f6f2f08ec6738811d6427e26ed96e3e352b69b7a05cf30a0a730dcc8" + }, + { + "rel": "item", + "href": "./BE32_10000_0302.json", + "type": "application/json", + "file:checksum": "122081cad397b4ac3b852329fc1dc7aa8cb2292b13611362c537e86e1e125e8e540e" + }, + { + "rel": "item", + "href": "./BE32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220afc0989564d2fc9bd021eb9a34a590eb4eed908c058bd29683be2619c68d5f68" + }, + { + "rel": "item", + "href": "./BE32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ac76afbe3f6816be745b5125625efe39fde930927856128cba5fa71de603b803" + }, + { + "rel": "item", + "href": "./BE32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220fbf9b971faeee90c9013a8ac9ee72ed10f3b2a9cbd23acb3a9a35481e57fa2ea" + }, + { + "rel": "item", + "href": "./BE32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220f948b17c2106444b60ee791744fd8ea9717f9326d31bc09cba80a471d7b3d014" + }, + { + "rel": "item", + "href": "./BE32_10000_0402.json", + "type": "application/json", + "file:checksum": "12201d1f79da266d8fe777d42212a8c9d1177ad4b7f9511f9b1a92115b64aa164adb" + }, + { + "rel": "item", + "href": "./BE32_10000_0403.json", + "type": "application/json", + "file:checksum": "122060acef7ec0e74b53182149b5f2da99f9916500df741b547188d1e144aa2d9227" + }, + { + "rel": "item", + "href": "./BE32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220cd5f12bc8ea64d6bec21eb73e34d82ac252616fc4be926ccc68b8d94f05c7783" + }, + { + "rel": "item", + "href": "./BE32_10000_0405.json", + "type": "application/json", + "file:checksum": "122042bcd48b2ad0d94a991918542940a2e52847c67485565bf72c5b4aa07ae30b54" + }, + { + "rel": "item", + "href": "./BE32_10000_0501.json", + "type": "application/json", + "file:checksum": "12207c61a61cdfc2f3d44dbb77d604b8158fe635cad3dbf58bee1150c89d10846cc3" + }, + { + "rel": "item", + "href": "./BE32_10000_0502.json", + "type": "application/json", + "file:checksum": "122048e519016fb296f05d89f1f81a60675fb76b8f35eaf37649818845593ebcdc84" + }, + { + "rel": "item", + "href": "./BE32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220bcc0c48a0b573530346bdee6f18c76056f12aa5daacaf67ff59a33a18d6b5f94" + }, + { + "rel": "item", + "href": "./BE32_10000_0504.json", + "type": "application/json", + "file:checksum": "12200e060f237e88122a8cb19964980280fef3cc3a0c1c2f63517357c14d6cc6ff48" + }, + { + "rel": "item", + "href": "./BE32_10000_0505.json", + "type": "application/json", + "file:checksum": "12208dd9dddb9c0a0ed1051a85f04a8af6635e9343ccff7ccf6183f2160336002506" + }, + { + "rel": "item", + "href": "./BE33_10000_0101.json", + "type": "application/json", + "file:checksum": "122006b31e90374f6070466abd528b09adbab3c8a1563966cabba561de7a571fe529" + }, + { + "rel": "item", + "href": "./BE33_10000_0102.json", + "type": "application/json", + "file:checksum": "122013e8fb5d2ef76ec40bd77a8fb8899e773bdb42b1eaad2ad114d7e7daef0c5a5d" + }, + { + "rel": "item", + "href": "./BE33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220e3a6c6240681a99b3df6f80bcfe341c0a15e100192028945ad27073efc7ff2e1" + }, + { + "rel": "item", + "href": "./BE33_10000_0104.json", + "type": "application/json", + "file:checksum": "12204943b1b90d7a0e31e998be1c3e03a24ac71d31cfedb88082ca2ba12bd392935b" + }, + { + "rel": "item", + "href": "./BE33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a11e60e258bd2c5513c47088c2b4050d01ac509c2134fe24e124ccd0d318a356" + }, + { + "rel": "item", + "href": "./BE33_10000_0201.json", + "type": "application/json", + "file:checksum": "122073cc8e7ac0d67968b76945c2726dc5705a37750df72248d5c2b8f53b522972be" + }, + { + "rel": "item", + "href": "./BE33_10000_0202.json", + "type": "application/json", + "file:checksum": "12203177933160daf6fd15b9811b8eb2a7f0dbe656303407feb16470a6bd63a12f43" + }, + { + "rel": "item", + "href": "./BE33_10000_0203.json", + "type": "application/json", + "file:checksum": "12205a956bde8e46d08bda2f16b50345d3b8dbe206ba3cd32af2aa75a62482bcbd5d" + }, + { + "rel": "item", + "href": "./BE33_10000_0204.json", + "type": "application/json", + "file:checksum": "12200d3678ea6ea41408c8806bbd28ca0d13dd82ad92fd1cc1c81e8aa21b976cbfda" + }, + { + "rel": "item", + "href": "./BE33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c6ecb73c2645a6b1638e4211b9025ef288f7d3490956a47708f30f28247e715f" + }, + { + "rel": "item", + "href": "./BE33_10000_0301.json", + "type": "application/json", + "file:checksum": "1220686c338e3bbc848e8543fce74b1149b6fcba75ee31ba8fc4d1e41c6763c1419c" + }, + { + "rel": "item", + "href": "./BE33_10000_0302.json", + "type": "application/json", + "file:checksum": "12203e5516aff3cda8e66f7d69d21793d5d570d16fd053ae9aa39fa82877f39ce263" + }, + { + "rel": "item", + "href": "./BE33_10000_0303.json", + "type": "application/json", + "file:checksum": "122031ded86aa88e2c95198fbd6bda8f8a003f246c8c150b36d87933deb9be4ce6ec" + }, + { + "rel": "item", + "href": "./BE33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220d4f1dd728244272ef07a6456751d47ac4be59fcc861affd91be07ae7daf722bc" + }, + { + "rel": "item", + "href": "./BE33_10000_0305.json", + "type": "application/json", + "file:checksum": "122006d4166565f8e15f1e076a38678eb07361f547a71d7b81bec13d7fd551cb8fd4" + }, + { + "rel": "item", + "href": "./BE33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220478d7fc27cd9a3d8dd20af86b1472849d61df2e71608eebddd19ec74db44df49" + }, + { + "rel": "item", + "href": "./BE33_10000_0402.json", + "type": "application/json", + "file:checksum": "12201b5d76b8dc4d66fb855331ac3efee36ec99fb472fae8c8d83daa08c9f50929a0" + }, + { + "rel": "item", + "href": "./BE33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220d4567e9abf845ce914999310ec26fb944e0372ea639d9e22a6877cce77b6aeec" + }, + { + "rel": "item", + "href": "./BE33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220e899c85fad8842c3a5ceeee8bae4858523d25ff8245cdc8e87b9217390350b66" + }, + { + "rel": "item", + "href": "./BE33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220b914d75f2aee437cb52cc609895fe94a015e7548b2172f9d4025772933051f2d" + }, + { + "rel": "item", + "href": "./BE33_10000_0501.json", + "type": "application/json", + "file:checksum": "12206491f53c736d3b8f22fdcf6e4c11cb9bcdd0249f7c024b341cbfc3026aaaf9d8" + }, + { + "rel": "item", + "href": "./BE33_10000_0502.json", + "type": "application/json", + "file:checksum": "122049c2ab07723e9e74f38ab032837de88996d4e52e52db47090a7f386f8cfd8981" + }, + { + "rel": "item", + "href": "./BE33_10000_0503.json", + "type": "application/json", + "file:checksum": "122003c92d945c1b5d223465b3347cc9923f59726e424301c17760c13a647a43c70c" + }, + { + "rel": "item", + "href": "./BE33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220de53067329994f4af13b20b78aba0e72ba3e1f1cceedebe48e26a1b6dce0e417" + }, + { + "rel": "item", + "href": "./BE33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220434102844ed6bd38daa5b522053b0afbe5f557b0575d2a8b71c807cc3b6ad4b8" + }, + { + "rel": "item", + "href": "./BE34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220a07a5d2f8cea362ddaa03010e0602bd6eab0fbbde44da19d12dd62334cf9abe0" + }, + { + "rel": "item", + "href": "./BE34_10000_0102.json", + "type": "application/json", + "file:checksum": "122059eb069505afa3e1cf22a5500e9aa6c5a85844260875da19bd57610fefebdc9a" + }, + { + "rel": "item", + "href": "./BE34_10000_0103.json", + "type": "application/json", + "file:checksum": "122075d459bc8f14d830042d117c898c326f3c30f1597aed469d592979847065da10" + }, + { + "rel": "item", + "href": "./BE34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b086bc78b633c38300a8f8bd9b3688efaa1933fc9206fb4381ed0934b9829628" + }, + { + "rel": "item", + "href": "./BE34_10000_0105.json", + "type": "application/json", + "file:checksum": "122041521920a65f7c225e8be5073d01410db055ccff953f1d8da71c6169216000e1" + }, + { + "rel": "item", + "href": "./BE34_10000_0201.json", + "type": "application/json", + "file:checksum": "12209b5e0678af2a849254ce504c27a55760fa9896e444d1a25f4817ae7a5e4b0250" + }, + { + "rel": "item", + "href": "./BE34_10000_0202.json", + "type": "application/json", + "file:checksum": "12204436e02a319ded6c293a4c2c2374e9770ef713fda02da677e3bfcb08bb260946" + }, + { + "rel": "item", + "href": "./BE34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a78d4e0d16483998c20a09016223cb50f4e2b0dd317bf7d10f02a746ded83a55" + }, + { + "rel": "item", + "href": "./BE34_10000_0204.json", + "type": "application/json", + "file:checksum": "12205fffb9d40678d337e70142d00e7265d1c0f84cf8770f26657c3fa47ac76ae17e" + }, + { + "rel": "item", + "href": "./BE34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b51e2ed9b44ceafbbe7f3dbfe84f00efcf164cdfb02a2c8d4d2a269d024aec15" + }, + { + "rel": "item", + "href": "./BE34_10000_0301.json", + "type": "application/json", + "file:checksum": "122002e046ec88c6cab8b086f6a06b504673bae5924c90275fce4b9266ceb7e19ba9" + }, + { + "rel": "item", + "href": "./BE34_10000_0302.json", + "type": "application/json", + "file:checksum": "122016d327984f5c49f48fc81f8dc6d6c8334761276c6d1349fc5ed4736369a6788f" + }, + { + "rel": "item", + "href": "./BE34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220b74708395cbee37af4e1be407e54c9684d4a949eb163e8a0c36b3e807b382a2f" + }, + { + "rel": "item", + "href": "./BE34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220444640a236058d467301569e41555ab065d0b14d059481e9bfa223c34c9e3f66" + }, + { + "rel": "item", + "href": "./BE34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ab683c2ef8a18388be288bc3885681582479b79b65ac9816a404db99091897eb" + }, + { + "rel": "item", + "href": "./BE34_10000_0401.json", + "type": "application/json", + "file:checksum": "12209a91041ee305e1b99a68f32a1f8234134e9461da2e0c6d60a597b5c869ca727c" + }, + { + "rel": "item", + "href": "./BE34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220a4fdbbaee791b40661a1b3f2c10482b1c28cfaa2a5eaa106711de058215ced50" + }, + { + "rel": "item", + "href": "./BE34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220374f0d17c875b64018bbdb6d819f5f3453ba875d0625edc3b59c0c172846505e" + }, + { + "rel": "item", + "href": "./BE34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a5a2829eb65051b28e9187ff1c35c456bcf77ee61fd1240d2fd5edddce567a0f" + }, + { + "rel": "item", + "href": "./BE34_10000_0405.json", + "type": "application/json", + "file:checksum": "12202327addfdd90047f3dbb2e64745c233a1681ab8c753301409cde827f756f0102" + }, + { + "rel": "item", + "href": "./BE34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220976d5abe97d4e68896a37a11e7bc32f1280d691647b3b027a641b6f65c808904" + }, + { + "rel": "item", + "href": "./BE34_10000_0502.json", + "type": "application/json", + "file:checksum": "122088ac348369307427fef10afd748b263946a17099587f7b8874545553aed54b97" + }, + { + "rel": "item", + "href": "./BE34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220130699bd94582fcc6e479e24526f9f8e143901fcaca62a24e58783e36546fa25" + }, + { + "rel": "item", + "href": "./BE34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c393366f6385c5814ccf799600bc87e080a99a055cc93a6b9113c208704ba51d" + }, + { + "rel": "item", + "href": "./BE34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e965f5b93d2f37bce0ae50b8576215b4f5aa558497da95446fecf2c6c3a8b30e" + }, + { + "rel": "item", + "href": "./BE35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220f049fc8b419736626752f136841a4b5c485c409d00c8f47fa426fa9951008eb7" + }, + { + "rel": "item", + "href": "./BE35_10000_0102.json", + "type": "application/json", + "file:checksum": "12203357e21e4d654c69cc7bab9373d08b434a9c30984d3268819ab704ce5352ec66" + }, + { + "rel": "item", + "href": "./BE35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220a6c1a45f7ca65b79fa9092759d50322ba939a1aa3325fd9aaa2f4ff428f35730" + }, + { + "rel": "item", + "href": "./BE35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ceb9e2dd7aa66b902f728746afb007243bf08e95ccee471986886793e2dfddd1" + }, + { + "rel": "item", + "href": "./BE35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220e6d8f49f44ab2b058dd7bf7027ef10841782e338db3e24b0f73b42acc5badd9e" + }, + { + "rel": "item", + "href": "./BE35_10000_0201.json", + "type": "application/json", + "file:checksum": "12206594f672fdde249f12ff3665f02ff6a23f9bbc34e0b9dae529cb7f4fcbb83a5d" + }, + { + "rel": "item", + "href": "./BE35_10000_0202.json", + "type": "application/json", + "file:checksum": "12202b3471c33a4e93b7156c089daa9766c757bfbdb11a8f9a7527549f4530fdd7cb" + }, + { + "rel": "item", + "href": "./BE35_10000_0203.json", + "type": "application/json", + "file:checksum": "122010accfbac34c74feb26cf8e2452391da22531a31e509ed0f9993f7691239350b" + }, + { + "rel": "item", + "href": "./BE35_10000_0204.json", + "type": "application/json", + "file:checksum": "122060864caec207e3eafe65fe52f1f12863aaea771149e066c9481232403156db4c" + }, + { + "rel": "item", + "href": "./BE35_10000_0205.json", + "type": "application/json", + "file:checksum": "122086a8fa937ee96d1bec75d0d49d8c169aaca83edf67b9f18ef75c795df67b6637" + }, + { + "rel": "item", + "href": "./BE35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220d157e95a64b72195b2e69c5fc52cf12568c3afac2b738faa973c8c565abff604" + }, + { + "rel": "item", + "href": "./BE35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220630605cbb43574954096f98595a8c803f4b1a1f9e0fe2c91ce95f90ae6541c5b" + }, + { + "rel": "item", + "href": "./BE35_10000_0303.json", + "type": "application/json", + "file:checksum": "12204bc4c76ef35048d0207841c0ea91d1295b56aeb2ec903bd7aca3a48ccdf18da3" + }, + { + "rel": "item", + "href": "./BE35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220db035f826f7e5211a574c2fdb3eb00858989e60abb3733d4f4e837dbc8f34208" + }, + { + "rel": "item", + "href": "./BE35_10000_0305.json", + "type": "application/json", + "file:checksum": "122065a437fce6fd0b2341a2d1f7c5b7844e21a2e048b9de7a2fa34dd0ea545c4e03" + }, + { + "rel": "item", + "href": "./BE35_10000_0401.json", + "type": "application/json", + "file:checksum": "12203097f6b5e8e986219e7f572891bb07ae5c49fd3c2241e95ebb3b91e6f59a33d4" + }, + { + "rel": "item", + "href": "./BE35_10000_0402.json", + "type": "application/json", + "file:checksum": "122049d168f2e7f378d4a4c9deb3ad6f088c42c0a64a5c43454b36d314f2e5b6e4d4" + }, + { + "rel": "item", + "href": "./BE35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220808d432c23408b7eb4ed2a0c0128cb1d56d817251151a00225b019a64a8a837a" + }, + { + "rel": "item", + "href": "./BE35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220965067ff7cc51495382da131ef4ab39bbbad0d48df4c4ae387b10c1c5f079b9e" + }, + { + "rel": "item", + "href": "./BE35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203f18e111d4aee9f4a01518c327bf7db51a1e3e6923f4d1c3c9514c514e696e72" + }, + { + "rel": "item", + "href": "./BE35_10000_0501.json", + "type": "application/json", + "file:checksum": "12204a7471100ad741a5456507200e860b1fb612547362fc914cdfaa1f7e0aa776a1" + }, + { + "rel": "item", + "href": "./BE35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b14c58b64a51826a4a56b37ec0c126a3de6167509030508343e09d34bc409982" + }, + { + "rel": "item", + "href": "./BE35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d5e714d8e86175ecdc93c74caa95bc41a5edeaab315c5143b6214bc70748b883" + }, + { + "rel": "item", + "href": "./BE35_10000_0504.json", + "type": "application/json", + "file:checksum": "122042d9babe9c8435909245c7b2554027a58f71529b1da204be8d207462a7288b0f" + }, + { + "rel": "item", + "href": "./BE35_10000_0505.json", + "type": "application/json", + "file:checksum": "122001db41005d7ebaa02c54997db95b94c4bb16275427629bf124fcc66325c16ff1" + }, + { + "rel": "item", + "href": "./BE36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220c68a56a00205a51d9a11006d87e30028bbce74625a33c859b2617a9fe809ae5f" + }, + { + "rel": "item", + "href": "./BE36_10000_0102.json", + "type": "application/json", + "file:checksum": "122010d9436f491b69b5e5a1562c923c52887b888f2843cfb45171188b6c26e9f1bf" + }, + { + "rel": "item", + "href": "./BE36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d523a342b006634a91a4306f7cc96e706791d644cf09e4eb5d40840db3d3b1d9" + }, + { + "rel": "item", + "href": "./BE36_10000_0202.json", + "type": "application/json", + "file:checksum": "122016befec6b57577bc96fcd7b54ff2e015217c491bf6cf22406771888a3f75ca05" + }, + { + "rel": "item", + "href": "./BE36_10000_0203.json", + "type": "application/json", + "file:checksum": "122003b1404dceb9f1dadd4f5de7f9bbce4774fb3d23627fccdc7ec21f43a3c69a99" + }, + { + "rel": "item", + "href": "./BE36_10000_0204.json", + "type": "application/json", + "file:checksum": "12209ebcbb856488c7f665b8a078af3e6db2ca8f18196d3d1388603a7eb2f1fbe44d" + }, + { + "rel": "item", + "href": "./BE36_10000_0301.json", + "type": "application/json", + "file:checksum": "12208d47347e574e36577cd76e8de85ee6c30b22c55e462c4cd20028c4d6b1889505" + }, + { + "rel": "item", + "href": "./BE36_10000_0302.json", + "type": "application/json", + "file:checksum": "122000c6fbff58634f22ae20dff5e233eba366143bf7d0ff1ce3d1e311c17bb92fc0" + }, + { + "rel": "item", + "href": "./BE36_10000_0303.json", + "type": "application/json", + "file:checksum": "1220439978b33929c6e16423183d220039fdb31d0b7129141ddc4aac18b5ebc6326a" + }, + { + "rel": "item", + "href": "./BE36_10000_0304.json", + "type": "application/json", + "file:checksum": "12202963ffc3941f654119b2eaa188fbc06a346b8477a00d4bd2504e2c1b77187887" + }, + { + "rel": "item", + "href": "./BE36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220e534069e0ff5a529eba71a8ee83d10e4b0b637b7aad7a18a5881419562405ebc" + }, + { + "rel": "item", + "href": "./BE36_10000_0402.json", + "type": "application/json", + "file:checksum": "122020adeb964daa725826e34582dfe03c7fe37cc8d398949dc2c43779184064a8d3" + }, + { + "rel": "item", + "href": "./BE36_10000_0403.json", + "type": "application/json", + "file:checksum": "122010cc8f7a50ed4d8d9d63cd917e5f3c0a1d8341ab9d1aeccf44a1a5f78a303d0e" + }, + { + "rel": "item", + "href": "./BE36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e7840646b481e924659fcfdf682ab73ed2b44426e3d3a3c4b8e349e3baaa4c59" + }, + { + "rel": "item", + "href": "./BE36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220292f2e7fde8eb85312ece8041a9af19e7031752527cb2dae011d61a5fee8fe43" + }, + { + "rel": "item", + "href": "./BE36_10000_0503.json", + "type": "application/json", + "file:checksum": "1220119742eaa2e2fe144a6d072c981d0a7cc3150dcb8cbc0b71f1b23b251a0f48cc" + }, + { + "rel": "item", + "href": "./BE36_10000_0504.json", + "type": "application/json", + "file:checksum": "12200cdee3a6366298a15b6f7a6ace8ebb6e8ab67227a425100b103abb61903a4004" + }, + { + "rel": "item", + "href": "./BE36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220fce07c5a9b80df1bf4a68992be3a593540b31db9a1d83ddbd4c78b9f2c9e04ba" + }, + { + "rel": "item", + "href": "./BF31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220174025cb6d84f9117615b7c662100329eeaecf607055b2a35fa981792e886fb8" + }, + { + "rel": "item", + "href": "./BF31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220936e8b93e3d0d35aff7f3efaff391a783fb2d017baf638e4bb7d2c81aad83e02" + }, + { + "rel": "item", + "href": "./BF31_10000_0203.json", + "type": "application/json", + "file:checksum": "122038a5a69c5172ce1e530a03ef992edba4400fe4bb5b606837d2f2bdc23356843f" + }, + { + "rel": "item", + "href": "./BF31_10000_0204.json", + "type": "application/json", + "file:checksum": "12205e6b4d4c9a09eb7b65153d8d82895e93c1f9c8a73d3287ffdae4a2c6a9315830" + }, + { + "rel": "item", + "href": "./BF31_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c6cc6a6411135e146bff472337d79bd333aa4cfe87623edc39b203b4422a88a9" + }, + { + "rel": "item", + "href": "./BF31_10000_0303.json", + "type": "application/json", + "file:checksum": "122047212ea629c381f30e4fe19d104a01a2006b4356697fa12edae3cbe8c00fa38a" + }, + { + "rel": "item", + "href": "./BF31_10000_0304.json", + "type": "application/json", + "file:checksum": "1220c5603eb9581ce59a947f8b43e8802f27491a2c18cce8bf1f49b6c8b4803cfa15" + }, + { + "rel": "item", + "href": "./BF31_10000_0305.json", + "type": "application/json", + "file:checksum": "12203891544867d2dfb1dfaf2a5109802d10ec571d45c4ba3e5bc6cf33735224b717" + }, + { + "rel": "item", + "href": "./BF31_10000_0403.json", + "type": "application/json", + "file:checksum": "122041a1c1b97c16291473f09fd168ba29524999557860062fc05791901bb862336f" + }, + { + "rel": "item", + "href": "./BF31_10000_0404.json", + "type": "application/json", + "file:checksum": "1220137d0a07a1fb3df570deb1a959aee59a2651e13b6367fdd1b7f31bde837c81a4" + }, + { + "rel": "item", + "href": "./BF31_10000_0405.json", + "type": "application/json", + "file:checksum": "122072797afe9c0658ee4be180901d1a62bcbb16b94f6901d07416f6d75d4703ea58" + }, + { + "rel": "item", + "href": "./BF31_10000_0503.json", + "type": "application/json", + "file:checksum": "12204f53c4141a27dc873050b79ae56c2b8d6038adae4746469581d32c1ae03e15df" + }, + { + "rel": "item", + "href": "./BF31_10000_0504.json", + "type": "application/json", + "file:checksum": "12201a79dcfc465cf50243e748b2ab050f858265a9a5cce15249729885318e3c251a" + }, + { + "rel": "item", + "href": "./BF31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220327e21f5bd06800fa4fc85e7a26589541ce65b45d7e400ac7d8aee18f4a01eca" + }, + { + "rel": "item", + "href": "./BF32_10000_0101.json", + "type": "application/json", + "file:checksum": "12208f80f29557613db2afc91f36578807774bb6c4fbb18a1db63887057bce07f5ec" + }, + { + "rel": "item", + "href": "./BF32_10000_0102.json", + "type": "application/json", + "file:checksum": "122076589493660b66c823da550afc8a0dc3edf18735c8510e6c2d19ca473963033b" + }, + { + "rel": "item", + "href": "./BF32_10000_0103.json", + "type": "application/json", + "file:checksum": "12202a4364f814ef68e2fa3d18cf3267b4f697e70783dbd236f11faa7693c2746c8f" + }, + { + "rel": "item", + "href": "./BF32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220bec1678ab9a55da870f4ea6bdcd882e65cac7fd73e0d5082547ff97e42d9013a" + }, + { + "rel": "item", + "href": "./BF32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c91437aeacb0c3f0deefba47741583dafd3576a9d0a5b3828de01dfa1fc6dba0" + }, + { + "rel": "item", + "href": "./BF32_10000_0201.json", + "type": "application/json", + "file:checksum": "122045d57c150349df86b1cc9983b5418f52e11952d1cb6cac87f7acc696c43a0dc3" + }, + { + "rel": "item", + "href": "./BF32_10000_0202.json", + "type": "application/json", + "file:checksum": "12208b95280a57683dd23d349ca644363e98f507817bc802e476dd09d204af5165ee" + }, + { + "rel": "item", + "href": "./BF32_10000_0203.json", + "type": "application/json", + "file:checksum": "122002a3298530aed8f1908e592ad1ec4ade942556d73e3b92ba6da007a8f1c3fb01" + }, + { + "rel": "item", + "href": "./BF32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220f1efabf1ba5680b1720101e4fd0386f878dab8cdeeec66ec0c038f56a8a7feda" + }, + { + "rel": "item", + "href": "./BF32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220ab788cdd63091b9de08a352ae76a6ccc8fa564869564b49358f54bd74f02f668" + }, + { + "rel": "item", + "href": "./BF32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220cb370da8bb25d9229431b5c96e8eb94f65dd8bef5cc6ebda53b64e191888eb51" + }, + { + "rel": "item", + "href": "./BF32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c4ec0fb1e291eaff650721c153b396fbc858c4aa123b962e622da57ea5ec88f3" + }, + { + "rel": "item", + "href": "./BF32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220ec50d6b422a3765e0f861fc415d9ba04bb3b1c7e370560edc6b30ded394d4c63" + }, + { + "rel": "item", + "href": "./BF32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fa63bc8f625c039c5a3806cd12f00886b4526e7eadf4511ae650609af6f2b6d7" + }, + { + "rel": "item", + "href": "./BF32_10000_0305.json", + "type": "application/json", + "file:checksum": "122088eb252d51b47f57d9ea2d551e3c5c1d9c3096f9b1d5f4bfc770159550c17363" + }, + { + "rel": "item", + "href": "./BF32_10000_0401.json", + "type": "application/json", + "file:checksum": "12202071ef6778dcc1f9eeac9a12c1da5bbd65b3d40a8fcedb96ec66b06da7cbd623" + }, + { + "rel": "item", + "href": "./BF32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220e024e71ac6773845c81af5b27d1acfdf89053e08d256726ea0f45c4b0f4c3b85" + }, + { + "rel": "item", + "href": "./BF32_10000_0403.json", + "type": "application/json", + "file:checksum": "12203fe58bd83678c6cdd1d452bb560bf0a8ad3d214c0c208588360bb4da70b9412f" + }, + { + "rel": "item", + "href": "./BF32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220c90cbb46591659ab76d6a3ffb30f439c4d58e363ef47cca1b23d5f543414d0a2" + }, + { + "rel": "item", + "href": "./BF32_10000_0405.json", + "type": "application/json", + "file:checksum": "12208cb72fecbef7f42a0f3584180ffbb767f94a41971e06cccc48d2d870015cca50" + }, + { + "rel": "item", + "href": "./BF32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220aded380629cfb62a51a9c1482dffd38578ab8ca61c90749eeacb8ab6876b8a10" + }, + { + "rel": "item", + "href": "./BF32_10000_0502.json", + "type": "application/json", + "file:checksum": "12208d41f8cf3029f871fb7ec398ea27107204055fca4b6ce4f1c7fb2bc212c13130" + }, + { + "rel": "item", + "href": "./BF32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d769018056e6d0dd5452704ac0b135dc62e0123a5ab76db8f439b55d475eea00" + }, + { + "rel": "item", + "href": "./BF32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220bd99e40094f7ed346799cc8c32537fee8fdbcf932d7e1378744611319b74b4fc" + }, + { + "rel": "item", + "href": "./BF32_10000_0505.json", + "type": "application/json", + "file:checksum": "12202d1826dd7221cf8c9631b03e3e0f76dd8bda8578b74299fbb8bd1a2997e532e0" + }, + { + "rel": "item", + "href": "./BF33_10000_0101.json", + "type": "application/json", + "file:checksum": "12207ca1efbc43e131cd822f746ab22a9ace69668f4190e365375cdf010f4d554f94" + }, + { + "rel": "item", + "href": "./BF33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d7ef216357bdd9796db68b9ee3ea4cfce455e0f7f730391dc745fdcbcaefd03e" + }, + { + "rel": "item", + "href": "./BF33_10000_0103.json", + "type": "application/json", + "file:checksum": "122046f311b357b2ab2c7bfaa11de587b1c44990333e67a9103a062258602bb782ca" + }, + { + "rel": "item", + "href": "./BF33_10000_0104.json", + "type": "application/json", + "file:checksum": "122085a21c9531e12e13cf844ec7217afabac1977f211d4571d142d7a5f57a8b4c21" + }, + { + "rel": "item", + "href": "./BF33_10000_0105.json", + "type": "application/json", + "file:checksum": "12208fe125f8bd4b862010775a3be59b438362995a36d355b7bebcd7e02fe31e0e56" + }, + { + "rel": "item", + "href": "./BF33_10000_0201.json", + "type": "application/json", + "file:checksum": "122053077052dd01e3b043b3e69e07cdd6988bd784610e465e6beeafee72a62ff15d" + }, + { + "rel": "item", + "href": "./BF33_10000_0202.json", + "type": "application/json", + "file:checksum": "12208e872719b9a9daa9141bd694b08fcec801da5679b5675e950ed1e07c6a7ae84f" + }, + { + "rel": "item", + "href": "./BF33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220cfe898090286e06405f5b4a3192f9905b678e2d67a03285cbf647b824ab592b7" + }, + { + "rel": "item", + "href": "./BF33_10000_0204.json", + "type": "application/json", + "file:checksum": "12200d91fe07d6061af2b8cc3c122e344abc64609e800992f45576ba17a4b2462d51" + }, + { + "rel": "item", + "href": "./BF33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c25c4f3d2ca73f76e2a321d32f2df8fa0bd91e585d61d56a99ff9da99928c6cd" + }, + { + "rel": "item", + "href": "./BF33_10000_0301.json", + "type": "application/json", + "file:checksum": "122052fdb36f5a0c6a54261f4327c726de46729e92dfbeea95b5e51d570ec70cbbf5" + }, + { + "rel": "item", + "href": "./BF33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220155d1711e55b0d575630e0dfb98c0b6227dec9260ed8e1803e0c6d9fec3f373a" + }, + { + "rel": "item", + "href": "./BF33_10000_0303.json", + "type": "application/json", + "file:checksum": "12209844d78a4cf1d577559055e8cbf0673a02aee438580f6ca32a8be6c07c1e43aa" + }, + { + "rel": "item", + "href": "./BF33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220d6a6e25589a1940466a925209f746843b2a3611638b5e97466668d307fab236e" + }, + { + "rel": "item", + "href": "./BF33_10000_0305.json", + "type": "application/json", + "file:checksum": "122034b1c33c7fb455e416cbfc9463992ad36fccb181e20a59c1f08315094c740169" + }, + { + "rel": "item", + "href": "./BF33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220683888c47d2ec4db5eba986482ef6c4eaab26053d9a5c2446d4b71e868fef4e7" + }, + { + "rel": "item", + "href": "./BF33_10000_0402.json", + "type": "application/json", + "file:checksum": "12209957ca7662fe76d55f6b82e0a19667de9fcb45936045dda2a95c6dfec8182c74" + }, + { + "rel": "item", + "href": "./BF33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f42bd13fc07cafe2f21dd9c10e84589bef2628598fa9d23ad16c286aa65a18f6" + }, + { + "rel": "item", + "href": "./BF33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220d84de540e67cad631e86582d3f0f985dca62f51df19496ddf070fcef3515c114" + }, + { + "rel": "item", + "href": "./BF33_10000_0405.json", + "type": "application/json", + "file:checksum": "122044b80a9812e06fa53bf6a2534c2650018c7a4d3a386e04bfd5a39d9b3de8f3b2" + }, + { + "rel": "item", + "href": "./BF33_10000_0501.json", + "type": "application/json", + "file:checksum": "12207bce40b102895f6e28970377cb43e821398648c768560f6c744385ea17665500" + }, + { + "rel": "item", + "href": "./BF33_10000_0502.json", + "type": "application/json", + "file:checksum": "12201cb3bde4f128dc09caf101d8cafd39b6c994f1756b7c132b970251c1b352b154" + }, + { + "rel": "item", + "href": "./BF33_10000_0503.json", + "type": "application/json", + "file:checksum": "12203f3eedd1ed7459c6a5a350fffc0916f104e5b9049b3670cb507d867324fad37e" + }, + { + "rel": "item", + "href": "./BF33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220f4e55e08d5e298dfaed90b072cf12e4294aec50b99baffa3dc925fd48ac637bd" + }, + { + "rel": "item", + "href": "./BF33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220002c673e4e2bc34db0d0019ad4a63fb62f03373a2dc93c63f6e554617572a88a" + }, + { + "rel": "item", + "href": "./BF34_10000_0101.json", + "type": "application/json", + "file:checksum": "122098898315890831aadd7b15f882f72347ed3e4967494dbfe391982067cce2ac6f" + }, + { + "rel": "item", + "href": "./BF34_10000_0102.json", + "type": "application/json", + "file:checksum": "12204398dce6caea0a6bb48c9a227e8c04a1048c7c0d60892795f3c1d24dbf3955c1" + }, + { + "rel": "item", + "href": "./BF34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220d77ffe3902f5000b60f4e31db15d12da0c4823c085eeda36133b64fcc35435b4" + }, + { + "rel": "item", + "href": "./BF34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220849dc57e811fcac95406e97d40555cbabf1483fa482bc1daeaae4248dce8dec8" + }, + { + "rel": "item", + "href": "./BF34_10000_0105.json", + "type": "application/json", + "file:checksum": "12208af64807a0ce6ff865ef9148d1c6a4ecbc86bb1f91998eb9c9c02ce349cf1aaf" + }, + { + "rel": "item", + "href": "./BF34_10000_0201.json", + "type": "application/json", + "file:checksum": "1220056fa55818a8e2f5b85a644d77779229b490694925c61dbd2d5d502e29cb5696" + }, + { + "rel": "item", + "href": "./BF34_10000_0202.json", + "type": "application/json", + "file:checksum": "12204e43aea2e6ecf4e2c2e25602b2254b90a5744b70186ee8055021b199675992d2" + }, + { + "rel": "item", + "href": "./BF34_10000_0203.json", + "type": "application/json", + "file:checksum": "122014adcfbec914ed1e0246bc4baa8515d1150fd99b9820199739acfd09174b37c0" + }, + { + "rel": "item", + "href": "./BF34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220977345d1a5e68e365b3786991600a4779e98ef3d64ac554dde5cf361f73f1442" + }, + { + "rel": "item", + "href": "./BF34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220e45622451fdc9242c25fc09e75e6a089f2053235140ee04dcd3a4c531bf312aa" + }, + { + "rel": "item", + "href": "./BF34_10000_0301.json", + "type": "application/json", + "file:checksum": "12209edc4f50687e17bcd129546cb58e8f2ce1e335a92fcd00ebe7daaa309c645cf1" + }, + { + "rel": "item", + "href": "./BF34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fe4544fea6fb2f4baeaf34afedaa75bf18c8de502963224e91e411377a618a81" + }, + { + "rel": "item", + "href": "./BF34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220da92e8d3ccf20d9165158718b5a8580a4747ef4d8a1f060470422ffbe72b0ef8" + }, + { + "rel": "item", + "href": "./BF34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220f3c44fdd0bd84093b435c5fd72af8b3bd934974bafda7d4d8b18e44ca49cdbbf" + }, + { + "rel": "item", + "href": "./BF34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ed8854026d599d7dabfe9698791650b41f7562d498373ce289dad36f5a68b65a" + }, + { + "rel": "item", + "href": "./BF34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220e807a1378296ed6fa86e091a71e5134fa6027a82eafbefe0d7b22ca6f440e2d4" + }, + { + "rel": "item", + "href": "./BF34_10000_0402.json", + "type": "application/json", + "file:checksum": "12206d596edbcd5a2e7f3bd3975d42887dacfd7cdeb32045c7e2c55de5e7dacac1c8" + }, + { + "rel": "item", + "href": "./BF34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220b7555f69e16e7ed697885926b8239d9d5f9cb792af9fdb61a5f96471190bea9e" + }, + { + "rel": "item", + "href": "./BF34_10000_0404.json", + "type": "application/json", + "file:checksum": "122080b21a626168ceb69fd01a0e392269325094a756f4e88a3f8ce36114a2c525cd" + }, + { + "rel": "item", + "href": "./BF34_10000_0405.json", + "type": "application/json", + "file:checksum": "122046990af87fa20442e61d0d07e7c587d371db3f88150ea90607526c7e5563bcfc" + }, + { + "rel": "item", + "href": "./BF34_10000_0501.json", + "type": "application/json", + "file:checksum": "12205070a6e9c9ab806e14b1f0e4ff3060e3a78ab1268a46e1cfaac0da862ea40c61" + }, + { + "rel": "item", + "href": "./BF34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220134aabcf5fb68988d55f7c32048ff8a62d347167bebab883ae84771a291206cf" + }, + { + "rel": "item", + "href": "./BF34_10000_0504.json", + "type": "application/json", + "file:checksum": "122076cbae9f094104753eead0f265963bc457ce6c4df41104157e524d4215504eba" + }, + { + "rel": "item", + "href": "./BF34_10000_0505.json", + "type": "application/json", + "file:checksum": "12208e4d51a8a891d33e999b4846c8c9bb34fef696a8582855c98ecc33a2dac74a31" + }, + { + "rel": "item", + "href": "./BF35_10000_0101.json", + "type": "application/json", + "file:checksum": "12206fb1315b2eccadf2b190411020f44ca8fb54acc9cf03dbd5ce0064e57bbca8bc" + }, + { + "rel": "item", + "href": "./BF35_10000_0102.json", + "type": "application/json", + "file:checksum": "122030868bf1fe1c02477708fd6a6ff249bf93f4295cf796dc54fa2acc20b113c013" + }, + { + "rel": "item", + "href": "./BF35_10000_0103.json", + "type": "application/json", + "file:checksum": "122049bd3479ec7e8e79949770d1699179061edcaf36c37a43208f032867159756d8" + }, + { + "rel": "item", + "href": "./BF35_10000_0104.json", + "type": "application/json", + "file:checksum": "12202c41fb19c544c2b128494cf2f0efa807bcc3b82547b8f120fd2b8623a8cbcbe3" + }, + { + "rel": "item", + "href": "./BF35_10000_0105.json", + "type": "application/json", + "file:checksum": "12209fa2541837492586ee303c109ec0c2d461aa0c0c8f9f41c4b789daa0bb84661b" + }, + { + "rel": "item", + "href": "./BF35_10000_0201.json", + "type": "application/json", + "file:checksum": "122097081d88a2e2658f505c35f118e7fb37e242a9d23c2b667e7202f9ccddb0d5ca" + }, + { + "rel": "item", + "href": "./BF35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220256b18eac2fa77dbe435356239a439ed3cae76d47836c929378d411c3c5a7e08" + }, + { + "rel": "item", + "href": "./BF35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220c99ffda7dfa72be6cec559fd4a25888d587ddcf6af58f5b563c4d2a340ef0968" + }, + { + "rel": "item", + "href": "./BF35_10000_0204.json", + "type": "application/json", + "file:checksum": "122028d875c964c826510b4808509b06ec68d89052c7c75cea807aa816c674be8888" + }, + { + "rel": "item", + "href": "./BF35_10000_0205.json", + "type": "application/json", + "file:checksum": "122021cc6e6e834a5cc4216ac43e10f4c573a0e4008ccccdec4a656c62a0eaa9f71c" + }, + { + "rel": "item", + "href": "./BF35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220a247d8e911614af8c895c6ce66b08f2910a7f57ead7e2ab50dc177f7a7cbc307" + }, + { + "rel": "item", + "href": "./BF35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fcb10e525264ae82bcf0d8a3d3b6e5fa63c7afe525fc8d6106b663cbf6207982" + }, + { + "rel": "item", + "href": "./BF35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f90b0ef517240de57c8aea363cf45954ebf17efc6c441b97f348bdb92969a25e" + }, + { + "rel": "item", + "href": "./BF35_10000_0304.json", + "type": "application/json", + "file:checksum": "122014dac1a760dc6ad8471fb4adc1d7e6cfb52d7bfd41ecc932015172cee62d5617" + }, + { + "rel": "item", + "href": "./BF35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ba473762b779abc717ec039a48fd4cd7da026df9e956454fedd065e2bafd0bdb" + }, + { + "rel": "item", + "href": "./BF35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a5fbc8cf1f829a358df4f6fb0eac40a3a30acedab2a3fd23d387588aeadda0c2" + }, + { + "rel": "item", + "href": "./BF35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220f4682caf32ced5c48c1e441271d4146952a89aec0ef0982725da8aa978dc7351" + }, + { + "rel": "item", + "href": "./BF35_10000_0403.json", + "type": "application/json", + "file:checksum": "12208797fd3af743f9682aabf17d700b00c88eed253bf845da9c7820ee67677cbe7a" + }, + { + "rel": "item", + "href": "./BF35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220abbef249d21f404142ff03374e2119acbb6c11b8559e5b5b66af431a45ad6fe3" + }, + { + "rel": "item", + "href": "./BF35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203c85a111ce6d90f3a7439a11f3a16071b1f9ef495aceebd2233e0d38fe8b624a" + }, + { + "rel": "item", + "href": "./BF35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220d02f0b5bb19f8a186f4effdb9e17125fb1461da94a0c0a5cae8d729e709fd957" + }, + { + "rel": "item", + "href": "./BF35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220afbd5b0131f77dc42c25626f23fc8cf3db60281de03e12e83ae166e4b46a4a68" + }, + { + "rel": "item", + "href": "./BF35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220aafd23c2337ec543ab175de7a27302997e703b810829fb66197fd61c4cc37edd" + }, + { + "rel": "item", + "href": "./BF35_10000_0504.json", + "type": "application/json", + "file:checksum": "122088e8a62932f55eff92e2782021bd9e14ba8d4b9b1cc43e1c5d1214b853a4bba1" + }, + { + "rel": "item", + "href": "./BF35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220a2fb0053c1c6a4848cef9c67106bbf6017c60f3db78ef7ff9ce2313169c0e1d4" + }, + { + "rel": "item", + "href": "./BF36_10000_0101.json", + "type": "application/json", + "file:checksum": "12206954b99b87825ebe7259e094f320d50c3328d894dcfe46449d840cc3d12ad732" + }, + { + "rel": "item", + "href": "./BF36_10000_0102.json", + "type": "application/json", + "file:checksum": "12206f83168de92116688bc95c3edaf60508e68eb8fc6c3a5374f8a6d6b931b3f5b1" + }, + { + "rel": "item", + "href": "./BF36_10000_0103.json", + "type": "application/json", + "file:checksum": "12203d1bbec721d28987308e9cb6c7cbb209ce3e4080981c98c64b34163f2029cef5" + }, + { + "rel": "item", + "href": "./BF36_10000_0104.json", + "type": "application/json", + "file:checksum": "12200f3475f8c62bebf4089182031efb29079158e45ef1410cbcfafa489e785867ca" + }, + { + "rel": "item", + "href": "./BF36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220f551ef80482a5f30e9da800149aa79155201525ac5840b86fbe17f6e863baa39" + }, + { + "rel": "item", + "href": "./BF36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220999b492450e5cf3b51446743f6ea52096067046f66fe72395a57cc9525ad41dc" + }, + { + "rel": "item", + "href": "./BF36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220a5e05c074c3cc718e94f6e85bb085a6545b429c54363c18117ced78f3c5e76ad" + }, + { + "rel": "item", + "href": "./BF36_10000_0203.json", + "type": "application/json", + "file:checksum": "12205d6fad7fd89c91cc5cab296c0d4e093d33670901a332466624ec026727266f26" + }, + { + "rel": "item", + "href": "./BF36_10000_0204.json", + "type": "application/json", + "file:checksum": "12204462909e1bc40c291b1fa1133b69870f763f380df03fd3d8dc74651c5d38041e" + }, + { + "rel": "item", + "href": "./BF36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220f7e48fa4d2b52fab0226dbe89b49c1a57b4dc1ea7b8172f812bb7d2d902d06bd" + }, + { + "rel": "item", + "href": "./BF36_10000_0301.json", + "type": "application/json", + "file:checksum": "122061b6d14882aa6b6643ff9f0315697c77a47c53dddf24248c4960eb9752c678d3" + }, + { + "rel": "item", + "href": "./BF36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220964fdfb518a0d50d2bbdb76e0afe51147e512e54161760af301197b8cd8bf7cb" + }, + { + "rel": "item", + "href": "./BF36_10000_0303.json", + "type": "application/json", + "file:checksum": "12202c5e6b0fedcafb5d9da5d2af6751e118082e077ce33c47ca92fd2047248c743a" + }, + { + "rel": "item", + "href": "./BF36_10000_0304.json", + "type": "application/json", + "file:checksum": "122047d79dee287f1b98444e28e93552bd30d5ceb62dcfa14bd821881181ba9deb0c" + }, + { + "rel": "item", + "href": "./BF36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220250ae25c51f232e58e52a4c51d5715426957047671d090da29b376b69bbdca32" + }, + { + "rel": "item", + "href": "./BF36_10000_0402.json", + "type": "application/json", + "file:checksum": "12208f7a0359817cd40a4dab31436cefbd5b7a7209439f167a9fec1412b7e5265472" + }, + { + "rel": "item", + "href": "./BF36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220726ca59f2f65b1e0ca542a709c2fcbca8caa2c32df2af3bb98c9fb7c86fed60f" + }, + { + "rel": "item", + "href": "./BF36_10000_0404.json", + "type": "application/json", + "file:checksum": "122043fe635957ac02d4964e03fa043939ef38b0c6709713510481086ec8dcb3997e" + }, + { + "rel": "item", + "href": "./BF36_10000_0405.json", + "type": "application/json", + "file:checksum": "12207448eb75861ce1010586f87e21e604a7c522ec70b9f98c4c819ec97c8238384d" + }, + { + "rel": "item", + "href": "./BF36_10000_0501.json", + "type": "application/json", + "file:checksum": "12202bbf5a1c9b243e55483473d88ca9337a409317b61c9f59c39e75d8c19d47664e" + }, + { + "rel": "item", + "href": "./BF36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220e23a82946b814b989456c9f68740e33dbf416c24ef13e5a17e2f13565f9f1a89" + }, + { + "rel": "item", + "href": "./BF36_10000_0503.json", + "type": "application/json", + "file:checksum": "12202a2b195f37c862443a2d3308f839298771171cda0d373caf944f827092be0864" + }, + { + "rel": "item", + "href": "./BF36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220555cf71958728d64a22f05dc1287ef545560b96ba14b88c61efcc92267cec809" + }, + { + "rel": "item", + "href": "./BF36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220789b0bf2d7684f436e1b2c07414ff445dd67b7b4123d894a3163913d5cd3cefa" + }, + { + "rel": "item", + "href": "./BF37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b65a0a7b1622f59a27d243adbe8734518153d5499bb2050de9290ebfd641da55" + }, + { + "rel": "item", + "href": "./BF37_10000_0502.json", + "type": "application/json", + "file:checksum": "12209f3ebe5495b09ce9b55307bcf5c2c88c132a493c991e7c3203b7d760c6f7f157" + }, + { + "rel": "item", + "href": "./BF37_10000_0503.json", + "type": "application/json", + "file:checksum": "1220e43c92414b37b78f8506afaeef3b66cccc383bd7298772c979669554c14fc25f" + }, + { + "rel": "item", + "href": "./BF37_10000_0504.json", + "type": "application/json", + "file:checksum": "1220118c6c7f55ece1838d2d7e6eb138b8267473c43b2bc0bd5f907a5c9987746a47" + }, + { + "rel": "item", + "href": "./BF37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e44ade629c0fc76cda1208fd6174d623a2acc12ba9aa2c2d90a3fb9eb791ffc3" + }, + { + "rel": "item", + "href": "./BF38_10000_0501.json", + "type": "application/json", + "file:checksum": "122093c9e44cfe301092affca1ba1535fb8aedc39882edb13961355698dbd178767f" + }, + { + "rel": "item", + "href": "./BF38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220624ba8f4a1068da9d4ec4e3952e1dcf0b126d989fea72011251665c26075096e" + }, + { + "rel": "item", + "href": "./BG31_10000_0102.json", + "type": "application/json", + "file:checksum": "122083c2349b79b24f26220c96e36aeefbbe68870cd1f306149c01300aac0e59ee0b" + }, + { + "rel": "item", + "href": "./BG31_10000_0103.json", + "type": "application/json", + "file:checksum": "1220fc1a1626e72f828dc7c72f8f264075d2e3852816146e6d56c45658989b7dee47" + }, + { + "rel": "item", + "href": "./BG31_10000_0104.json", + "type": "application/json", + "file:checksum": "12205144cadd9d3e17d6325fda01c19f985d7a0716b40abee663a5cb7b4b57f689b3" + }, + { + "rel": "item", + "href": "./BG31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220144254898833649686cd540bf10c7aad0ed9f568ebdbd0a9486a9e5d1b653375" + }, + { + "rel": "item", + "href": "./BG31_10000_0202.json", + "type": "application/json", + "file:checksum": "122042429902f00b4a7663888b7ecc774823543612f3a7b8621e1ba95a4e7de35edc" + }, + { + "rel": "item", + "href": "./BG31_10000_0203.json", + "type": "application/json", + "file:checksum": "122047ba989cc925fde3f413ba0c52073d4a40ff408544e408ad6aa0cd267d0209be" + }, + { + "rel": "item", + "href": "./BG31_10000_0204.json", + "type": "application/json", + "file:checksum": "1220b308d6c9ca0521c8a210b79cea8372790528cbff93cbd6335be45cfcd1b599d9" + }, + { + "rel": "item", + "href": "./BG31_10000_0205.json", + "type": "application/json", + "file:checksum": "1220844e8f2a016e17f0f07985afeac87a80c54189bfb732549cf5fb1c3b8676dbdd" + }, + { + "rel": "item", + "href": "./BG31_10000_0302.json", + "type": "application/json", + "file:checksum": "122042d80bd0c4a48c6dd208a8c6db32e21ad184833497fb00df7283bd3b74bd9f9c" + }, + { + "rel": "item", + "href": "./BG31_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e909b2a78b77cdbbb741ccd33e92d17003d9c426c46107eb1512af42cda91449" + }, + { + "rel": "item", + "href": "./BG31_10000_0304.json", + "type": "application/json", + "file:checksum": "12206b4ba6dba04fe368be7462e770276962b8de1b2b635e03c9846d9ff58e875ca2" + }, + { + "rel": "item", + "href": "./BG31_10000_0305.json", + "type": "application/json", + "file:checksum": "12209ef0715307126d021354b4023b0a494e6639be3aad22712d129fa3c9cb557215" + }, + { + "rel": "item", + "href": "./BG32_10000_0101.json", + "type": "application/json", + "file:checksum": "122064b706afcc4850424ec8f057296c8be426c717e5a25d08468b0ecbf94f77614f" + }, + { + "rel": "item", + "href": "./BG32_10000_0102.json", + "type": "application/json", + "file:checksum": "1220bcccde32e1ad73c2192511f3eee199fc9d0d7d0529802c38c07b2d2c8ea63552" + }, + { + "rel": "item", + "href": "./BG32_10000_0103.json", + "type": "application/json", + "file:checksum": "12203f54a44121ed723840196ad8b6c90fa4c192c4c51b9a6389b4772797e53ca62a" + }, + { + "rel": "item", + "href": "./BG32_10000_0104.json", + "type": "application/json", + "file:checksum": "122000c2a3d3db7b6551838ba71474753a5aa5e7cf5b36e45663d1fbf7da1e28ca58" + }, + { + "rel": "item", + "href": "./BG32_10000_0105.json", + "type": "application/json", + "file:checksum": "12205adeda234db00682c8d945dd790053846e51c25e1f0fb345afe03aed8e51cc09" + }, + { + "rel": "item", + "href": "./BG32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220b9be022aecf5df3a833d783e2eb135494984c6449977ae952c41f6e2fcaa1c8e" + }, + { + "rel": "item", + "href": "./BG32_10000_0202.json", + "type": "application/json", + "file:checksum": "1220cf8af8329b3a0a0e4ff122fe489fbc986b93bfaf8d726571e07471cfdc2758cc" + }, + { + "rel": "item", + "href": "./BG32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220c10cc449bf9a9b5e5de991bc0481a35221b5e53e1cd6e5aef9005b256f9995da" + }, + { + "rel": "item", + "href": "./BG32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220882e854a33a3b9d2561696471aa64805417e2ca8a9e583e1adfe8d1de22050df" + }, + { + "rel": "item", + "href": "./BG32_10000_0205.json", + "type": "application/json", + "file:checksum": "12208a8f78f9ee98f79675f4bf68d4c4d6d32e3515b0454b2491bc5307a7891ad5b3" + }, + { + "rel": "item", + "href": "./BG32_10000_0301.json", + "type": "application/json", + "file:checksum": "12204c4177d8d56541ec667ecf9a54090e06653722a01d67f58c5a02059884d6b578" + }, + { + "rel": "item", + "href": "./BG32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220541b5e845cc04d292910d0bb2cbd79c25a7250caadcc29314684b8ada115f27c" + }, + { + "rel": "item", + "href": "./BG32_10000_0303.json", + "type": "application/json", + "file:checksum": "12204960a5fd65358c02f9680b1ba81575c06dadf1fd9790ba27a42f93b9af0c4768" + }, + { + "rel": "item", + "href": "./BG32_10000_0304.json", + "type": "application/json", + "file:checksum": "12201ced7e7053e598268247fd56ad97b2dd0ed390fe5d74764fa4c164bdef3ecbc0" + }, + { + "rel": "item", + "href": "./BG32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a8f431c54700d8cc57d5c91a066faf698f1ff874a9339008b5752f2400b75189" + }, + { + "rel": "item", + "href": "./BG32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220fceb1b109a8b394e02d9247cf13f110b2a3e8baa274e6861913221cde3a4a79a" + }, + { + "rel": "item", + "href": "./BG33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220f468e9f1e00bf0b403936776e1b29ed7ee5e9b27e66f2b6d56cc0063f9383d77" + }, + { + "rel": "item", + "href": "./BG33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d2271d635b628e3fa5669262246f7f14d6b144a336344764381ac640d05d1eac" + }, + { + "rel": "item", + "href": "./BG33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220dd5cfedd9ddea08a34a9fb3aae073edb74aab1ca5e68485f436d5d3c0c5febf5" + }, + { + "rel": "item", + "href": "./BG33_10000_0104.json", + "type": "application/json", + "file:checksum": "122021996e38e0df3b0a6e50885c21c82d78428156d93ec2bdadbcef9d9eb032a6b4" + }, + { + "rel": "item", + "href": "./BG33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220d54132d7ba925ba0426e5caf55e0cf99aee90b213147eea4ee106512cde80ed7" + }, + { + "rel": "item", + "href": "./BG33_10000_0201.json", + "type": "application/json", + "file:checksum": "122021e6012ab4aec591f122bd9f21145b3ba0e78d6ebe932b8dac5af9de0ac118ef" + }, + { + "rel": "item", + "href": "./BG33_10000_0202.json", + "type": "application/json", + "file:checksum": "122028b2f5f379b8ae699eaede78a03beee114b42cbf66d73fb048b02457c5bb86f2" + }, + { + "rel": "item", + "href": "./BG33_10000_0203.json", + "type": "application/json", + "file:checksum": "122009b2d2c423844008546aa86c6ee3cf920ca5370c283007a5bc392952bb0c2645" + }, + { + "rel": "item", + "href": "./BG33_10000_0204.json", + "type": "application/json", + "file:checksum": "12205bfeb792d6122bb74b7756bfe4eaac99ea937a5d812d0c3930c993bbb8994862" + }, + { + "rel": "item", + "href": "./BG34_10000_0101.json", + "type": "application/json", + "file:checksum": "12201c8bf16bb0d872d59b360be4d8a78d45e54e4da780520f9029dd1c98811f3919" + }, + { + "rel": "item", + "href": "./BG34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c5ae3656f8c86d6414188dcfa84fbdb68b03b24bb86f1af780e47e10e2669f58" + }, + { + "rel": "item", + "href": "./BG34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220aac3952dee018cb49fd6367487c7622d8b59a605bd7fd3a14191308b423b795d" + }, + { + "rel": "item", + "href": "./BG34_10000_0304.json", + "type": "application/json", + "file:checksum": "122026684d000f3a0330bb679c5dfde1292c98879cc4274f03950cd4923e0451642b" + }, + { + "rel": "item", + "href": "./BG34_10000_0305.json", + "type": "application/json", + "file:checksum": "122029317657474fb15ea8d5c6ca63dd0ad8e804f51681c534f9f24c2d8d59cf915a" + }, + { + "rel": "item", + "href": "./BG34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220ebca5979bbd9dac09ad13c64e38d4a898104254e53a29df839b88b56d990612c" + }, + { + "rel": "item", + "href": "./BG34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220eb08734d0c30f8f994e89e87da27538158cd7711d75fbd3ce201c3f0a79476ff" + }, + { + "rel": "item", + "href": "./BG34_10000_0504.json", + "type": "application/json", + "file:checksum": "12209440eaff16b7a3ea3a626b5b479341145e411c46509c2843c1b5d338aa6efc6f" + }, + { + "rel": "item", + "href": "./BG34_10000_0505.json", + "type": "application/json", + "file:checksum": "12205e70a485558bc021191b96cc550f75c813b95636c32db7c03f2a522c7b7ff37e" + }, + { + "rel": "item", + "href": "./BG35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b6755f1fd9d72f6efce0b2b52d7505681c22537458431ec3505ae1d6a35ab68c" + }, + { + "rel": "item", + "href": "./BG35_10000_0102.json", + "type": "application/json", + "file:checksum": "122095734300b9f82177e3b374acc0200ac17b9a8b3e079fa99c8aed7e1f9d12f8f1" + }, + { + "rel": "item", + "href": "./BG35_10000_0103.json", + "type": "application/json", + "file:checksum": "122014aee6ffecbb08664046c34fad6bc9fb0d793669bdd19a26b76d95456085193d" + }, + { + "rel": "item", + "href": "./BG35_10000_0104.json", + "type": "application/json", + "file:checksum": "12209a0341decb5eaae4d5e9ada12dd5c573efe36d3968125a0f0bcedb9e2ecd9c5b" + }, + { + "rel": "item", + "href": "./BG35_10000_0105.json", + "type": "application/json", + "file:checksum": "12204200a5b41b46857501011c068c2135e09c6476fe2f9e4c28aad33367c5651c7c" + }, + { + "rel": "item", + "href": "./BG35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220a1284c27c0001ac17af84699d6f75b5d0cbd23d36e6f6db1ccd8805a2f27adbd" + }, + { + "rel": "item", + "href": "./BG35_10000_0202.json", + "type": "application/json", + "file:checksum": "122000108aa953c0e7a972a1e5008f0b8680fd047ced50def5eee922d8874b512aed" + }, + { + "rel": "item", + "href": "./BG35_10000_0203.json", + "type": "application/json", + "file:checksum": "12209af9b7078269199fc1e02bb43e8167e2e3e60b679a251f175033817ceab0e58f" + }, + { + "rel": "item", + "href": "./BG35_10000_0204.json", + "type": "application/json", + "file:checksum": "12201325fc6cc33b3fac111302fa88e8e63561ded2453ff95f06583edc1277f30e59" + }, + { + "rel": "item", + "href": "./BG35_10000_0205.json", + "type": "application/json", + "file:checksum": "12200e503d3b8a968f56bf1d79ae32771ea786496ff7908ae76a9dd20110de8d734b" + }, + { + "rel": "item", + "href": "./BG35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220e8ae9cf8ef7e92602a8d929663f77469bf73c67c0c627a8ae8368edca14069be" + }, + { + "rel": "item", + "href": "./BG35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220d1e20f7c8adee4c08d6c2c0990ab16fc54565f9fbb25dd4ed9639d59b0356f2b" + }, + { + "rel": "item", + "href": "./BG35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f10e04143c60fb2ed8d69aa42ce5c6af4af1467ec1ae99a32bd3395a29997b40" + }, + { + "rel": "item", + "href": "./BG35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a45e0193a30c1720803ef92b10c8d1c59fa66c13a953a4263e14bd5fff79cc32" + }, + { + "rel": "item", + "href": "./BG35_10000_0305.json", + "type": "application/json", + "file:checksum": "12205c72abba06573da7ea3cbb2534158a29e18fb4570ad7c9ae45b45e3dc53d2d29" + }, + { + "rel": "item", + "href": "./BG35_10000_0401.json", + "type": "application/json", + "file:checksum": "12204af244c2ef2b445a7a20b3599d3e8960214cb6419681fa981afe30ec6b2cc867" + }, + { + "rel": "item", + "href": "./BG35_10000_0402.json", + "type": "application/json", + "file:checksum": "122060ca12840dbe7d7fdfb88aa79521df8c820b5a389c7f3ac8b284630351df4907" + }, + { + "rel": "item", + "href": "./BG35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220c85076e39f8e76782f049ba9e0d825d2b65be669acbd176cabaf30f93b807218" + }, + { + "rel": "item", + "href": "./BG35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220cc0088ebfa5e81719f7a002666ea2ed04308687824b873c5c04880ba96803cdb" + }, + { + "rel": "item", + "href": "./BG35_10000_0501.json", + "type": "application/json", + "file:checksum": "122015ef8b69f2156bfb620411865e7a9b72d6114621be452a807c4ce7d5f68b0b5f" + }, + { + "rel": "item", + "href": "./BG35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220413b8d26f9d56841e027d2713e219518e3774bab44cb9d768a1480e69d4f1446" + }, + { + "rel": "item", + "href": "./BG35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220ad4ad15e67ae0543a8149539d4645ea8c06784ae9c95499e4b5a23d6bc476108" + }, + { + "rel": "item", + "href": "./BG35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c99f6ca9f9138753d77796479ee2fad86f883215930bf613c38a536753bbfd6a" + }, + { + "rel": "item", + "href": "./BG36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d273c67dfc70b99d47f207a548c2d660b8f0da45ef17b81ede660ad384db6c0b" + }, + { + "rel": "item", + "href": "./BG36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220148b43cbd3a1244b600e39bfe5df020534f009f82f615d5a12a2283d38932048" + }, + { + "rel": "item", + "href": "./BG36_10000_0103.json", + "type": "application/json", + "file:checksum": "12201f217fdc43beea2560a1cfe34d0e09c8f8bacc526611e55f6dadbdcb94f19732" + }, + { + "rel": "item", + "href": "./BG36_10000_0104.json", + "type": "application/json", + "file:checksum": "12200699cb35534bd3835b52acc47f0d191b8f78e19683bbdfd040bb097beab2f869" + }, + { + "rel": "item", + "href": "./BG36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220f2e2586138b28f453bda1b3454128b0230162ed9d50a16949ab6fd96dc5934f8" + }, + { + "rel": "item", + "href": "./BG36_10000_0201.json", + "type": "application/json", + "file:checksum": "122058c758a689a9d4830613bc0ac607f22f0642bb97e21ba2d80950583c45af7c6d" + }, + { + "rel": "item", + "href": "./BG36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220957540e51f8194e39efeb33a54c3d300c78c1f92a5d2ef57532febc9d56af73b" + }, + { + "rel": "item", + "href": "./BG36_10000_0203.json", + "type": "application/json", + "file:checksum": "12203ce951ff694bc47f6d7392eb6d16a0183bc2f5b27e0e63ecc50177ff563312b1" + }, + { + "rel": "item", + "href": "./BG36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220a01332eb2a0ca8ac219c44badc52caa37835fde57421f47dfd6f1252becb72b9" + }, + { + "rel": "item", + "href": "./BG36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220d93fe0f6abeeb9dbab62003bf76178e07edfa7b8d5b27fe6a27d464bbd1c8bf6" + }, + { + "rel": "item", + "href": "./BG36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220bd10a250e3958ea3cc67e82749957069e8864a0717e7546a9511927fc73365bb" + }, + { + "rel": "item", + "href": "./BG36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220b1985a4b62b6536feb87d33fa2b854311f04fa3c1fb65ada016f6de9f18533f5" + }, + { + "rel": "item", + "href": "./BG36_10000_0303.json", + "type": "application/json", + "file:checksum": "12207717d9b46e7b8016aa5db9ba76119c53e8edff9bdc6ff235841feba7b4287be6" + }, + { + "rel": "item", + "href": "./BG36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fd12cdf690f30ec28023126e4377bc91934e4ebf173f2be35316addc3f9a9d3b" + }, + { + "rel": "item", + "href": "./BG36_10000_0305.json", + "type": "application/json", + "file:checksum": "1220abab75546a1f7018f25aceba7964a36d4ccf7b6bf6e9063da26ba5976cedd8d4" + }, + { + "rel": "item", + "href": "./BG36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220cafcb097f1c37b6b700bbf48b6a0745ec028a444f2764b1e77699b66ed307305" + }, + { + "rel": "item", + "href": "./BG36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220da8253b663c1d8e678412920be9c939ab03e5855fe9acd74d76ca052c71ad5bf" + }, + { + "rel": "item", + "href": "./BG36_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a167a6f0fc144e814c3ae7f90b0f834220e4b1db2be269be26c710dce37670f8" + }, + { + "rel": "item", + "href": "./BG36_10000_0405.json", + "type": "application/json", + "file:checksum": "122048bc1302ac7e089ec5099a54efce987aaafc55ca961739ab6936aa2f50ab2fc5" + }, + { + "rel": "item", + "href": "./BG36_10000_0501.json", + "type": "application/json", + "file:checksum": "12204c8d08fd8adcebcebb4d56d3f2a3c9b7e6ef5ab18cbf954f289cb77f138e87fa" + }, + { + "rel": "item", + "href": "./BG36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220ec8aa53843d387b34d994d448c3ff1c36f9fe8706337c5f827e8804072abb17b" + }, + { + "rel": "item", + "href": "./BG36_10000_0503.json", + "type": "application/json", + "file:checksum": "1220cb3cdd290dfb0de2aa593fa8063616330fd8fd29c6d46e8f50174ca1008de0af" + }, + { + "rel": "item", + "href": "./BG36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220134414bba60d2c3d3d8503fd82f240cd530b1f3c7c458c47f958c190c5c54bb9" + }, + { + "rel": "item", + "href": "./BG36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220cde7b9d2673e412df0e54d850a091a7658e026767c6a7d7acbab26202964c890" + }, + { + "rel": "item", + "href": "./BG37_10000_0101.json", + "type": "application/json", + "file:checksum": "122026a1eb5f01b9e7f55219390e5b793f67a47a93d5b6b0eb97d63db53f82c7efe8" + }, + { + "rel": "item", + "href": "./BG37_10000_0102.json", + "type": "application/json", + "file:checksum": "122098e8866533553dcd116d016f45070786ec642532d64e6ac480fb3fc2a3ad9e55" + }, + { + "rel": "item", + "href": "./BG37_10000_0103.json", + "type": "application/json", + "file:checksum": "122009aa9ee9096719a3b63c4e46b288a720f09c08e1df45cc79abd95320497b00d7" + }, + { + "rel": "item", + "href": "./BG37_10000_0104.json", + "type": "application/json", + "file:checksum": "1220407194b9bce48aabeb147f0c1d779d4de8f0edd12e5f01362304abd1370fc9fc" + }, + { + "rel": "item", + "href": "./BG37_10000_0105.json", + "type": "application/json", + "file:checksum": "122028310cce9e5c0b3a685f5dcddcb0d776dcd8a9c98c71aeaccafa7dbd194107bc" + }, + { + "rel": "item", + "href": "./BG37_10000_0201.json", + "type": "application/json", + "file:checksum": "1220dac693aac1f01cc03d26272b7c5a20c35f4ce17340e5723a5ab0f12b65ea1536" + }, + { + "rel": "item", + "href": "./BG37_10000_0202.json", + "type": "application/json", + "file:checksum": "1220cc49e9d485c362143750ad5cb98925ec0c25d977a9a8e0ef8a2ba272321375dd" + }, + { + "rel": "item", + "href": "./BG37_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a86a3f1af4df2b0a635f15a06d0180fd29712f751753db7fe69723d51c23b69e" + }, + { + "rel": "item", + "href": "./BG37_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cd8e82c55fed0366af5212ca949c10ef8ad6cc50a7923f0e0e7991c5c0b45884" + }, + { + "rel": "item", + "href": "./BG37_10000_0205.json", + "type": "application/json", + "file:checksum": "1220a203bfed23ac2cb32a3126c326cfe5f1026bf25c392641e5cd347d0ef80f296d" + }, + { + "rel": "item", + "href": "./BG37_10000_0301.json", + "type": "application/json", + "file:checksum": "12207c73980225cb6b16409bbf9c076c3c855dcff2f05ac3d8fe9affb1f661fe1ee8" + }, + { + "rel": "item", + "href": "./BG37_10000_0302.json", + "type": "application/json", + "file:checksum": "12202f67d599e04a85524f70fa06613dad93f15e7241d005d3183748bc80560e9755" + }, + { + "rel": "item", + "href": "./BG37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e44cfcb8494ad89e339e812ab8d4406eba30e2aa585605de6def96033487f3c7" + }, + { + "rel": "item", + "href": "./BG37_10000_0304.json", + "type": "application/json", + "file:checksum": "12200265d40ac58636033371bbf5332881f4b1040c1695fded82253713d1b9f86ce3" + }, + { + "rel": "item", + "href": "./BG37_10000_0305.json", + "type": "application/json", + "file:checksum": "12201961d090c2bf8c1947e7093a23fc78c9ece910d91b3616b682d2344f24c6b71e" + }, + { + "rel": "item", + "href": "./BG37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220c7c2a6a3bed653a868d0d9d9843c28e16d2444c89077553221f4e37ce662f269" + }, + { + "rel": "item", + "href": "./BG37_10000_0402.json", + "type": "application/json", + "file:checksum": "1220b3deecdfdb4431a5049f47b71fed84ac6e48f7756cd11f3fb162fa2d278af7c5" + }, + { + "rel": "item", + "href": "./BG37_10000_0403.json", + "type": "application/json", + "file:checksum": "12204c8701c444e741f3b5521e5fead9c529fd274e11a793c9b64c5012d64c129644" + }, + { + "rel": "item", + "href": "./BG37_10000_0404.json", + "type": "application/json", + "file:checksum": "122064fc931e953f02a9141f999d7684f9fb5feb11e8389220d01c4d23bd3495f0f2" + }, + { + "rel": "item", + "href": "./BG37_10000_0405.json", + "type": "application/json", + "file:checksum": "12204bbd2c4145a906de5976c9d8982684fd7356f1d3cbafb1f4b1ef8a054b3c6fec" + }, + { + "rel": "item", + "href": "./BG37_10000_0501.json", + "type": "application/json", + "file:checksum": "122021fc5afacdcfc6def1abfa4bef041ed612724e0cf5c6d89f0ee21534ca37aa84" + }, + { + "rel": "item", + "href": "./BG37_10000_0502.json", + "type": "application/json", + "file:checksum": "122051ad5a15e2bcefb98fddd6a7ea2cfb423bf46a2e51aa46a8c1dd46d63162a384" + }, + { + "rel": "item", + "href": "./BG37_10000_0503.json", + "type": "application/json", + "file:checksum": "122069cf6367319ee6d9947c401b63d73078e115f12579b76db6064de092e0b8fed1" + }, + { + "rel": "item", + "href": "./BG37_10000_0504.json", + "type": "application/json", + "file:checksum": "122097988fdc819fb3da0f2d1aa884f5f1ad11fedfc40b9af9f4d51632d0580fea1f" + }, + { + "rel": "item", + "href": "./BG37_10000_0505.json", + "type": "application/json", + "file:checksum": "122050c92b19f975a8d11c6b0909f662cd521a46125eebc65a38c281c55224174dff" + }, + { + "rel": "item", + "href": "./BG38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220c1555464f5cc4190403007ad974bf54650f88b094488ac946c9bf24a91ca05c1" + }, + { + "rel": "item", + "href": "./BG38_10000_0102.json", + "type": "application/json", + "file:checksum": "12207ca4c491b474f3c06739dcad7281d90d27d5ef2e3def558fbedf56d65f91cbe5" + }, + { + "rel": "item", + "href": "./BG38_10000_0103.json", + "type": "application/json", + "file:checksum": "1220fd19c33776b8c67335c185cf09c638f20c28c468891a17e665de7ed49fddebc0" + }, + { + "rel": "item", + "href": "./BG38_10000_0201.json", + "type": "application/json", + "file:checksum": "1220faaea3d2d360037cd028d377952667c9bc1d044df793dc85eb131aa5bf90f2e1" + }, + { + "rel": "item", + "href": "./BG38_10000_0202.json", + "type": "application/json", + "file:checksum": "1220399ca8985b60ed4d142f0b3494bab881b1734f68de730fabb942d74cebb7bee1" + }, + { + "rel": "item", + "href": "./BG38_10000_0203.json", + "type": "application/json", + "file:checksum": "122087dd5aa72c095d65155e6b03daefadf1fc9df6cc6e9444105744a656be66beb5" + }, + { + "rel": "item", + "href": "./BG38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cbfeed995be361bb35624db324e524f80339f25926350dcda360a9e64e3ce976" + }, + { + "rel": "item", + "href": "./BG38_10000_0301.json", + "type": "application/json", + "file:checksum": "12205ccb2840863af3fc51415d4be7f4fe172fcd8a51812e0e006885a77787edad56" + }, + { + "rel": "item", + "href": "./BG38_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fee86160bdbc3dd9647fbd02a60fb6a84a44793e627c0ea2097bfe04801da1f8" + }, + { + "rel": "item", + "href": "./BG38_10000_0303.json", + "type": "application/json", + "file:checksum": "122043bca538daf6c65742ab51e1db30e8d3d032c79d99dbcb2da8cb256b45c096b8" + }, + { + "rel": "item", + "href": "./BG38_10000_0304.json", + "type": "application/json", + "file:checksum": "122068fcde40eae4349d3a2ddcd38b0de77dd82dfb609c38900dd65cd95b6e5c1a62" + }, + { + "rel": "item", + "href": "./BG38_10000_0401.json", + "type": "application/json", + "file:checksum": "12206790e0a434d4938a7b9030d93f05c62fdcdf7d27faccfc2d84c60cd379683c04" + }, + { + "rel": "item", + "href": "./BG38_10000_0402.json", + "type": "application/json", + "file:checksum": "12204c2ec990910b13f4e4c7ed350baee670897b68f5b45c07b54e6efcdc22029e70" + }, + { + "rel": "item", + "href": "./BG38_10000_0403.json", + "type": "application/json", + "file:checksum": "1220efdc2b0075e1b10114351e06c2b2920dbe02e5e046c616d93fd3fe75401e582f" + }, + { + "rel": "item", + "href": "./BG38_10000_0404.json", + "type": "application/json", + "file:checksum": "12207674aed207a3aa6524126eec9933c5a673b87e6d517d26f416e8318f9b0df7df" + }, + { + "rel": "item", + "href": "./BG38_10000_0501.json", + "type": "application/json", + "file:checksum": "1220c56633fbd4afbacf14fe7218f4f0269b80b69351bfb5f4b4afb322c4e5aa475f" + }, + { + "rel": "item", + "href": "./BG38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220ddfd86fe862711daf49ad5c80e288d64afe759b4ce5791ca46c99f8d5d4bbd90" + }, + { + "rel": "item", + "href": "./BG38_10000_0503.json", + "type": "application/json", + "file:checksum": "1220a84edca307b358273fdaa0f13d788322ae19925926081f5169cecab54d35506e" + }, + { + "rel": "item", + "href": "./BG38_10000_0504.json", + "type": "application/json", + "file:checksum": "122045a33e83f40eaccfc8651de37a5e8cae224d4c58b8c27be983cefe9afb374c7c" + }, + { + "rel": "item", + "href": "./BG38_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e0eb01c2eae4c6ce81959451c6927477d3d0e59b9f7671dc55f1dc70423060e4" + }, + { + "rel": "item", + "href": "./BH34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220e93b499ddd5150d455393bf87f7025737c310acb98464de2d146933a1362db21" + }, + { + "rel": "item", + "href": "./BH34_10000_0105.json", + "type": "application/json", + "file:checksum": "122080bf5f2dcf6a9a9216b47212963946d25647506a0c19fd6ed7d294bf7fc0de34" + }, + { + "rel": "item", + "href": "./BH34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220934dfd74ededdfedd47806151476250f840781911430ded6d09e4e7740f6b998" + }, + { + "rel": "item", + "href": "./BH34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220fcd76b5d43dd0b8fd675d1249c5a9cb6178f0ef7d6764c6863b896b94c389fde" + }, + { + "rel": "item", + "href": "./BH34_10000_0305.json", + "type": "application/json", + "file:checksum": "12205c50fe7703c91403e9a2198dd0e8e17fa162e608468d38acbc11f0edb32b19dd" + }, + { + "rel": "item", + "href": "./BH34_10000_0405.json", + "type": "application/json", + "file:checksum": "12207906de0a4cffa639714e6c6804a3bdf0d9bfe428b709b5716cd08e1af534976f" + }, + { + "rel": "item", + "href": "./BH34_10000_0505.json", + "type": "application/json", + "file:checksum": "12207c7717c0842fc5d33779aa05e7a3a7b4e32a4a55262713207de4e5a0177bf258" + }, + { + "rel": "item", + "href": "./BH35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220e8551f36197e8072d44185c62198b91d1d248c9b5997821ccc6166773642f694" + }, + { + "rel": "item", + "href": "./BH35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220eea010550e70eceeab502406127f1f4dd211fe826a26d87f129ad1a3ff3a0b83" + }, + { + "rel": "item", + "href": "./BH35_10000_0103.json", + "type": "application/json", + "file:checksum": "12204f2414da505fddb8e2719e8aa5c97c3e858f98a59e0dc43b603e2694729964d8" + }, + { + "rel": "item", + "href": "./BH35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220d68d548fb51dab844d5daaf577e7f975f189ae2cf1d2aacba937aa2bc623af48" + }, + { + "rel": "item", + "href": "./BH35_10000_0201.json", + "type": "application/json", + "file:checksum": "12201b21722ae554dd2197ee300ad84c5db3147f91518e1ee1f2f6556ee92d13c0c9" + }, + { + "rel": "item", + "href": "./BH35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220b4317b1f1cfa32c108dc6bfa60085a8998d3949d04d061168dfae3a99d68b45f" + }, + { + "rel": "item", + "href": "./BH35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220103a19471596425cf038d043fc845589745f3bc56cbefd2244669b7350503048" + }, + { + "rel": "item", + "href": "./BH35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220e033193ace3afaee449711d961383d6da5acbbe64f7f82eb587728f79b4bfb06" + }, + { + "rel": "item", + "href": "./BH35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220e0f8e0ff5de73838aefaf6e42d6287aa2b422288e2563b294c95a003688d6c93" + }, + { + "rel": "item", + "href": "./BH35_10000_0301.json", + "type": "application/json", + "file:checksum": "12204a0235555079a082555ce92a1d068c3e2a35d9fc572e7e7215a03a2954696169" + }, + { + "rel": "item", + "href": "./BH35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220451a69e2ffd7932a41b92a472129bc875e9fab19910bf6a5b5141c6ebe3d9766" + }, + { + "rel": "item", + "href": "./BH35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e2ed329b56e16a48ff3f081976cf72181f092773ca1c87255f8eca8b613fd058" + }, + { + "rel": "item", + "href": "./BH35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220d43d0a8ac72536b26cc339bc4fbed893e74b7536ee5d6c35989ecc19b5882e0c" + }, + { + "rel": "item", + "href": "./BH35_10000_0305.json", + "type": "application/json", + "file:checksum": "122072b9acb612866aaf8597f0ba0a87dc76c0f0b3ac9be19c65b6e5d330abaa623c" + }, + { + "rel": "item", + "href": "./BH35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220826485ad8383ee08476d94ba63d631996513841eacfde6547f884e20d85495ae" + }, + { + "rel": "item", + "href": "./BH35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220adc2ef77cffc62088b1df55587284dc43a176f5b6abba10241129b841e4854a4" + }, + { + "rel": "item", + "href": "./BH35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220c5768e15bb4e7e655126c32f0b7f567865371654e9d35c221931645138033787" + }, + { + "rel": "item", + "href": "./BH35_10000_0404.json", + "type": "application/json", + "file:checksum": "122089da449058ee875529698a744acd8701b20d2efa0498682bd7014e562957445a" + }, + { + "rel": "item", + "href": "./BH35_10000_0405.json", + "type": "application/json", + "file:checksum": "12206081a5b5824168b016d5b125c9e2bfc706b0665aaf8d8bc0d56752a43d1f7a7d" + }, + { + "rel": "item", + "href": "./BH35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220001eacd2b7629c18695a9e0c62ea8072407cc1569394d0d5509fc83c18a83a1b" + }, + { + "rel": "item", + "href": "./BH35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220f6ef26834add326aa524790ee37aea479527211a0696f95877231b58b0b9d5ca" + }, + { + "rel": "item", + "href": "./BH35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b91a47888e99b0a8bff5695c5a6b36aff6a40773cba74d6062cd479a0e58ec83" + }, + { + "rel": "item", + "href": "./BH35_10000_0504.json", + "type": "application/json", + "file:checksum": "122068d09db61d7cafe28c0fed688858c11af0d25646dd09b108f8a0120bdc310cd0" + }, + { + "rel": "item", + "href": "./BH35_10000_0505.json", + "type": "application/json", + "file:checksum": "122095076f2b25498b4b8d4ed344fd9887a242d9eb89d5f7c48716aab7d06ea011bb" + }, + { + "rel": "item", + "href": "./BH36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b9db188083137d06db47d8220fb8064d896dcc2a0514a41aae7763bbbea9fec4" + }, + { + "rel": "item", + "href": "./BH36_10000_0102.json", + "type": "application/json", + "file:checksum": "12203b310783a42db27947a12f88692d0f0be640567fb2222fb441c4ea5217b8ad58" + }, + { + "rel": "item", + "href": "./BH36_10000_0103.json", + "type": "application/json", + "file:checksum": "122080a966c7b29b2edae7176adcda168e9f8dcfb8ec4b70135c05822e7cb71b6169" + }, + { + "rel": "item", + "href": "./BH36_10000_0104.json", + "type": "application/json", + "file:checksum": "1220a38342b30933f760b3043e410984571ed121e80fd03c1e74280640a40393cc11" + }, + { + "rel": "item", + "href": "./BH36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220dc84683d75b7aa95e7572cd9a5943b1eb6a09652b743cf66477a847260c20f8e" + }, + { + "rel": "item", + "href": "./BH36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220140fc1148e1b0f02ef7399be2137fc2284ec39f2f7388bb7c06f189b32afc79b" + }, + { + "rel": "item", + "href": "./BH36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220f353850d21c0e7d03a01018fc7e4cd15c032c6174aa72ccaa9e6dfb59e252182" + }, + { + "rel": "item", + "href": "./BH36_10000_0203.json", + "type": "application/json", + "file:checksum": "12201628ccc48150d6f1e4204493450af277f2e2c69544bd5530f4ca7f095d4c8e59" + }, + { + "rel": "item", + "href": "./BH36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d6d865f1d97040a27b53720902a4c32c8d17d756cb0c8f836058b72b0fa317ee" + }, + { + "rel": "item", + "href": "./BH36_10000_0205.json", + "type": "application/json", + "file:checksum": "12204c0aa726226e1310de9b247a66ba48e733811561044a8ac55c3280a5185549df" + }, + { + "rel": "item", + "href": "./BH36_10000_0301.json", + "type": "application/json", + "file:checksum": "12209f20d0a044e5d99e30f564023c46196d5e3d71d4474ef40e559bf5dec44b9f7c" + }, + { + "rel": "item", + "href": "./BH36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c3795366c1054d2e207d9daa50ed6381c85b49a14185347e65c4385752fd13e4" + }, + { + "rel": "item", + "href": "./BH36_10000_0303.json", + "type": "application/json", + "file:checksum": "12205e0956e378acb1aee1b0fa52328a3fc29feec54939286f79b57863610b5d4bb1" + }, + { + "rel": "item", + "href": "./BH36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220598920986621c6bbf194eeeec82686710a3399498eadfea587f0dbc8810594ad" + }, + { + "rel": "item", + "href": "./BH36_10000_0305.json", + "type": "application/json", + "file:checksum": "1220b835cb95b1119627620acc783a8990dab5e9dffb32ef46b7e3a606fc5e8ee073" + }, + { + "rel": "item", + "href": "./BH36_10000_0401.json", + "type": "application/json", + "file:checksum": "12205a89188a6d8ce381982d2bad3132b73ed7e76d72a933c1bdfeb1fa2dd14b86cc" + }, + { + "rel": "item", + "href": "./BH36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220b50b461ef7b8a90a56b9f0c3e8c4262bbe319b1dee2dffc323ecd0fbae2f3b82" + }, + { + "rel": "item", + "href": "./BH36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220b886c569b5519fabceba87aa1a33c6eaad6f710bbe4d1b7ffcead75bc4bca13d" + }, + { + "rel": "item", + "href": "./BH36_10000_0404.json", + "type": "application/json", + "file:checksum": "122035363017a3c48266633561c8d24f85f59ef963f10a5f299c5c09f3bb6cc74001" + }, + { + "rel": "item", + "href": "./BH36_10000_0405.json", + "type": "application/json", + "file:checksum": "122053bb6ef1b2ecaada65d381ac77cd45f06140592f20024c4e591061ad7a567e07" + }, + { + "rel": "item", + "href": "./BH36_10000_0501.json", + "type": "application/json", + "file:checksum": "12205ebab1d17a794ec13d637c5cabadfff0ef7d0cdefe4be5b24672dc354b00c1e8" + }, + { + "rel": "item", + "href": "./BH36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220a5ec5356e38df8151017b6b7269f59a24c6a7233c0f9d0a9bcfdfc10d200f4ed" + }, + { + "rel": "item", + "href": "./BH36_10000_0503.json", + "type": "application/json", + "file:checksum": "1220a006c46d86c288482fce9ec02593e624aef77f00c000530d2293f9a4afca4715" + }, + { + "rel": "item", + "href": "./BH36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220e2ff41365b3093350f406cef2a07565c52d226074a47b41bdcd0cca014c70ff8" + }, + { + "rel": "item", + "href": "./BH36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220c2b7e36898a30df2aeede942ab83fbc7c8eeb3f7ec3a2efd4312b98d498e6daf" + }, + { + "rel": "item", + "href": "./BH37_10000_0101.json", + "type": "application/json", + "file:checksum": "1220bcc912186e3c9242174f86929cc44089cfb6d1d023742f050dea88a9396f52b3" + }, + { + "rel": "item", + "href": "./BH37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220a9e8cab9dd64784b9c4deec64e55b0c3497c6e1c35a55a9ac0db3bc087ccd2a4" + }, + { + "rel": "item", + "href": "./BH37_10000_0103.json", + "type": "application/json", + "file:checksum": "12205339aeda92032655551935db9dd9805a693da199a8ba182347025c0ca532c506" + }, + { + "rel": "item", + "href": "./BH37_10000_0104.json", + "type": "application/json", + "file:checksum": "1220430aa9107d7d051c62ebb6c0fabfc015a407b3a5db9201e7350374e8644b5ea6" + }, + { + "rel": "item", + "href": "./BH37_10000_0105.json", + "type": "application/json", + "file:checksum": "122055b776e45a4dbc99cdafbca5ddced43108262e48864e2d741bf1f41f32a049ea" + }, + { + "rel": "item", + "href": "./BH37_10000_0201.json", + "type": "application/json", + "file:checksum": "1220ab1550839e007498eabb0d1ef64752000981d806d7af3ca2d19a35a6cb9bb8af" + }, + { + "rel": "item", + "href": "./BH37_10000_0202.json", + "type": "application/json", + "file:checksum": "12202c73ca3ecd2607ccaea4742e4c5ac2797b51c674f79d538f3a9e328172e136d3" + }, + { + "rel": "item", + "href": "./BH37_10000_0203.json", + "type": "application/json", + "file:checksum": "12200121665e493067f7326e5be1144b4c971f7357c3216455d0b82eebbd65cc7df9" + }, + { + "rel": "item", + "href": "./BH37_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ef56f3415b8edc028ad1106b8d38c556942828248a5be998d825b5780caddf6c" + }, + { + "rel": "item", + "href": "./BH37_10000_0205.json", + "type": "application/json", + "file:checksum": "12207392f1f9480063b43ad4ddac33d489edf8ad33b4c81c8d9e82c301cbcb7646ac" + }, + { + "rel": "item", + "href": "./BH37_10000_0301.json", + "type": "application/json", + "file:checksum": "12201ca4fbbd1fadc9c80a1459a6084056abb0a572d6d3e1f0c7dacae698f40ad514" + }, + { + "rel": "item", + "href": "./BH37_10000_0302.json", + "type": "application/json", + "file:checksum": "122092c51855dffa3b3a9c66ec1a4b8b0628a0be46b69b767dbd31455a10c0811bc5" + }, + { + "rel": "item", + "href": "./BH37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c4bcc68dccf736dd9328a48553d010e556c9bfd8d0e19eb41f9a0adb26c62a7c" + }, + { + "rel": "item", + "href": "./BH37_10000_0304.json", + "type": "application/json", + "file:checksum": "12208ea78bf27e47719b0d7d348d7a89092cf212ee693a2cd7c017e8574ca42b9252" + }, + { + "rel": "item", + "href": "./BH37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220be53b4e6299e6a8c3262b79ac1803fc4a9a38dccfdad103bd79bc8733e5d6029" + }, + { + "rel": "item", + "href": "./BH37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220ba17db2789ce282a6765008a3ae2f70cbab534799139495dfcc261e554dfcd75" + }, + { + "rel": "item", + "href": "./BH37_10000_0402.json", + "type": "application/json", + "file:checksum": "122050018b92cf71e632e707f3551174a7d61caabc3d8e68015122cf8381a74fb4cc" + }, + { + "rel": "item", + "href": "./BH37_10000_0403.json", + "type": "application/json", + "file:checksum": "1220dcc2da5c6826d8420c21462be74102e52d2433be08cc7553a506f830ab8f4272" + }, + { + "rel": "item", + "href": "./BH37_10000_0404.json", + "type": "application/json", + "file:checksum": "12208077c93cf5fa532bd34f24fd388073160d6e3672c56a49be8131ad31ce8c02fc" + }, + { + "rel": "item", + "href": "./BH37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220751f4a4e4b878f35c49abab88b60095ff31cdb698ffc43d0bbd813ba31007286" + }, + { + "rel": "item", + "href": "./BH37_10000_0501.json", + "type": "application/json", + "file:checksum": "12200d5f0e0931da833079384e89a17903c07392ce3a99af0c82c6b7d1b491749f13" + }, + { + "rel": "item", + "href": "./BH37_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fa621009ecde08ae08b114f81ecbc4f2e9eacce0c4415d2132f24fe32db1e7d7" + }, + { + "rel": "item", + "href": "./BH37_10000_0503.json", + "type": "application/json", + "file:checksum": "12209f866200250ad336b04c497bd13039998907d0581924b83dd7d6dfa06df16887" + }, + { + "rel": "item", + "href": "./BH37_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c22be791ede969cf480d6448c2e5c550398576bc17704f3d62aeb2768d9f5f6a" + }, + { + "rel": "item", + "href": "./BH37_10000_0505.json", + "type": "application/json", + "file:checksum": "122017985a2ad93125a897c26596b59d75f198339b4fe6b687d33ead9a0c0f1ddb4d" + }, + { + "rel": "item", + "href": "./BH38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220828425d80d7078ed5f108b5a9722a2aebe2f57b1145590d0fe6da732c7040eca" + }, + { + "rel": "item", + "href": "./BH38_10000_0102.json", + "type": "application/json", + "file:checksum": "1220613e8a4a1148223be7248003324bff4612e2863d78fb31b41c0caed0a6ce8cb1" + }, + { + "rel": "item", + "href": "./BH38_10000_0103.json", + "type": "application/json", + "file:checksum": "1220b84b3fb90e02e66f023e1aad1048badfb4cd2bf1dcd11fd8dfe40dc7099eb143" + }, + { + "rel": "item", + "href": "./BH38_10000_0104.json", + "type": "application/json", + "file:checksum": "1220d9a3a037f472214d2e3587f734c394b5cc5030b9dd0ec87f8e94181cfc3e6d4d" + }, + { + "rel": "item", + "href": "./BH38_10000_0105.json", + "type": "application/json", + "file:checksum": "12208bb4eb7d04a0ea7afbe18fd77569922045ec60d55e7d6db1ee94243ef9943325" + }, + { + "rel": "item", + "href": "./BH38_10000_0201.json", + "type": "application/json", + "file:checksum": "122026c46b5bec84342adecc2b29003a6148c5b6ecdaca6ccf842110b9553cccf1af" + }, + { + "rel": "item", + "href": "./BH38_10000_0202.json", + "type": "application/json", + "file:checksum": "12205464a31346474ef4f3abbaadf1fbf98c541c7222aeebaffa292d883899509b12" + }, + { + "rel": "item", + "href": "./BH38_10000_0203.json", + "type": "application/json", + "file:checksum": "122054d8f5eed3f846558281a534c0edaf58c22777e7a3d60a9b713c7c06ccd6e072" + }, + { + "rel": "item", + "href": "./BH38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220740cf50c90710d38b4b6777b11e8f88842ebbdcbc4438160ccf5603b82728609" + }, + { + "rel": "item", + "href": "./BH38_10000_0301.json", + "type": "application/json", + "file:checksum": "1220397e4a45ecb501cae9af0b4a05bec97f75caa029583cccbee3f01fe5d9e3a5d3" + }, + { + "rel": "item", + "href": "./BH38_10000_0302.json", + "type": "application/json", + "file:checksum": "1220551f97072cad91e4e0e2128043a8d08dd6e8bd07fcac3e7821f3e48c5d435d0f" + }, + { + "rel": "item", + "href": "./BH38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f8204a8753f083a381daaca63916f8669fd71643fd6ad8206932212daf3093f8" + }, + { + "rel": "item", + "href": "./BJ34_10000_0104.json", + "type": "application/json", + "file:checksum": "12205c7177a5b37b767f9eed14351a585d5e5d408febbbeaa32406262ad07a0001aa" + }, + { + "rel": "item", + "href": "./BJ34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220cb9d9c5475d7be77b461f69f5ea6a403fbcef7f8c4f7e4c09f3a8e36682162a0" + }, + { + "rel": "item", + "href": "./BJ34_10000_0204.json", + "type": "application/json", + "file:checksum": "122083a33d1377a792dafc704ca3a08590f5ff13a176a78956ece7016657d9a94477" + }, + { + "rel": "item", + "href": "./BJ34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220955c14ec8cd9329709a8a995c3e6f745e81c4122e655e5d851bfcecbe863a92f" + }, + { + "rel": "item", + "href": "./BJ35_10000_0101.json", + "type": "application/json", + "file:checksum": "122094e25113ee7f592ef43b466db687b7d0db6283487a50202464a0e0e1b3164773" + }, + { + "rel": "item", + "href": "./BJ35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b85c7892a512d88407102ec4e3e4e64f61e278b1466b79584810b746a470ab73" + }, + { + "rel": "item", + "href": "./BJ35_10000_0103.json", + "type": "application/json", + "file:checksum": "12200d77eaefb31360b76ecdcc0b81ebc00cff31e63860ea779c52e617c5977b2c41" + }, + { + "rel": "item", + "href": "./BJ35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220977b0ab581f565da9603558c1a9ee709feb57a4b3ba07c52e1475edb41db236d" + }, + { + "rel": "item", + "href": "./BJ35_10000_0105.json", + "type": "application/json", + "file:checksum": "122038419dc7e1c2a6e647877e8079f3a5d6127ca570148a7b4f278e2ccb003558a1" + }, + { + "rel": "item", + "href": "./BJ35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220071612fceaa25a2affbbf4b616cc84ed05f1d71e3cea20eaf813bf8d44a3acfe" + }, + { + "rel": "item", + "href": "./BJ35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220f3424138d03758b360ef9c9fb066b65cb36d64ec8eec5d651f71c8af78225133" + }, + { + "rel": "item", + "href": "./BJ35_10000_0203.json", + "type": "application/json", + "file:checksum": "12205415776179dacbf9642338446f33fbfc33829f6846048d8e8e7ca78d93c7c0de" + }, + { + "rel": "item", + "href": "./BJ35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220fdb9fb9407f3bc9467f62c79c669712b066b4e085d468af06d5a7c61657d805e" + }, + { + "rel": "item", + "href": "./BJ35_10000_0205.json", + "type": "application/json", + "file:checksum": "12200083368ead999d67d3b71463d440dab477a2e8d000fdb09ea41f4a8bf70475f7" + }, + { + "rel": "item", + "href": "./BJ36_10000_0101.json", + "type": "application/json", + "file:checksum": "12208c9b0b2bdd29ae851ae361d7a802a37456943d0143276d47611628dfea426c02" + } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "created": "2024-07-04T02:38:50Z", + "updated": "2024-07-04T02:38:50Z", + "extent": { + "spatial": { "bbox": [[174.5702773, -39.329461, 176.7362937, -36.4037416]] }, + "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fe02d6de97d1b29b7148d9156ac980ee47a5eac56d1110992e93bffa1dc279ff", + "file:size": 67405 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/waikato_2021/dsm_1m/2193/collection.json b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..96bf9d0b --- /dev/null +++ b/stac/waikato/waikato_2021/dsm_1m/2193/collection.json @@ -0,0 +1,5280 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRHJSHZQ4Y13GN626FHJ36Z", + "title": "Waikato LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Waikato region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "rel": "item", + "href": "./AZ34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220b9a4092dd8d9e1507e76c34a9493af32d679332287e05e4d127381d66a74104a" + }, + { + "rel": "item", + "href": "./AZ34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220f6b58cfd52b8f525ffe34883efe87bceb5c168d10127f81582ce0f3b493f46f7" + }, + { + "rel": "item", + "href": "./AZ34_10000_0401.json", + "type": "application/json", + "file:checksum": "12209d7470523eed9ae8e4a5074b88dad82cd6a835cc8d013855ae1e8a3e054f82f3" + }, + { + "rel": "item", + "href": "./AZ34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220e8c1a159c6217f065261a21276e0f5a07f99e488185ece6555d2c992b51bcfad" + }, + { + "rel": "item", + "href": "./AZ34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f9ee49a84c97e089e39c51dee3b1db4125ade93cd13723cc1eb1ebaff0667875" + }, + { + "rel": "item", + "href": "./AZ34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220e8cf51c28d9bfc2d56337827056bc7bb27a085089658b04edfd292990ee699f8" + }, + { + "rel": "item", + "href": "./AZ34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220b15142de51920007bca82e5eff9f44d44e0bc87fa9f91b7ffc61ca0863e7a7f8" + }, + { + "rel": "item", + "href": "./AZ34_10000_0502.json", + "type": "application/json", + "file:checksum": "122011374ac92d9b41a65f13a03300f9e916f322313207c48b122968f8ce94259d3d" + }, + { + "rel": "item", + "href": "./AZ34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220a5aed24e3133da0852dd26c354219c1f1fcc224d19da01569741875a5e3a2cc4" + }, + { + "rel": "item", + "href": "./AZ34_10000_0504.json", + "type": "application/json", + "file:checksum": "122063a09de4dcf8c6f066dea73ac9c6a563dc42f0844a1b05c0a5ee8cce8cd76a42" + }, + { + "rel": "item", + "href": "./AZ34_10000_0505.json", + "type": "application/json", + "file:checksum": "122033ee21d5eead700246113f1375bfd24043cb8522086e553163e103f86ec08f8d" + }, + { + "rel": "item", + "href": "./AZ35_10000_0305.json", + "type": "application/json", + "file:checksum": "12201fed7e62118fba124e3a72dc7809667ebf16ce880b129cef275d202044d5e1f7" + }, + { + "rel": "item", + "href": "./AZ35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e1c601f4c8f896c28d9a85fe9edb1d5b92f843efaadb6e0d6b387d54809fc2bb" + }, + { + "rel": "item", + "href": "./AZ35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220a0c13332740bbbde5a3d22bd347637a5df71dbc08f4b20bd9ae7cbf7734ff0f9" + }, + { + "rel": "item", + "href": "./AZ35_10000_0505.json", + "type": "application/json", + "file:checksum": "122062669384da13414fdaa397a1b74b5e0128410a1630c531556343bf5dbcea7d10" + }, + { + "rel": "item", + "href": "./BA34_10000_0102.json", + "type": "application/json", + "file:checksum": "122015a34b9055aecc395ff0e38cda114a8367f28cf223d043073f560fd6171c425f" + }, + { + "rel": "item", + "href": "./BA34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220c2d23239eb19b3297cfd6fbe8421ff6657eb133256ac751bfa0d9e2ae78e64c5" + }, + { + "rel": "item", + "href": "./BA34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ad89ee2196169c1f06038b681ab2a5b840da249aefeaec11055f21fd21b7718a" + }, + { + "rel": "item", + "href": "./BA34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220dffa391f16c724821259453faa554611f8cd8cef30892569fdeafb8989ab3a5e" + }, + { + "rel": "item", + "href": "./BA34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220e242e5eaad94d765ad4b49986dfcd2b00f9d4c8a536287d79f4722f782fcdeaf" + }, + { + "rel": "item", + "href": "./BA34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d7712a88710f27637da5c607fa4b65f47b09732480faff989d889e54bf5432a6" + }, + { + "rel": "item", + "href": "./BA34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220860e2786dce18599a68d2eabaf103c4be52f25443fc3fad3f574dcc2d4f4c6a8" + }, + { + "rel": "item", + "href": "./BA34_10000_0205.json", + "type": "application/json", + "file:checksum": "12206dd253f087f436364c8c7279745094b9d6fe66ebfc75fdff0a1246bf7fde786d" + }, + { + "rel": "item", + "href": "./BA34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220cf9c837dcf65403056c0240852c3433a16dabc54970b5c94cc76fe83adf09257" + }, + { + "rel": "item", + "href": "./BA34_10000_0303.json", + "type": "application/json", + "file:checksum": "12209baa5341378cf3c75d41f1c392a9173ac0932f1a11257a7453b3b555d9a5b02c" + }, + { + "rel": "item", + "href": "./BA34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a5f7dec068e4b954eca6f542177910c9b3120516e7c17997d76e0929f4a3da84" + }, + { + "rel": "item", + "href": "./BA34_10000_0305.json", + "type": "application/json", + "file:checksum": "12200423a20db3c2828403ce4a33f09a8c4225f6f2a4d6109ac877b48dfecf025b7b" + }, + { + "rel": "item", + "href": "./BA34_10000_0403.json", + "type": "application/json", + "file:checksum": "12200d3e9705162056b95b9bc69140717ebc1ba79a0b69f3ad9ca507a0870d217b1d" + }, + { + "rel": "item", + "href": "./BA34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a6bb5dd4a30c27a60b02a52e295463d423ec73eeb6bb402a6f3a7e93f2776b9c" + }, + { + "rel": "item", + "href": "./BA34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220445677eb64a57529544359ca947424df3da5cf106ba4862d7f6b4b6587f85963" + }, + { + "rel": "item", + "href": "./BA34_10000_0503.json", + "type": "application/json", + "file:checksum": "1220f95556cc0869e59f26a0cb39fbeb83110f59bcb9b354c412692be7c9327f6f90" + }, + { + "rel": "item", + "href": "./BA34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220f1ed09d212e416e5e265ec94c599b1902e90ab7f1cdd7f0bd98f86725ce68b91" + }, + { + "rel": "item", + "href": "./BA34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220082efd650bbf84235efc86c04c7ebe8ad9d2aa0e5a4ba2ffb08a5ed1216abaff" + }, + { + "rel": "item", + "href": "./BA35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220351b23a9983b0a1a4d4c21d6e862119a7c983a50c4051775e9aaece42e4c3359" + }, + { + "rel": "item", + "href": "./BA35_10000_0104.json", + "type": "application/json", + "file:checksum": "12206ba2ebdd61102784e9c81d3bc3cf40689d140cbace736e56580b2a5fe6a0c187" + }, + { + "rel": "item", + "href": "./BA35_10000_0105.json", + "type": "application/json", + "file:checksum": "122079cb0177485cf32a522de694bc3f24882523cf5285ebcb5cb41d7e726890a133" + }, + { + "rel": "item", + "href": "./BA35_10000_0201.json", + "type": "application/json", + "file:checksum": "122073e5a7616b5f5f3a1dced9c745ee920b3ec0ba8ab4f39127251257a151b6ebe2" + }, + { + "rel": "item", + "href": "./BA35_10000_0202.json", + "type": "application/json", + "file:checksum": "12203a7e90ad37dadc2137f42257ab62edea52f5b18941b601bf49534870eab34f8e" + }, + { + "rel": "item", + "href": "./BA35_10000_0203.json", + "type": "application/json", + "file:checksum": "12208ef8eb0dad6b34e49cf6ab2f55dfffd05099c1dc42e7bcb48ff4826460feb41f" + }, + { + "rel": "item", + "href": "./BA35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220a00852147d8d06b340fda5b2991ffb8d5e464de3c5aa16481884a45d1497d3ca" + }, + { + "rel": "item", + "href": "./BA35_10000_0205.json", + "type": "application/json", + "file:checksum": "122060daed8c9d07e36f1236c75ce1ea4cc0d1dc5200ab4801cf2502486022c8d1bd" + }, + { + "rel": "item", + "href": "./BA35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220bc8cf76dc7f3d487aab4ddc196142ad17fd0851f01484184037cff2ff70369aa" + }, + { + "rel": "item", + "href": "./BA35_10000_0302.json", + "type": "application/json", + "file:checksum": "12205638b7c73d2afcc3cc4d82bd943d6bba93526cbf19e27fa520910ce7f9456d06" + }, + { + "rel": "item", + "href": "./BA35_10000_0303.json", + "type": "application/json", + "file:checksum": "12209dc38b2994f47739cb4d14134bdc9dc5db5e9e117ba6260e54019924cc2339fa" + }, + { + "rel": "item", + "href": "./BA35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ac2650f5f52418cfd20fda9cc46129464b918ff38805989ffac20c2869b0b72c" + }, + { + "rel": "item", + "href": "./BA35_10000_0305.json", + "type": "application/json", + "file:checksum": "122054ef8cac9b271e9276f200dc6c0d77bf653eac1dc9921242e0f86a0a445c138a" + }, + { + "rel": "item", + "href": "./BA35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220339e59e16be388663f217156a72aac88217b529e2350fefc5d0d435673440ac0" + }, + { + "rel": "item", + "href": "./BA35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220d7806faaeef878f5ba2e0ac5b139bc167149882ca8c06bb22bb3148309926ce0" + }, + { + "rel": "item", + "href": "./BA35_10000_0403.json", + "type": "application/json", + "file:checksum": "122018d07bc754aebd4692c9e750cbf4da502a7884dee04be939fe20cf0691ba80ca" + }, + { + "rel": "item", + "href": "./BA35_10000_0404.json", + "type": "application/json", + "file:checksum": "12203116b33c005ee836289efba22481d9c2bd9a3fbd5cb20aaccfa11f2841ef46e9" + }, + { + "rel": "item", + "href": "./BA35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220c5ee3e39d8d384e6caa08fdb810d91ecf418f6f1908fce802c17dd34b8226ecc" + }, + { + "rel": "item", + "href": "./BA35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220668825094fc5fa4e32b7e416cec257ed0444491f05300953bf429bd0ca93d86e" + }, + { + "rel": "item", + "href": "./BA35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220cf948f75e00f76a2ed7c9c0b7dce55ab3010e50f2e1abcaa54328fb1d40e1859" + }, + { + "rel": "item", + "href": "./BA35_10000_0503.json", + "type": "application/json", + "file:checksum": "12204318234ad39f47aa17b4f0f5f580d714d4d4d104a0dd7484a4d69d1dfe1554dc" + }, + { + "rel": "item", + "href": "./BA35_10000_0504.json", + "type": "application/json", + "file:checksum": "12200386c2047e80cc01fa0384696213aa8e3f1b363064cd56d082fc18868979ba31" + }, + { + "rel": "item", + "href": "./BA35_10000_0505.json", + "type": "application/json", + "file:checksum": "12201f487996dc1261abd1c42d4a61f847ccc4fc6e9b16f0a13b040fef01ad6f2bf8" + }, + { + "rel": "item", + "href": "./BA36_10000_0101.json", + "type": "application/json", + "file:checksum": "12204d195433f32b12097cd4e686d546ed9954490d1e3a2a697df0a7ae663c5729be" + }, + { + "rel": "item", + "href": "./BA36_10000_0102.json", + "type": "application/json", + "file:checksum": "122021d794098fa83d5ad906828e2800dfd2f9b5346ec2c907f141581645c3fc4453" + }, + { + "rel": "item", + "href": "./BA36_10000_0103.json", + "type": "application/json", + "file:checksum": "1220cc6827ac3d6afc5a7b0f00ae6cd0e733bdf147697c05dee3cd6b0be60f8c7124" + }, + { + "rel": "item", + "href": "./BA36_10000_0201.json", + "type": "application/json", + "file:checksum": "122005380f2251e3bfd7785deb30756ed114c9a4cf193fda1f9e1e41b4bf25ce3d66" + }, + { + "rel": "item", + "href": "./BA36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220a575a841be0fc3d203f930ea95d0b86506b55b5feaf734fc19b7dcd70573c09f" + }, + { + "rel": "item", + "href": "./BA36_10000_0301.json", + "type": "application/json", + "file:checksum": "12202e387c979fbb4ce6e619a89584906fbc9ac503fca9faaeefdc174e0ada55deca" + }, + { + "rel": "item", + "href": "./BA36_10000_0302.json", + "type": "application/json", + "file:checksum": "122007ed3ba79c3cb3fb350a43037b05b68b85e319d028e325914a3fd0a5da7d63f6" + }, + { + "rel": "item", + "href": "./BA36_10000_0401.json", + "type": "application/json", + "file:checksum": "12205fd6040ede8a8bff5f1ff0c48be44a7118c1c71bc1c42a5479ce3b27c993de07" + }, + { + "rel": "item", + "href": "./BA36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220da8219c7825bbd24bdd316c77705f4e754f214363ab5c8656dfd64672acea30d" + }, + { + "rel": "item", + "href": "./BA36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b7cafb4ed54e3794a04f36eea00217ce01f3b489802df24cc63a7a4ad1c7b987" + }, + { + "rel": "item", + "href": "./BB31_10000_0505.json", + "type": "application/json", + "file:checksum": "122038cb7c7466ef081df790ebb0f1de2ce0426d2c693f6e4496ade7482a6f91bd75" + }, + { + "rel": "item", + "href": "./BB32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cd1b473327c242d8fbd31a59a9d576d876c255a3c52ddcf4c6166a72d9f7fa81" + }, + { + "rel": "item", + "href": "./BB32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220460082914dd41e34da421556734e8986b323d16ec4866ebec8b3e7b6bfcaf7fe" + }, + { + "rel": "item", + "href": "./BB32_10000_0503.json", + "type": "application/json", + "file:checksum": "12204f5d9666b2fba3739d185d7d7f6b4412cef5eaf19c3007b8dfea23501d8331a3" + }, + { + "rel": "item", + "href": "./BB32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220b21ee1cffb2b9b0cbf5cce92af1c240746d0953e02552d43c1aafedad1c51a74" + }, + { + "rel": "item", + "href": "./BB32_10000_0505.json", + "type": "application/json", + "file:checksum": "12204281798b384b286982b5b1a2e36bf5058b5d0a06d4d6e557b700883f232da647" + }, + { + "rel": "item", + "href": "./BB33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220b7c2b68790e09fadbf9c274c21d2f37929330cb729de428311608f0a96ce51e0" + }, + { + "rel": "item", + "href": "./BB33_10000_0305.json", + "type": "application/json", + "file:checksum": "12205334558e4a8f23f8a26588c549b56b0ab13010fa14a0fd48df1940573b88c5db" + }, + { + "rel": "item", + "href": "./BB33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220a9b3eee28534c3b1ffe92cc4c7ee9594e97f8ea5768c43bc5221e66c8caf08f3" + }, + { + "rel": "item", + "href": "./BB33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ad6d8840ad07b0c4de8ed5900076bb98d93f24f8f74aebabe5d68855f6efdb2d" + }, + { + "rel": "item", + "href": "./BB33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220426cf017845b052f00c27c65e4749945b4c25c25564f9b337ad88a8cd950f246" + }, + { + "rel": "item", + "href": "./BB33_10000_0404.json", + "type": "application/json", + "file:checksum": "12201d7283c79750b02a50c8b6d8c215cc8222e67ba4f689d9855e204a76573795cc" + }, + { + "rel": "item", + "href": "./BB33_10000_0405.json", + "type": "application/json", + "file:checksum": "122068a7692f2e86eddfcea2d0161a63ef992d153abc3ae52bc889f98059adbe756d" + }, + { + "rel": "item", + "href": "./BB33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220ae487d94517ac2378e41d53476ef279dffc217951f6e3d8f4c363bb42c621699" + }, + { + "rel": "item", + "href": "./BB33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220782d36c4e46dc4c629d791433f37509236754581a9fa4b0beccf1b134ea0d3e3" + }, + { + "rel": "item", + "href": "./BB33_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d1664310fe60cb84118dfce7487fd2ce27f9d016c5903c7c6961d5075c858f4f" + }, + { + "rel": "item", + "href": "./BB33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220e20e705f6394a4e28cc69ea0292392f9471ad3d2cd9e62eb7323b2c7d0e30d97" + }, + { + "rel": "item", + "href": "./BB33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e8b3a71b450991bf3c379239cfb86817d30c6f861f71dbfae270f1eaf67ee03f" + }, + { + "rel": "item", + "href": "./BB34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ae89038faf22d965d1c34cd775d34f646423e47fe39442a52df6788838619ca5" + }, + { + "rel": "item", + "href": "./BB34_10000_0105.json", + "type": "application/json", + "file:checksum": "12204a26ad3fab415dd1dcecb46807ab8d8cc3800176d0a5bac2bf57b0780318994d" + }, + { + "rel": "item", + "href": "./BB34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d4326661a564f8cf3e6c2cb9e21bb0df04ff3b514095100f330a762f67bdd6f0" + }, + { + "rel": "item", + "href": "./BB34_10000_0205.json", + "type": "application/json", + "file:checksum": "12201178db1f03b258e4fa935ec7fa4311835db9c64a34f7e81d96622592e0caf51e" + }, + { + "rel": "item", + "href": "./BB34_10000_0301.json", + "type": "application/json", + "file:checksum": "122078ff8c026a9dab30ecfb609398a888c67fb35388ffd772d952c7ad761bd6da64" + }, + { + "rel": "item", + "href": "./BB34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220600ee2b957f9e9c080cf1aab18378e657df22cb07e30e9eba802d2726b862c06" + }, + { + "rel": "item", + "href": "./BB34_10000_0401.json", + "type": "application/json", + "file:checksum": "122029215f8e7ff9ca7ba7babffb10937517d9a43db3059788a33abb60776d1014dc" + }, + { + "rel": "item", + "href": "./BB34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220a0a1c777587a5dc00800fecc8338ff07e8e92681d345c8b03f9ef1a2f9651a7f" + }, + { + "rel": "item", + "href": "./BB34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220008fc1d4ad836931a1b1b05f010e7d7dc9d31fcbcbe9b7c1e7006617dbc8c598" + }, + { + "rel": "item", + "href": "./BB34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220005444d0c98a9f23d63b1ac568f4df2494033665663f46bfa84c6b71a9919f7c" + }, + { + "rel": "item", + "href": "./BB34_10000_0501.json", + "type": "application/json", + "file:checksum": "12207f452de5722c1a6138ac8cd353dfeb649dcbcb1130c3fe4ed5b12e4ca414e34f" + }, + { + "rel": "item", + "href": "./BB34_10000_0502.json", + "type": "application/json", + "file:checksum": "1220c13c20ce93889415c84572fed47192a3f003aafe9e093ef4626c4e8e6b5911e6" + }, + { + "rel": "item", + "href": "./BB34_10000_0503.json", + "type": "application/json", + "file:checksum": "122054b601e14fce196d6fb393238ed2872a8866c566192d87819161eb7a7ea71aee" + }, + { + "rel": "item", + "href": "./BB34_10000_0504.json", + "type": "application/json", + "file:checksum": "12200413f3d5008000c69cb2d19ee9065773d920e283e18f1ae34b1741045ad4e7de" + }, + { + "rel": "item", + "href": "./BB34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e31ec49ae5444e408b387f3d11acba538b94841d18b52333db72e0c6cda748d2" + }, + { + "rel": "item", + "href": "./BB35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220719a4bd471edcbb96e2eb46d76bd096bff7a282b5750199d463232f23211a623" + }, + { + "rel": "item", + "href": "./BB35_10000_0102.json", + "type": "application/json", + "file:checksum": "122090fad7cd2a7926d1a4876460b4f4977771290408a2edd81cf908c79872bae3a1" + }, + { + "rel": "item", + "href": "./BB35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220cf1af68996e55d0cdf053a4f27dcf4636aa5e50f1e7f40fbc8f8ff089501bc43" + }, + { + "rel": "item", + "href": "./BB35_10000_0104.json", + "type": "application/json", + "file:checksum": "122013b4e9ed03ea7207992aa3a2364d0874b55be094f41e2d386526baad7308e63b" + }, + { + "rel": "item", + "href": "./BB35_10000_0105.json", + "type": "application/json", + "file:checksum": "122030549178c2abdba1fb321a8f33b04ea177bd4a857c1d3920165d455f8d69c1c4" + }, + { + "rel": "item", + "href": "./BB35_10000_0201.json", + "type": "application/json", + "file:checksum": "12206016c3742972c34292b3c6a33afb7b59c83eaa1e30ba863cda7daae369240823" + }, + { + "rel": "item", + "href": "./BB35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220e0ceab2542b9cf5aa11afd2250490d887e2293177edb7054ad257863eee7e4a4" + }, + { + "rel": "item", + "href": "./BB35_10000_0203.json", + "type": "application/json", + "file:checksum": "12205ca9304ff9cafcbd1335d267bbea406532d4796bbe4d0a0b982c1562999e8087" + }, + { + "rel": "item", + "href": "./BB35_10000_0204.json", + "type": "application/json", + "file:checksum": "12207be8ba063122a5a1e2f7bee798ae674f50353cef40f5c7bfca979ee6703719bf" + }, + { + "rel": "item", + "href": "./BB35_10000_0205.json", + "type": "application/json", + "file:checksum": "12202cc4a77c5d43989114ccb72b0749c1c095199b21bf651bc28aacd4934773c11b" + }, + { + "rel": "item", + "href": "./BB35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220d08456ef710483697ef58c44620852a5bd9150f603b9065d1c413e07402ae527" + }, + { + "rel": "item", + "href": "./BB35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c3f683dbc0faf9a1720690b17afd12eee5447563c6fb1a70604a7904a64a4315" + }, + { + "rel": "item", + "href": "./BB35_10000_0303.json", + "type": "application/json", + "file:checksum": "12204d872ba00115f387427d79ac42f8013a2f21afb66ee008431bf820ae2fa6352e" + }, + { + "rel": "item", + "href": "./BB35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220eb0281f9d4da9b7f7c4f76d4eed545c09d6f79033d607c0e319abf30e70eeb43" + }, + { + "rel": "item", + "href": "./BB35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220731b40a8fdb7fc8b72811a99d76f75eb1adba54dcafa429424ff1e26260dca62" + }, + { + "rel": "item", + "href": "./BB35_10000_0401.json", + "type": "application/json", + "file:checksum": "122062a0cd520ea6b5b7fad83d5f32605e9b17026d6cf60ef4499006f06309556621" + }, + { + "rel": "item", + "href": "./BB35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ae1316425e84bb2ab44836119d2273210e0b36542270a17359c9c99054615277" + }, + { + "rel": "item", + "href": "./BB35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ac860701c7defb9bd0e231b2901edb77403b069302b5d9d5ef6443317048052b" + }, + { + "rel": "item", + "href": "./BB35_10000_0404.json", + "type": "application/json", + "file:checksum": "122085fff6f1bb2b8dbef04fe29328ebaac1595123b854e781751d1998d63cce2f9c" + }, + { + "rel": "item", + "href": "./BB35_10000_0405.json", + "type": "application/json", + "file:checksum": "12206f8d9f7e34c7bac64c8a601e64719e5fc4b16b27367c69700d6eb091048b9ed2" + }, + { + "rel": "item", + "href": "./BB35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220fe9451e679ebfc84574189067778cc59533868e5206d7bf3958aba983f224fc6" + }, + { + "rel": "item", + "href": "./BB35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220d133adc1d00282b7b7c3258655604701cde939e6304af5d9db125e5bb727bf2f" + }, + { + "rel": "item", + "href": "./BB35_10000_0503.json", + "type": "application/json", + "file:checksum": "12207af43f0efaa590240f6ffab7d1fc872c8f2188aa548822c44a53677a07d48c47" + }, + { + "rel": "item", + "href": "./BB35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220f9dec26f13c8a64f585c9b040cfe961dcded321f097ff3f4a452582b4a072c91" + }, + { + "rel": "item", + "href": "./BB35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220292cc5fc28ce38533564bb216139817e667e5f3dd8b214c57973e290a279c038" + }, + { + "rel": "item", + "href": "./BB36_10000_0101.json", + "type": "application/json", + "file:checksum": "12209e65cbc398a2269c0ca8c024d840ff3a0eea38795880c424fe4727970174cd38" + }, + { + "rel": "item", + "href": "./BB36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c862e3c05c6799198964d00bc06f6e9164b16cd26eb6c27c8c9c8d931f1ae308" + }, + { + "rel": "item", + "href": "./BB36_10000_0201.json", + "type": "application/json", + "file:checksum": "12209d5213116040a7ad2ad66e617c5f2fb66729a8a8924398140118955a4f2aeaf9" + }, + { + "rel": "item", + "href": "./BB36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220d0371a5e5ea78cecfe666fcb912f9c2bad5f25e43ae81954c66f81bb78f26b13" + }, + { + "rel": "item", + "href": "./BB36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220021b54a87a2231c2e62d4a7a91f8ed70301ead4a52928e8cdeafdcd77efe13cd" + }, + { + "rel": "item", + "href": "./BB36_10000_0301.json", + "type": "application/json", + "file:checksum": "122051143aaff8be9d3d67d067094e8fd714f917840ab903dc2aafb177ff760cc8b1" + }, + { + "rel": "item", + "href": "./BB36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220d93a487b53ae8d5bab4e3db2869011c86ef2cb6059d6d25c7dba88e802077326" + }, + { + "rel": "item", + "href": "./BB36_10000_0303.json", + "type": "application/json", + "file:checksum": "12209c16a7e6839fc6f1a28999a9fbc696341f0098e1ad6e457c1dc7014a9cb7c449" + }, + { + "rel": "item", + "href": "./BB36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220795d748131325d53728efb0d729afc4ca741f5c1a7207326f4470872c0a250c8" + }, + { + "rel": "item", + "href": "./BB36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220894dc2e4a9045d7c3a98dfde7df9c859828d9ad1237f6b58f6f6a4016ab1e0d1" + }, + { + "rel": "item", + "href": "./BB36_10000_0501.json", + "type": "application/json", + "file:checksum": "12207d2e5f521d924d7792dc7992813cfbb4509d19cf7a80edd1a83357e18f3499e9" + }, + { + "rel": "item", + "href": "./BB36_10000_0502.json", + "type": "application/json", + "file:checksum": "122016dfd72de807a88ef304f44fd79d5af91dedcdfa8a40287698566168d731be82" + }, + { + "rel": "item", + "href": "./BB37_10000_0101.json", + "type": "application/json", + "file:checksum": "122041edb474ea0cd6946f397be3f1b4a77010b66f217badebfc907fb7fd1c620d40" + }, + { + "rel": "item", + "href": "./BC31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b8774598e80fc6395e0e4dbf68baeea99fda3bcf8c866517e12265f513cf36c9" + }, + { + "rel": "item", + "href": "./BC31_10000_0105.json", + "type": "application/json", + "file:checksum": "122061cbd7a5d6c85cb59a126cc4ef3c2dc8e7c804cbd1fbb0e4a3285a96aecca061" + }, + { + "rel": "item", + "href": "./BC31_10000_0204.json", + "type": "application/json", + "file:checksum": "12207df4a3b61017b3ce731143c503e90e5604007f8c767ff1e84867cb68b6bc8a09" + }, + { + "rel": "item", + "href": "./BC31_10000_0205.json", + "type": "application/json", + "file:checksum": "122004d85497898e13653737161b473a3cbf4af5c9eeddf7d75d086eef85847354b9" + }, + { + "rel": "item", + "href": "./BC31_10000_0304.json", + "type": "application/json", + "file:checksum": "122085889abb877be24124856fb2235567087e30717845f6746a8d398e3c7ee357ff" + }, + { + "rel": "item", + "href": "./BC31_10000_0305.json", + "type": "application/json", + "file:checksum": "122092574410896ae5f92900eabcb9e53900ccdea4d7611827519378915904bd6139" + }, + { + "rel": "item", + "href": "./BC31_10000_0405.json", + "type": "application/json", + "file:checksum": "122001d8767c43c75e4f503b353c7f0d14f084de4e2261023ecae00b5787536e2b79" + }, + { + "rel": "item", + "href": "./BC31_10000_0505.json", + "type": "application/json", + "file:checksum": "122070216e9aa6d8b667a14139ad673f319644a5b89c1d7e8afa960ee0d8bac5fe62" + }, + { + "rel": "item", + "href": "./BC32_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b57bea95fdef4d42f545ab1ddb41b0d9dda8a76c5c9807f4e1738aaeea9ccb3b" + }, + { + "rel": "item", + "href": "./BC32_10000_0102.json", + "type": "application/json", + "file:checksum": "12205e3989ca5d0ebec285447516ba91a76fa43848d4eb0f8e902ac4ce0e22070121" + }, + { + "rel": "item", + "href": "./BC32_10000_0103.json", + "type": "application/json", + "file:checksum": "1220db5dff384650bd4ffe5b17471e02b58940c8041dd5ab8ea7962a56405d9ded70" + }, + { + "rel": "item", + "href": "./BC32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220eb5a66968f4f023fd4544777be9b203d2c6873f7bc38c823cb331e772f476b7f" + }, + { + "rel": "item", + "href": "./BC32_10000_0105.json", + "type": "application/json", + "file:checksum": "12202764195e701d4f92d39d80b0fdb6f056a8c8f795bf645bc54d167f5a326ad1ef" + }, + { + "rel": "item", + "href": "./BC32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220cccbc2c7735ef312d94a9ba51cbe18ed8323be27241fd524b1d396c52f345295" + }, + { + "rel": "item", + "href": "./BC32_10000_0202.json", + "type": "application/json", + "file:checksum": "12205fbb4ccbe90e5c00276cc9922345705e132df9442f6f8e3d9c19fa3aec7e59c7" + }, + { + "rel": "item", + "href": "./BC32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ae3ba4ec8d127b19ec5914d816405565f218f948acfcd8e65c7a07d0e0e0814a" + }, + { + "rel": "item", + "href": "./BC32_10000_0204.json", + "type": "application/json", + "file:checksum": "12209b6fb6ddb92e299f0e0ead6846bb1e845c1f34ac5c3bafd31945c78155d24918" + }, + { + "rel": "item", + "href": "./BC32_10000_0205.json", + "type": "application/json", + "file:checksum": "122063cc1cf18bf1af1a587fdb7c93cddf1a53e4b4a1e3b872cfe529ff723d3567cf" + }, + { + "rel": "item", + "href": "./BC32_10000_0301.json", + "type": "application/json", + "file:checksum": "122059689e52137ef6c17936cbe8f4659659db955fd7789993107e8cc59f9c5197ea" + }, + { + "rel": "item", + "href": "./BC32_10000_0302.json", + "type": "application/json", + "file:checksum": "122009f7a81f5e44a07815c5bc02413267e4b1ae09b467c00c13cd991aaac8deb29c" + }, + { + "rel": "item", + "href": "./BC32_10000_0303.json", + "type": "application/json", + "file:checksum": "12200b4f67f7e3dc399a116038ecdb8c8382c1cb24591df6535c106fe7fc03dccb05" + }, + { + "rel": "item", + "href": "./BC32_10000_0304.json", + "type": "application/json", + "file:checksum": "12207271387a111e1216b972c1ccad4a01d8bb6f7f191f196088e434a2645ad421cd" + }, + { + "rel": "item", + "href": "./BC32_10000_0305.json", + "type": "application/json", + "file:checksum": "12206f7f22fbd1025f62e93a2392b72e099962d89be9d9309483f4f354245d36da79" + }, + { + "rel": "item", + "href": "./BC32_10000_0401.json", + "type": "application/json", + "file:checksum": "122063e136367d338b3e73c0ebf4e437e0e815759e80d160b907f076a70f8426478b" + }, + { + "rel": "item", + "href": "./BC32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220782e8debd10748e2ffb025338271c3d7a6e8baeb50c075409376727f0862a174" + }, + { + "rel": "item", + "href": "./BC32_10000_0403.json", + "type": "application/json", + "file:checksum": "12201f11ee150e644b3c2839097ffd61f797f67266efc6006297fa4d0f103f3bee45" + }, + { + "rel": "item", + "href": "./BC32_10000_0404.json", + "type": "application/json", + "file:checksum": "12206f9a86cf4463799a5eb442d33cc2dbbf3a14328a439f5eaf8ef1181dfbd2be23" + }, + { + "rel": "item", + "href": "./BC32_10000_0405.json", + "type": "application/json", + "file:checksum": "122012d0ea521cea3f909c995ca2870013c62628eaa34118b671f9af27a7286cbc64" + }, + { + "rel": "item", + "href": "./BC32_10000_0501.json", + "type": "application/json", + "file:checksum": "12200ec0e400ba9b050dc4a240033189dd3e77a9a7897c88b52807c42972e2a22821" + }, + { + "rel": "item", + "href": "./BC32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b98f26fa410a9c31c073617da136b5399f1ec5ff6e94ccc19a4afd03a04ac2e8" + }, + { + "rel": "item", + "href": "./BC32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220f05c67243d28d2166d4d5b58f97693cb0ce7e7588145c63bc5e04b9d7dda4662" + }, + { + "rel": "item", + "href": "./BC32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220175600391dae4c5d4ec646fc74513532d7522edae4efb3c0da9be6e665a81706" + }, + { + "rel": "item", + "href": "./BC32_10000_0505.json", + "type": "application/json", + "file:checksum": "12203f3f93288af38dde36d971b1b4d2238b0e15b7d0011bb14b3d93ed9b86eca23b" + }, + { + "rel": "item", + "href": "./BC33_10000_0101.json", + "type": "application/json", + "file:checksum": "12207153a4b754e99d87a570218a060f66f0140fc084046278961edf60043b7cb035" + }, + { + "rel": "item", + "href": "./BC33_10000_0102.json", + "type": "application/json", + "file:checksum": "122063e0b7fea906157882e463e9f20abbddf97abc83ed3e140df59bf7df2f6a346a" + }, + { + "rel": "item", + "href": "./BC33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220950dd08cdfc0d00bbe6ca04f02f8751039fba1b03217fa5cb5974e0e69bda4ea" + }, + { + "rel": "item", + "href": "./BC33_10000_0104.json", + "type": "application/json", + "file:checksum": "12203b62c8c05cbe9f08ddc8cdd0941edbbcd4bd328fe5503844d03fbd3bd97270da" + }, + { + "rel": "item", + "href": "./BC33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220fbdf5ec58ac520c1bfd3920823c52bcdf7a5f02bfcf209b33eacb9a930eeeb8f" + }, + { + "rel": "item", + "href": "./BC33_10000_0201.json", + "type": "application/json", + "file:checksum": "122031ac32428551601b53ce240ecafe4f4806e511290400c2df98122f91c20b6bec" + }, + { + "rel": "item", + "href": "./BC33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220da37c6d66216a2afa1bc46a978df80eb9b9880430592241417fa114f2b17b7e8" + }, + { + "rel": "item", + "href": "./BC33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ac3f35c38c518c1ea3a41eedc0c0a6756791f8d343cada70ba13807c56ae90fb" + }, + { + "rel": "item", + "href": "./BC33_10000_0204.json", + "type": "application/json", + "file:checksum": "122087a838a5241f84a33b4def559f73fa5ea0b9d61c3074f9180d724d26948141fe" + }, + { + "rel": "item", + "href": "./BC33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220946044d0c8f9282e285961c13941b4e51ed79dfa82b7a7500e09dc8754d8f552" + }, + { + "rel": "item", + "href": "./BC33_10000_0301.json", + "type": "application/json", + "file:checksum": "12203556d67807e2853acacffc863d55e55974918279dca5aa1bd14401e0bb3c2922" + }, + { + "rel": "item", + "href": "./BC33_10000_0302.json", + "type": "application/json", + "file:checksum": "122026527bb0dbca05283da48e8f3a805d111004cfaddb8c1588e9161cc47914b966" + }, + { + "rel": "item", + "href": "./BC33_10000_0303.json", + "type": "application/json", + "file:checksum": "12200be4b352ea0a91ba6d4b5ff5c0be053300a6d8cefcd84d4ae19167dee079c90a" + }, + { + "rel": "item", + "href": "./BC33_10000_0304.json", + "type": "application/json", + "file:checksum": "122081cb8aedac9c171840bd8e241d546372c329cc949f03271efe2d550d52ff21a5" + }, + { + "rel": "item", + "href": "./BC33_10000_0305.json", + "type": "application/json", + "file:checksum": "12203e5f44bcb4ab4c5a1a9d5186bb3d15b8550dccf381b7c791a28216019633941f" + }, + { + "rel": "item", + "href": "./BC33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220bb06bcf257b0d5379be8d64feb352e1fe66aad2017bc9a1157b9a16a83a800f8" + }, + { + "rel": "item", + "href": "./BC33_10000_0402.json", + "type": "application/json", + "file:checksum": "12205b751afdb02731112c8ef10207f6331a9323d7c9a33a9be92419f03c1c7746b1" + }, + { + "rel": "item", + "href": "./BC33_10000_0403.json", + "type": "application/json", + "file:checksum": "12206806f1a23e20f1c52df1a6466b89d51a6514f1940f89eccef46b6aaba215382a" + }, + { + "rel": "item", + "href": "./BC33_10000_0404.json", + "type": "application/json", + "file:checksum": "122066c47e965a94dbadf46ebdffd652d1185e810132958485eb46e61773bacd72af" + }, + { + "rel": "item", + "href": "./BC33_10000_0405.json", + "type": "application/json", + "file:checksum": "122096004ee0b424a74fead6fa86316dd55f29164fb0d62d22c066a78ca603b80d8e" + }, + { + "rel": "item", + "href": "./BC33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220599f91f3c70491080bc9c601a200fba9e49edc2db4dfa705ef7b6932e96012c1" + }, + { + "rel": "item", + "href": "./BC33_10000_0502.json", + "type": "application/json", + "file:checksum": "122010d0903b30655f89a37527dd37a8de76a0c12b89ad63d6e05285d83f31c43c8c" + }, + { + "rel": "item", + "href": "./BC33_10000_0503.json", + "type": "application/json", + "file:checksum": "12209d18b640cc7ee5264897daa11e1d76259057691f63ca91cc2e1961202440ba7e" + }, + { + "rel": "item", + "href": "./BC33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c5dc47d79fe27be45b368d21bec0ff2228adc9c04c908422ab8a67b0ca3bd78d" + }, + { + "rel": "item", + "href": "./BC33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220956a626c28be1ffa358f70347967fb4cb353316bba63d9ccfc23cda2f96a94a0" + }, + { + "rel": "item", + "href": "./BC34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220dc05effbbee649b031fd84bf6b015e4123a9da0abe2b462148ef225ac82da200" + }, + { + "rel": "item", + "href": "./BC34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b8fde074ba5eb67db4219aad1b178eb6e7c838fee1f56a653b8f07828f459762" + }, + { + "rel": "item", + "href": "./BC34_10000_0103.json", + "type": "application/json", + "file:checksum": "12200ff77295e95e25a8488f92b6f4b396885ba9d5dae0e3ab67c0fdcd38e278c085" + }, + { + "rel": "item", + "href": "./BC34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220da73974012be750e098fa0111190fc81afe48c586dfdcf3c47169344fba7e45e" + }, + { + "rel": "item", + "href": "./BC34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220226f3d00a47749e8516a346f861909c85554fb9d8a7f509ac492dac8ff6acfa6" + }, + { + "rel": "item", + "href": "./BC34_10000_0201.json", + "type": "application/json", + "file:checksum": "122036f0f4202270833914a276e3bc70e3c993477627c5bb99828ae8e9a79a4e7d0a" + }, + { + "rel": "item", + "href": "./BC34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220c8e4e6a8eed29bd3173860b164c090a451b1c9900a31815d7723856a74a461bd" + }, + { + "rel": "item", + "href": "./BC34_10000_0203.json", + "type": "application/json", + "file:checksum": "12206e517308d702fd2b44c86766d6c3a3f15cd37be1773a15069d03d8ce45b19cd1" + }, + { + "rel": "item", + "href": "./BC34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220966d4fac61aa2d1124d63cc156e9ce2ac7f021d376ff742510fe27a87de531aa" + }, + { + "rel": "item", + "href": "./BC34_10000_0301.json", + "type": "application/json", + "file:checksum": "1220ee28adbf7ce1fa6ce567f7a6326d12eb15ab0c848fc10fa26954f16dbc2bec64" + }, + { + "rel": "item", + "href": "./BC34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220ddf9c1b73a551b74d68c3fd5686d4f5ba18c653294fcd443ab4c6c857fbad0e4" + }, + { + "rel": "item", + "href": "./BC34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220db1e8e73d69a7fe7c73e54ca2eca602f811f9870c5ddaaa87bd81efa90ed714b" + }, + { + "rel": "item", + "href": "./BC34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220766ba703a1fc7ce03544d709a9b6780c022fd1768c8f867944e866d86ab74f93" + }, + { + "rel": "item", + "href": "./BC34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220859bb029c76e4d5f3f76b0633a45d7865bb055a610bc654cdd7f39918b444030" + }, + { + "rel": "item", + "href": "./BC34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ce5559b12f40519c89551d6bb5426fd8df860ebc64f9632c9b74a880f3df13cf" + }, + { + "rel": "item", + "href": "./BC34_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ee7af762209cdc84a818c832c2f43b3d457a7cac691afb43e5553b93e1937f5f" + }, + { + "rel": "item", + "href": "./BC34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220f9982c1f3f663f45b34875e5aa7255029a1f0369157a4f7735896d3e9021acf2" + }, + { + "rel": "item", + "href": "./BC34_10000_0501.json", + "type": "application/json", + "file:checksum": "122079a242bcb744f5f0edb6019dd6ff7d0a24d6c923b14f1b2f2794a9c467b03df3" + }, + { + "rel": "item", + "href": "./BC34_10000_0502.json", + "type": "application/json", + "file:checksum": "12200df8618d492e70d35f23e777f2ee1c78c4d2b0c24ecfbab0dc78566078987c11" + }, + { + "rel": "item", + "href": "./BC34_10000_0503.json", + "type": "application/json", + "file:checksum": "12206fc5e44fb4987fbf0ba1fb0a3635ace46dcf0a3fb846a024b6ed866740c581fc" + }, + { + "rel": "item", + "href": "./BC34_10000_0504.json", + "type": "application/json", + "file:checksum": "122086679a607254b2e87f4d81a950c65db94df924c8a59bd273e13bdf01fa64daaa" + }, + { + "rel": "item", + "href": "./BC34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220c0482a74a1766c30efd93455a48545da7766542ac0f6eaf943bdbec926aac636" + }, + { + "rel": "item", + "href": "./BC35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d2e503940c1fac61fecc79bf32da4b740cc0c2283f147d8cd34a0945d0983692" + }, + { + "rel": "item", + "href": "./BC35_10000_0102.json", + "type": "application/json", + "file:checksum": "12209f9321b10e463641d13f31a199ac1316982ce1aa7e4035670d8b41a03d5d82ef" + }, + { + "rel": "item", + "href": "./BC35_10000_0103.json", + "type": "application/json", + "file:checksum": "122010ed46b5b4a5780b7b2fa3cbd27c392930ed61220cebb48ff14fd133c2fc3801" + }, + { + "rel": "item", + "href": "./BC35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220ca10aa84ec1e3ae1f44eabd2e04b385e54b840b6e8dcee290e5db6c3e25327ee" + }, + { + "rel": "item", + "href": "./BC35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220544cc6969008dea675489281ed37904a24a3dc6d9a275ec89f13e237ced77676" + }, + { + "rel": "item", + "href": "./BC35_10000_0201.json", + "type": "application/json", + "file:checksum": "12207630b4824510e717db1bd5f1d88811b62edbac2c005a9b228a05803a83571231" + }, + { + "rel": "item", + "href": "./BC35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220ab76d11d68401b8e726b6c819dbd6be3c34c3d4e2070c209066b1c360f47b139" + }, + { + "rel": "item", + "href": "./BC35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a59d92723208d38cf2c5edecde7a01fa5b16ce2fe891061c4893e7b0570b9318" + }, + { + "rel": "item", + "href": "./BC35_10000_0204.json", + "type": "application/json", + "file:checksum": "12204426ab1154b757407c5cf00a42b01cc5c60affd0384a62abc4c0c0f052674173" + }, + { + "rel": "item", + "href": "./BC35_10000_0205.json", + "type": "application/json", + "file:checksum": "12201a097470401199f53a390de76af3ea6d1bb23297ca568e5f9c99a861412c3b47" + }, + { + "rel": "item", + "href": "./BC35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220941aafc9a063b4ddf7527bc35443063c253e26fef1cd633019a50bf46f6c5b48" + }, + { + "rel": "item", + "href": "./BC35_10000_0302.json", + "type": "application/json", + "file:checksum": "12203a61af685db811075978530bd2988d41ee70672a2138eef685e4f7529484916a" + }, + { + "rel": "item", + "href": "./BC35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e51c876d0be879594278365a96fe70f1262c01dd62d986336c40ebbff02ebc1e" + }, + { + "rel": "item", + "href": "./BC35_10000_0304.json", + "type": "application/json", + "file:checksum": "12209b14135d1b50f0e50a9a8a2af83a61996b94798390535c14366e752fbc468e0e" + }, + { + "rel": "item", + "href": "./BC35_10000_0305.json", + "type": "application/json", + "file:checksum": "12208fd2cdada5343b9fc4331cd754d1e653fd95885f05e47c5ace997ff92771663c" + }, + { + "rel": "item", + "href": "./BC35_10000_0401.json", + "type": "application/json", + "file:checksum": "12206ce9cf8e1d022ac942166f7ae091876f7b57ccfc8f6839f4504406631c230e12" + }, + { + "rel": "item", + "href": "./BC35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220c65ad40cc85878d36c4004e1363271f5d73c872f83c8cfee742f4b2ccf94a6a4" + }, + { + "rel": "item", + "href": "./BC35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f26e99069e371fbe0768c1793890d21e81b6c1a9f70895dc4e3069878d401954" + }, + { + "rel": "item", + "href": "./BC35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220f9aeb0eac5347e0068514a030502d01a701d395be681fd68f80f91d1262a2ef9" + }, + { + "rel": "item", + "href": "./BC35_10000_0405.json", + "type": "application/json", + "file:checksum": "12209421870839561126d2daf364b773ef2001c8181f49091f518ea80dd8b4b6223c" + }, + { + "rel": "item", + "href": "./BC35_10000_0501.json", + "type": "application/json", + "file:checksum": "122004df794db79e196eab911b50474166919be2fd1876aa5614507c9cc69a240960" + }, + { + "rel": "item", + "href": "./BC35_10000_0502.json", + "type": "application/json", + "file:checksum": "122013c90fb980fae80a04af595301629f46de0250fc835022de64e4f28b23fdc070" + }, + { + "rel": "item", + "href": "./BC35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d3194d2f6e6394b4839bbd02a54ee1e1640233772ec04ac6b27e349315a0894e" + }, + { + "rel": "item", + "href": "./BC35_10000_0504.json", + "type": "application/json", + "file:checksum": "122056d12bf3142145d0919460a002b24e0a56dc8601f0795b4f428a25574cb85a66" + }, + { + "rel": "item", + "href": "./BC35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220682c59a27cc2f846b10648f82a35e9cdd20ac3d293b8bef65bd417ec10c10fbc" + }, + { + "rel": "item", + "href": "./BC36_10000_0101.json", + "type": "application/json", + "file:checksum": "122068f4ade0fb8c3a65fc117a5902f776cca0c6d2e34ec05c5bfd7c6c355d79b53b" + }, + { + "rel": "item", + "href": "./BC36_10000_0102.json", + "type": "application/json", + "file:checksum": "12204efbb2969c25c677ffd19477e084b2b62f3836a86fa7ddff9b7dd3092354c2a4" + }, + { + "rel": "item", + "href": "./BC36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220c18aca11776814bb3a427bc3db364465190754ac1fca25c1fb1892ff124d6733" + }, + { + "rel": "item", + "href": "./BC36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220cce3b0e1fbc73bb5c611f9c28b56de989a889ff76dbb370ef7d1e52bd34475f3" + }, + { + "rel": "item", + "href": "./BC36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220808a5f466b48279408c07ba0aa5cf68d91629fc1b8b063ff72a0a3be7aeb0d81" + }, + { + "rel": "item", + "href": "./BC36_10000_0302.json", + "type": "application/json", + "file:checksum": "12208cf661d0fbac169ccdec4fb8b543b4fbfc64bfa2933c78dbff0f30cff633ddf6" + }, + { + "rel": "item", + "href": "./BC36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220682267fc2ccf5ff866cf3b6e7d17447bf10714e4634a9c46107449ab1849ec7a" + }, + { + "rel": "item", + "href": "./BD31_10000_0405.json", + "type": "application/json", + "file:checksum": "12200ae0914afd7968f165ee25c5a2603d132dbd979d42eefcfce780c093a27a153b" + }, + { + "rel": "item", + "href": "./BD31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220a4d2487e1dc33e274a94f3e3e08dcb2e92ea7f8f8216d50d1b0395a4e765896f" + }, + { + "rel": "item", + "href": "./BD32_10000_0101.json", + "type": "application/json", + "file:checksum": "12201cb9f261b5f9605672a247b39a38705dc68e31021bd984796db6c20281e78528" + }, + { + "rel": "item", + "href": "./BD32_10000_0102.json", + "type": "application/json", + "file:checksum": "122031852e2c3b2d7c68ea5ba588f7361d6c2ea4d68b63630b86dd5be5897754a8b2" + }, + { + "rel": "item", + "href": "./BD32_10000_0103.json", + "type": "application/json", + "file:checksum": "122032621cdaa2afbedb5811754baf9c4df7bf134ec566c61ea1e2156813e7295dcb" + }, + { + "rel": "item", + "href": "./BD32_10000_0104.json", + "type": "application/json", + "file:checksum": "122019a0cc16cc7e0e76b9e013740c2f13f8fbc0bd4cc47e4780b397457f84aa4b5a" + }, + { + "rel": "item", + "href": "./BD32_10000_0105.json", + "type": "application/json", + "file:checksum": "122082aaf42023cf3b19a133d5825207915563e29207fe810dbc16e547fbb0925695" + }, + { + "rel": "item", + "href": "./BD32_10000_0201.json", + "type": "application/json", + "file:checksum": "122094d5571409b92d15cdf70501fedc365f7b105328e537024789098a247c6ee337" + }, + { + "rel": "item", + "href": "./BD32_10000_0202.json", + "type": "application/json", + "file:checksum": "122019e5703c640cd7457ae1f6241649e035279cd5a3efb4062aa884403d0bf1250c" + }, + { + "rel": "item", + "href": "./BD32_10000_0203.json", + "type": "application/json", + "file:checksum": "122006aeb035ba468c554d61c89626aeaa82323c22ccb41040aafbcfa73b326554ef" + }, + { + "rel": "item", + "href": "./BD32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220afa0881abf39b511fbe20436c5c3a601f147f15eb3bd8f4ec74029c38faf7a9e" + }, + { + "rel": "item", + "href": "./BD32_10000_0205.json", + "type": "application/json", + "file:checksum": "12201fe0759b18fb3bf4670d8fbb2962ef272246fc00f59224c357dca9299ffd13c0" + }, + { + "rel": "item", + "href": "./BD32_10000_0301.json", + "type": "application/json", + "file:checksum": "12200faa26f343cc61e031e718658698f864141613ed01b413145f90e9b2a0b17abe" + }, + { + "rel": "item", + "href": "./BD32_10000_0302.json", + "type": "application/json", + "file:checksum": "12208a7d7b894d7080992c6f95b53b07ac275888111c3a0ec287be1f7729b214769b" + }, + { + "rel": "item", + "href": "./BD32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220dbd2804a3639f3ebd855c30276c8e3eb1e975a3987af42a822e0ad974df688c2" + }, + { + "rel": "item", + "href": "./BD32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220b34f046c493fd1341c1359aa96d457060f5a18d8328314bccd9f9dee638d8eaf" + }, + { + "rel": "item", + "href": "./BD32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220bee0784bfbf36e61592033739d9a7a1a2aa3ed03dd637f6334eb3b098e4010a5" + }, + { + "rel": "item", + "href": "./BD32_10000_0401.json", + "type": "application/json", + "file:checksum": "122044d06ff15a774ee346d66adb4359e1579832d24b92c046fc77e90576505368ca" + }, + { + "rel": "item", + "href": "./BD32_10000_0402.json", + "type": "application/json", + "file:checksum": "12207398cefa025fe0bb10a1210a013e95efcf3f8a403b1e7fa4f4266f75c9090728" + }, + { + "rel": "item", + "href": "./BD32_10000_0403.json", + "type": "application/json", + "file:checksum": "1220047fb46c484626fbccbd2268e91af856562e9953bf6eea49cf94da5cd61ed7c0" + }, + { + "rel": "item", + "href": "./BD32_10000_0404.json", + "type": "application/json", + "file:checksum": "12208ae69eb7a7fa4e2dc08a25be9cc9e121c6505c243228c5dfabe64963989f3c33" + }, + { + "rel": "item", + "href": "./BD32_10000_0405.json", + "type": "application/json", + "file:checksum": "12205f0dde94bc1a8b8c88a4d6c81432502b0f159ab11c232f65af0e4379a153dce8" + }, + { + "rel": "item", + "href": "./BD32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b97c551ad07dabe98d9f95779acfe37368c1644c8b2b4000ff6868c4864a9c59" + }, + { + "rel": "item", + "href": "./BD32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220fc9cb3f4dc3d9160d3d5c2da1f9d1556d8d92659f20f9ea28f4f08f7fa9ae84b" + }, + { + "rel": "item", + "href": "./BD32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220e87d4be3424ed3c851630a6fa540d1b0a20f05dfb15e958a71992ee93757b224" + }, + { + "rel": "item", + "href": "./BD32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220b43f8e56d15e524280ad05b545634c0dcce3d65f86a9abf67d29a9676ccbd47a" + }, + { + "rel": "item", + "href": "./BD32_10000_0505.json", + "type": "application/json", + "file:checksum": "122084ec1543314da510b9fa90344ee1507db29cb53d9f3bf9e81cbc7e18f9513c8a" + }, + { + "rel": "item", + "href": "./BD33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220063b2d1ce260e26cf72c20af904c0b0453b5ead91c6a6a347679e57292f1aa3e" + }, + { + "rel": "item", + "href": "./BD33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220dd3044bb3aeef8e5796c343373624b5af0d4b7d2a71b4954319d8c1217a21890" + }, + { + "rel": "item", + "href": "./BD33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f7de77ee4c11a90ddefb6e0f1a89e9be0c039515e4f355b32f1ee4b985fd47b6" + }, + { + "rel": "item", + "href": "./BD33_10000_0104.json", + "type": "application/json", + "file:checksum": "12203336a17e3f2a02e495f4df61d0873a3c59c7cd90b00d931c13efb212af07d60b" + }, + { + "rel": "item", + "href": "./BD33_10000_0105.json", + "type": "application/json", + "file:checksum": "122089d29ee12a8b4a55a6e8bd4f9972da06e399aed529acb0b40762fb65b593ef50" + }, + { + "rel": "item", + "href": "./BD33_10000_0201.json", + "type": "application/json", + "file:checksum": "1220ad4018bd83f4f65b3e9dc8046b3effc6043f11d8a0a4e165fbe9d9ed56597367" + }, + { + "rel": "item", + "href": "./BD33_10000_0202.json", + "type": "application/json", + "file:checksum": "12202492373c950c57b357102ebfe37f947ecb99a3931ae739c083a24baa746671ce" + }, + { + "rel": "item", + "href": "./BD33_10000_0203.json", + "type": "application/json", + "file:checksum": "12209d70c1e37493dcd0998dc702fcd3c2f403d74aba245be3e68568437d31cfe5b5" + }, + { + "rel": "item", + "href": "./BD33_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ce5473417f1dfb2f0224e225a205ef01c365992f2d536f2046cebb9f8eeb6e2f" + }, + { + "rel": "item", + "href": "./BD33_10000_0205.json", + "type": "application/json", + "file:checksum": "122066db53defb53e82613f68ff2bac3bb1ca4d9aa440bb1ed61a345affa954e1101" + }, + { + "rel": "item", + "href": "./BD33_10000_0301.json", + "type": "application/json", + "file:checksum": "12203290d7a63fed9f209958eac93e5970b4138c12a87b39d6fc21c94e828d02d882" + }, + { + "rel": "item", + "href": "./BD33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220f02af590667a298246b2ea12562e00196ad0673583a9b913128b9937f74a6046" + }, + { + "rel": "item", + "href": "./BD33_10000_0303.json", + "type": "application/json", + "file:checksum": "1220cdd4056a1f40271e2d489a786acf422d4aef904aedb01423230d00de8199d6de" + }, + { + "rel": "item", + "href": "./BD33_10000_0304.json", + "type": "application/json", + "file:checksum": "12204236416309a0ce6f502353fc2b6f0040dab2304fbdea727c32550a22c9781234" + }, + { + "rel": "item", + "href": "./BD33_10000_0305.json", + "type": "application/json", + "file:checksum": "12209ae2164948f91fa3ef9a87ec829500331fa812fb524f3e35127b3ef69cf3fc07" + }, + { + "rel": "item", + "href": "./BD33_10000_0401.json", + "type": "application/json", + "file:checksum": "12209e167983bde6adbbcc80c8938ee13e57c253892c866ce2ad3d1a7c6b4345ac2a" + }, + { + "rel": "item", + "href": "./BD33_10000_0402.json", + "type": "application/json", + "file:checksum": "12200d698769ba5b30a3f0ab0df51d367041666fe534853a0666c1e1b99bb1bdf90b" + }, + { + "rel": "item", + "href": "./BD33_10000_0403.json", + "type": "application/json", + "file:checksum": "12200bdb365dd26266249e989eaf00b99ca454b94827615701145c2d576248a6522b" + }, + { + "rel": "item", + "href": "./BD33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220077aa3638c5ef4b9b7d64d3d92b7214607119f9b7e7b9461852a07dfc5f71613" + }, + { + "rel": "item", + "href": "./BD33_10000_0405.json", + "type": "application/json", + "file:checksum": "12202fb8cc31c5e940d1562cf52fdccabc5c0974f3c67e134690cc5e0769019e7734" + }, + { + "rel": "item", + "href": "./BD33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220f8eae591449921a0f1563da75c3c99b1692fa44d72c5cc47ec773c3c73b2416e" + }, + { + "rel": "item", + "href": "./BD33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220efba8bbcb8869d786e09e74e975b5a323d0edc25a2b66e2770fab4ea5e9d2a06" + }, + { + "rel": "item", + "href": "./BD33_10000_0503.json", + "type": "application/json", + "file:checksum": "1220b1397026cf0a9e3da10bda3bb840ff78b302e3be077083ceddd6e2e65af67dfc" + }, + { + "rel": "item", + "href": "./BD33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220626e0ccb861d44ce158504ecd4f352528ed0898112305d8538c3913925e6b024" + }, + { + "rel": "item", + "href": "./BD33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220e605a58523a5508709a8d724433ad2f06fd3b03e46906f3698029895e9d81a16" + }, + { + "rel": "item", + "href": "./BD34_10000_0101.json", + "type": "application/json", + "file:checksum": "122023b90e2aa42429efc26043b22a73c952ead301c9fc3824b0b481a7b0238cd4ec" + }, + { + "rel": "item", + "href": "./BD34_10000_0102.json", + "type": "application/json", + "file:checksum": "12204035e3f38866ef192ea214a9226623e22fc1b7dc557e8d9da56898f062fa5789" + }, + { + "rel": "item", + "href": "./BD34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220db99f356d5e4da2cb67ab3f8c8fe3232c142e8a8e2215ac0621c9917e5c6cb47" + }, + { + "rel": "item", + "href": "./BD34_10000_0104.json", + "type": "application/json", + "file:checksum": "122012c23e6cc84a922c4c50f2ec71800a99d808a448e1ecdba8df3d70588a31d7e1" + }, + { + "rel": "item", + "href": "./BD34_10000_0105.json", + "type": "application/json", + "file:checksum": "12203e863ec75e01c9fcc478cc3f36c3e2ebbde9ba369c27c913abe1673ff1a9ff44" + }, + { + "rel": "item", + "href": "./BD34_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d5954b781ee4f81ff39a50844e700c4bc463ca5be9cde56a9baf4a0adf042bc1" + }, + { + "rel": "item", + "href": "./BD34_10000_0202.json", + "type": "application/json", + "file:checksum": "12205682e073ded693a0ca1d4fb6710fe807a1e80b82726054ecc5142507a18ea0d6" + }, + { + "rel": "item", + "href": "./BD34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220e560bf200235135be0efc517192c7e4fd15f63581f9955189a57d52c8d4196c0" + }, + { + "rel": "item", + "href": "./BD34_10000_0204.json", + "type": "application/json", + "file:checksum": "122086ee3d3922f25f8cdc7758ee77f42d1153c4e4a5b4fa5a1d90d09ad85c61a152" + }, + { + "rel": "item", + "href": "./BD34_10000_0205.json", + "type": "application/json", + "file:checksum": "12205326921ae73c5466425e1ebd7dbf0189676483509d58c71c3db0ce62313b2bdf" + }, + { + "rel": "item", + "href": "./BD34_10000_0301.json", + "type": "application/json", + "file:checksum": "122063b2e33e3d549cdd95f088e2e4e0f32256cad45b789f6b2ef9dcfe01d3338720" + }, + { + "rel": "item", + "href": "./BD34_10000_0302.json", + "type": "application/json", + "file:checksum": "12200daa7e091ebeb9fb140c89b36a0dd22ed96ffd29a23c4b10bc7048f2cd4c13b1" + }, + { + "rel": "item", + "href": "./BD34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220e1c3464751ff4cf32a08946f5712f190e03af2a39d90723d5081db9f7e5c9069" + }, + { + "rel": "item", + "href": "./BD34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220066ebd41e7b2aeea58d6503df418c2527edb87eb34c8b2a64d3d309c136b14d0" + }, + { + "rel": "item", + "href": "./BD34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220867b59fb9f3d75dc2bccab31832e359c2dc86a29ce21d94a333d5c53e111ee46" + }, + { + "rel": "item", + "href": "./BD34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d59fe1aad3605d343f9f46a5a50557e116881128a3fa1fa19fa54f5ecea8503f" + }, + { + "rel": "item", + "href": "./BD34_10000_0402.json", + "type": "application/json", + "file:checksum": "122023e0abab352aaa1789de701ab923b68cc3fc40cddfa4dab6e455e3964d8a82ba" + }, + { + "rel": "item", + "href": "./BD34_10000_0403.json", + "type": "application/json", + "file:checksum": "12204973192ffe3b12600f868cc4f56d6f6486f1bb7c831e3a4fa4b5c8efc4ef3d41" + }, + { + "rel": "item", + "href": "./BD34_10000_0404.json", + "type": "application/json", + "file:checksum": "12202f011bf9353e1709febe51467cbb1471d03b4b3cee21192742a5d4cfee92afb9" + }, + { + "rel": "item", + "href": "./BD34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220efedeed7e7325d1528a4f88dee48a8b63eac85c77db23b4ea7cfbaab1ed492fe" + }, + { + "rel": "item", + "href": "./BD34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220337e2d82d4b5160ccfac5a9d00d3597d2f1531038713414485c34c8c21e2f36b" + }, + { + "rel": "item", + "href": "./BD34_10000_0502.json", + "type": "application/json", + "file:checksum": "12208c2ca7b268273a021d5406a882a10af025a2095f1e1533a27e97943e7ec868a0" + }, + { + "rel": "item", + "href": "./BD34_10000_0503.json", + "type": "application/json", + "file:checksum": "12209e45458f55b3c287d67c42734f9dd9ec183d7ca63e686376bb47132824efb169" + }, + { + "rel": "item", + "href": "./BD34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c585a935abe998d614ced87b5e68307da8f07f549ea216e22ee2c440f6726635" + }, + { + "rel": "item", + "href": "./BD34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d50a3f3bf751c84ebf9531313d1272e390c01e5e22ca9e08b6404a51f276aa49" + }, + { + "rel": "item", + "href": "./BD35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220c9a6c1b8871033d344d8b446e57831f84ffbb95a4c1203c75c87d4dea0d0e03c" + }, + { + "rel": "item", + "href": "./BD35_10000_0102.json", + "type": "application/json", + "file:checksum": "122088d4be531e90d97194dbe0706e2544933ff86d52cfb8f0b02783e53d26e578d1" + }, + { + "rel": "item", + "href": "./BD35_10000_0103.json", + "type": "application/json", + "file:checksum": "122050b23d99b485b5524b9eefdbb9491eb422b3c4847a90124b078abf7a68096b1d" + }, + { + "rel": "item", + "href": "./BD35_10000_0104.json", + "type": "application/json", + "file:checksum": "122033e5558b88ea916b6cd0a151bfdf575feecf42b9ea786f04688323fe041bc20c" + }, + { + "rel": "item", + "href": "./BD35_10000_0105.json", + "type": "application/json", + "file:checksum": "122012d4a47cb79bf90a37acd68f887ff24b7c804d15825d9f684623ae46398c3f61" + }, + { + "rel": "item", + "href": "./BD35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220e25825b1ef05de6b02317b0115bfca568836140d3be97cf698e826e523cc8917" + }, + { + "rel": "item", + "href": "./BD35_10000_0202.json", + "type": "application/json", + "file:checksum": "122047d864489822fee121939f2b66b38fd9e2f95e253d86ec160ecf507b8de92049" + }, + { + "rel": "item", + "href": "./BD35_10000_0203.json", + "type": "application/json", + "file:checksum": "122006bc4c78bcafab834b50f72b935007749c723de46795c7c51fe1bd4790ccea41" + }, + { + "rel": "item", + "href": "./BD35_10000_0204.json", + "type": "application/json", + "file:checksum": "122022377cc2bf210924c20d2f9aed6029690381449c97948cbfb4ed4cdeaee1e391" + }, + { + "rel": "item", + "href": "./BD35_10000_0205.json", + "type": "application/json", + "file:checksum": "12209873e69385b5ca8e412e471b05b8118326af4c2df7f5eca8182ca2ce4adde5ce" + }, + { + "rel": "item", + "href": "./BD35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220df0bbb1b78851609329d060f48613ee21720568071f67e015d947c8fc7e93dfe" + }, + { + "rel": "item", + "href": "./BD35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220fc4a2ddbd34315980f272f0c2333642eecb9c1bf059f92edd0afc91439472439" + }, + { + "rel": "item", + "href": "./BD35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220724d1a6d76ed72681cbac5a33d3e7eaa10c4b6a7b065b39f6d9fdfea99561cce" + }, + { + "rel": "item", + "href": "./BD35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220dc61e2124685aa3c97cb1649d6fc8d7d6f2da0a42aef8b0c3a4b19a62136a100" + }, + { + "rel": "item", + "href": "./BD35_10000_0305.json", + "type": "application/json", + "file:checksum": "1220013f3af7efa5afb2a620cc8c3c160e619beecf2e81e744366b66e8c09ea75948" + }, + { + "rel": "item", + "href": "./BD35_10000_0401.json", + "type": "application/json", + "file:checksum": "12202a751ae9dc011a2f2bf02c2a4ac68c0ee3119d823a8970ed66e4e59357bf5f12" + }, + { + "rel": "item", + "href": "./BD35_10000_0402.json", + "type": "application/json", + "file:checksum": "122075ec23af4d1fc180d89c712afb20195800674144a71f09704de151cc204aaccb" + }, + { + "rel": "item", + "href": "./BD35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220fc8d5620bc6ab4a62de0c8b1d5a687a71c0b60771fc1d205b403bace55202ea4" + }, + { + "rel": "item", + "href": "./BD35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220c7006c4b45dd5ddf36c0a11ca662b97311bd5b410d607536e991a0c1da2568f3" + }, + { + "rel": "item", + "href": "./BD35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220ff11bbbf99203b37c9ba810c5efcf27cf4f21a0e11ada5c45f7817a2d5329214" + }, + { + "rel": "item", + "href": "./BD35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220a2731de00e5b92e36b810f72c2d0f7c5a3b094afe0e1e2def3ebd30c366747cb" + }, + { + "rel": "item", + "href": "./BD35_10000_0502.json", + "type": "application/json", + "file:checksum": "12209df7cb08239bf8da468b1015c446a76a12701f446422188770c2caaec6599d46" + }, + { + "rel": "item", + "href": "./BD35_10000_0503.json", + "type": "application/json", + "file:checksum": "12205b1c65e2835ba058ec29a3de4767d628094840c686ab164313d90b3f5eaa6308" + }, + { + "rel": "item", + "href": "./BD35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c8e873a0867bccf2caf1611e51ee6e59db2e995ecba9e11369c31ffa47c0e3d2" + }, + { + "rel": "item", + "href": "./BD35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220bb154171559272649b6715b5b810024f71abcfeae76eca8a6369e4cfa6108b3c" + }, + { + "rel": "item", + "href": "./BD36_10000_0201.json", + "type": "application/json", + "file:checksum": "12201d5a209e0a3d625525d0e2098b9f345aae7aa7b0d6dda9c9a26ed37f5d60305d" + }, + { + "rel": "item", + "href": "./BD36_10000_0301.json", + "type": "application/json", + "file:checksum": "122072fe08d2ffe23e4f2ea6fa5c1e440e8850c4d9fafd9eb0c0ab7713ad7c74cfe2" + }, + { + "rel": "item", + "href": "./BD36_10000_0302.json", + "type": "application/json", + "file:checksum": "12202446105ddf6258f44db48ad9072f3b23581aebe09628027ad743b93f501d1d5c" + }, + { + "rel": "item", + "href": "./BD36_10000_0401.json", + "type": "application/json", + "file:checksum": "12203cef903dd9567dbebbefe8ff70690e71d47d600c67582934b32d8e9eb768797f" + }, + { + "rel": "item", + "href": "./BD36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220a2a7b4a89ce1952f69800f02957bcb47f7d27c6c3b7eb6e14e13cabfca66a8d0" + }, + { + "rel": "item", + "href": "./BD36_10000_0501.json", + "type": "application/json", + "file:checksum": "122022e011f4ebbeba38c9ce48861b525ecde582b8b3e8552ca783581a3fc518f7cf" + }, + { + "rel": "item", + "href": "./BD36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220967e70d8a1868dbed1201a434468e3f4ee66a2baabb29bbc8929e9646a1a9efa" + }, + { + "rel": "item", + "href": "./BE31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a9e7f7ea55436d476561b0729fda841f14599dfc3582192ca53401a1ff483337" + }, + { + "rel": "item", + "href": "./BE31_10000_0304.json", + "type": "application/json", + "file:checksum": "1220f23b2e100929e31a65dd2889e1e47631f03575c1e5186509500c440df042dac1" + }, + { + "rel": "item", + "href": "./BE31_10000_0305.json", + "type": "application/json", + "file:checksum": "12201a2d3ee94943f6fd3dcf464fe6914caa8c5e4a6351f315666c8366819d9725df" + }, + { + "rel": "item", + "href": "./BE31_10000_0404.json", + "type": "application/json", + "file:checksum": "12207726e024caf0849786bd721b1a010e4d597240a63a50a15d484244ed7de5c6a4" + }, + { + "rel": "item", + "href": "./BE31_10000_0405.json", + "type": "application/json", + "file:checksum": "12201b74faaf3cd803fe47568f0ca4e3d2649da3cdc93a3d4665477c209699d3c62d" + }, + { + "rel": "item", + "href": "./BE31_10000_0504.json", + "type": "application/json", + "file:checksum": "122068ff59ebf88c88d7d1f1220b36883e456ccaa9f67f5ab5597506f691536e742a" + }, + { + "rel": "item", + "href": "./BE31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220923ce9df675a0f9535cd3df69eea28d2b1e28f92840a0f87a66006437b780633" + }, + { + "rel": "item", + "href": "./BE32_10000_0101.json", + "type": "application/json", + "file:checksum": "12207343d9aa7686044951c8fe4cd23250b225bb5f650b215d1f90e2ccb56922cd59" + }, + { + "rel": "item", + "href": "./BE32_10000_0102.json", + "type": "application/json", + "file:checksum": "12200f0f55e35d144bcb236dfdee564b15535c6e92bf22556c56ee88d1fce9c74ea7" + }, + { + "rel": "item", + "href": "./BE32_10000_0103.json", + "type": "application/json", + "file:checksum": "12206761c14280747a5c0faac164c5d47329c3a74310c0f5e2d853a0101f2c5e4be6" + }, + { + "rel": "item", + "href": "./BE32_10000_0104.json", + "type": "application/json", + "file:checksum": "122040ee022c3e4007671db6cf28c23784135b5e05fd2cdcba5121951bf7ded2cf4f" + }, + { + "rel": "item", + "href": "./BE32_10000_0105.json", + "type": "application/json", + "file:checksum": "12207e5e7b2db862028d7f38101512206e1e979013dd9dda8051646071afb9692581" + }, + { + "rel": "item", + "href": "./BE32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220aa9467ae28c12f5d6ce055019137482ae0dcc732e98aa8738ed3b5d2691765e3" + }, + { + "rel": "item", + "href": "./BE32_10000_0202.json", + "type": "application/json", + "file:checksum": "12209931884e328847d0a7ddbb70202ff9b67d97b336f69849fd2137ccc82e014a72" + }, + { + "rel": "item", + "href": "./BE32_10000_0203.json", + "type": "application/json", + "file:checksum": "1220c7b2bbb1f57165a1d731322446a5faa785ecdd9c19afad5c077cee7de2a125d1" + }, + { + "rel": "item", + "href": "./BE32_10000_0204.json", + "type": "application/json", + "file:checksum": "122061a8b24709301b9a4400b9f1f50f75eacbdb60548ce41dbe939d2358db903f8d" + }, + { + "rel": "item", + "href": "./BE32_10000_0205.json", + "type": "application/json", + "file:checksum": "122017144530b8391a78d6899e82f5351a39b28c092efa0368077697a4d31c56af6b" + }, + { + "rel": "item", + "href": "./BE32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220431ae8d95892a662c25b7371978339bbbaa0d5c249c6e1048206d0f883e28745" + }, + { + "rel": "item", + "href": "./BE32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220aefe2e455dae31fb33fe8bc7c2e75fe3f143718b680b23a579a88cbe47b1b2c0" + }, + { + "rel": "item", + "href": "./BE32_10000_0303.json", + "type": "application/json", + "file:checksum": "122050fbf9105c463a368821485861733d409243b3d65183547f5883e75210c52d88" + }, + { + "rel": "item", + "href": "./BE32_10000_0304.json", + "type": "application/json", + "file:checksum": "1220765cbc73bf3bf981ff72799be4db40e4c0820dd56b44933e017f2928c66c1ee3" + }, + { + "rel": "item", + "href": "./BE32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ad8e8538dedaf2bf1a4fb18fe80232dfa8d8d0bfa6cf0e2e929a298f5940e2e1" + }, + { + "rel": "item", + "href": "./BE32_10000_0401.json", + "type": "application/json", + "file:checksum": "12203542b29fbe77f4bdadfa1f0caa02fb8586d88cd8a527a779995c08b182ba4652" + }, + { + "rel": "item", + "href": "./BE32_10000_0402.json", + "type": "application/json", + "file:checksum": "12201dd5427895cea52f48f9fd0e4050ffba3dfd4079bbfbb0a3f0a68f2694cf9769" + }, + { + "rel": "item", + "href": "./BE32_10000_0403.json", + "type": "application/json", + "file:checksum": "122067e204d0b14bbf7d4ce13a68d3ea8b7fc235ac9aea3a988d7d8852491cc9db0e" + }, + { + "rel": "item", + "href": "./BE32_10000_0404.json", + "type": "application/json", + "file:checksum": "122067e6fb1e48f8144fecbb78edcf8bcec967ae790440396172e744aade71d19a46" + }, + { + "rel": "item", + "href": "./BE32_10000_0405.json", + "type": "application/json", + "file:checksum": "1220cb5802830e289cf21d49a2410bace6ff4673faaeca3c1a48b32174321dca16fb" + }, + { + "rel": "item", + "href": "./BE32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220cf8d6f8b4f5ea38adb76c74f47cb1bb52d011ac2c42c5277701bfc41b8ff275b" + }, + { + "rel": "item", + "href": "./BE32_10000_0502.json", + "type": "application/json", + "file:checksum": "1220e038717255262816d851f844ab8bddff620c7e0f6817cff1f1cd85a42db0f1a9" + }, + { + "rel": "item", + "href": "./BE32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d08f613d1bab7016f4e483a4b00cb1b29b4c91880c2aeedbb645d711a680a453" + }, + { + "rel": "item", + "href": "./BE32_10000_0504.json", + "type": "application/json", + "file:checksum": "12207fc9296e58d2eade3684a81f86320f95bf8c5f2d915fab51ffd875aad44851b6" + }, + { + "rel": "item", + "href": "./BE32_10000_0505.json", + "type": "application/json", + "file:checksum": "12204f0c4d6435025e2ffceb660b1b9d7ed24ed3a39a55a41b89dcfe8953b0d8505e" + }, + { + "rel": "item", + "href": "./BE33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220417cd2418cb454bd4ae0f1e5d381558b288661eb440e6df445113766fdf4591e" + }, + { + "rel": "item", + "href": "./BE33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220c87fc46e08731f1463075f4ed69945c7a5e730043bdc2b51ea317a226358031a" + }, + { + "rel": "item", + "href": "./BE33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220340b9942e32389ef7a10676dcc70afdbaf07b82a5c65780ab5701ef5a7ac0642" + }, + { + "rel": "item", + "href": "./BE33_10000_0104.json", + "type": "application/json", + "file:checksum": "12205d3bb31fdbd84be9095d32d6f7f1d30d87159d8e1265ae8d4f7646930849f1e6" + }, + { + "rel": "item", + "href": "./BE33_10000_0105.json", + "type": "application/json", + "file:checksum": "122045a6f0f043a340ca011bef0a7741fe5c3c91a557e0b188b7f9bcaa3e5bb3325e" + }, + { + "rel": "item", + "href": "./BE33_10000_0201.json", + "type": "application/json", + "file:checksum": "12205c5f8683d3c9f736f617171962d2a6f7e1cfc82a84fbd1d6c6b04b9d3b6378ef" + }, + { + "rel": "item", + "href": "./BE33_10000_0202.json", + "type": "application/json", + "file:checksum": "12205f7aed1ab5717636111b3626ead04d24377552136a2ed5436bb36f65f5a1f56c" + }, + { + "rel": "item", + "href": "./BE33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a5ecff677827f05ba5ca767388877016f34ef21b5af7d4d972a123cada7a6ae4" + }, + { + "rel": "item", + "href": "./BE33_10000_0204.json", + "type": "application/json", + "file:checksum": "12201db2a17b1e92c76306c303c213b5eddeb3e2bd445fbc22e936a3236f6b6c2252" + }, + { + "rel": "item", + "href": "./BE33_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b35b28e06573b94a1ed4cc55f3a26ecae77babc23ac2d9464300425110c0db20" + }, + { + "rel": "item", + "href": "./BE33_10000_0301.json", + "type": "application/json", + "file:checksum": "12207738157fb86033fac76547ec9198eee7eec9fb2edacaa77e7f6e4a17b6e10547" + }, + { + "rel": "item", + "href": "./BE33_10000_0302.json", + "type": "application/json", + "file:checksum": "122052550acf12ded3da17b36ecb70ab79f6ccef50cb2e31ae2179d30edaebce85bd" + }, + { + "rel": "item", + "href": "./BE33_10000_0303.json", + "type": "application/json", + "file:checksum": "1220068467ebd16186793f807c57cc082925820a8dbc48836d07bbfda1221b146933" + }, + { + "rel": "item", + "href": "./BE33_10000_0304.json", + "type": "application/json", + "file:checksum": "12207a94da831e7748695e8a6e9e2ed8622c0a7030214bcbda8e0fc9645cad82c41c" + }, + { + "rel": "item", + "href": "./BE33_10000_0305.json", + "type": "application/json", + "file:checksum": "1220532a16db7e3ed44f23f4ea870ed13580f2a02740861dff32cdaee5b8e9909887" + }, + { + "rel": "item", + "href": "./BE33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220e204c732f66809e934d561ea6fa441767710d85c159b19a9a65957aa9e8fc8ed" + }, + { + "rel": "item", + "href": "./BE33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220ee9f9d3d45005fa0c5898bc24d4745e7a84281996547a551a582247412da1b38" + }, + { + "rel": "item", + "href": "./BE33_10000_0403.json", + "type": "application/json", + "file:checksum": "12206bb24f78a076a9527d5644c365e5df3232eb0fe005221f132ddda8b391f841b4" + }, + { + "rel": "item", + "href": "./BE33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220f878a28e6ac108c8827e4a099c8940a08ccbaedf1d58042c7759f46edd8a3fe9" + }, + { + "rel": "item", + "href": "./BE33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220fad187caea36f1901c454f920ab2c60ce3134d105abf049ac84403b80de6281d" + }, + { + "rel": "item", + "href": "./BE33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e746e022ec0a067a7585d23b85484085eff71cb334eee5169fd47a6a2e155acb" + }, + { + "rel": "item", + "href": "./BE33_10000_0502.json", + "type": "application/json", + "file:checksum": "122019a1ab51d82ce86dac22eaf18f2a4f47e5b48874ad5ba75df7dacb9a8ce80467" + }, + { + "rel": "item", + "href": "./BE33_10000_0503.json", + "type": "application/json", + "file:checksum": "1220d5405f9f44daea9675c7f70d5fbe4bf714389d342ed26464b8651b34b97b653b" + }, + { + "rel": "item", + "href": "./BE33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220972b124a26a4dd793b1684a7b20411757bc6d05a1b1cbed41965982e52dde56a" + }, + { + "rel": "item", + "href": "./BE33_10000_0505.json", + "type": "application/json", + "file:checksum": "1220f8e4b4483b93046ba711a65ca6ab96561890884247658c79172acc8caabe0cf8" + }, + { + "rel": "item", + "href": "./BE34_10000_0101.json", + "type": "application/json", + "file:checksum": "1220949189df8482afeb8e2cfc0375d170cc0535d5b707f4e6cd168f4bc7b67631f2" + }, + { + "rel": "item", + "href": "./BE34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220e125ecb1242b13c063ef18bab5c98c27dc58c8b024f847ca1c8602c209f1fdff" + }, + { + "rel": "item", + "href": "./BE34_10000_0103.json", + "type": "application/json", + "file:checksum": "122089af9f96dbb4f0469c171385b6a0a9ca5aee09fe43240f4c615ca6b31a9c58be" + }, + { + "rel": "item", + "href": "./BE34_10000_0104.json", + "type": "application/json", + "file:checksum": "12207b96d235d878b8f32148271dd67bb63c439289344a06c33170d671d67f6494c9" + }, + { + "rel": "item", + "href": "./BE34_10000_0105.json", + "type": "application/json", + "file:checksum": "122077d77eb26ba1f3d8874c31306fb50d4e038d901c18344b124580d4ec0bf9cd83" + }, + { + "rel": "item", + "href": "./BE34_10000_0201.json", + "type": "application/json", + "file:checksum": "1220f0f24442b8da11aec6a2aa2ba01ba38ba46030e33ca9cc801e482959bdda2b8e" + }, + { + "rel": "item", + "href": "./BE34_10000_0202.json", + "type": "application/json", + "file:checksum": "1220b868661c96440f53f51780d737901ced163b9ae25237acae067abb9de67c047a" + }, + { + "rel": "item", + "href": "./BE34_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ddd9210a0fd6ff7df2e84f89094e684862e4c3e07075cd1839dd82b6270b77e6" + }, + { + "rel": "item", + "href": "./BE34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220104561d205a0429e63e237b943936ccf6ff327facac477ffb377702f694fbbc8" + }, + { + "rel": "item", + "href": "./BE34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220511b12969446dbb58f76f7cc214ec55cca532b7a857f604c3346c0b64770557b" + }, + { + "rel": "item", + "href": "./BE34_10000_0301.json", + "type": "application/json", + "file:checksum": "122026ba40beb936412084a37c973dd40147125f1c536c7f257e99069b7ab14447fa" + }, + { + "rel": "item", + "href": "./BE34_10000_0302.json", + "type": "application/json", + "file:checksum": "1220020bb77cd2fadadfe2e8848a7db73a54003fadbc738bca21d3cd453667d019f4" + }, + { + "rel": "item", + "href": "./BE34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220457bf1a106ac7ae6d3f3cca9d7d0f0a446c8b683abde7ab884b2200a2f915b02" + }, + { + "rel": "item", + "href": "./BE34_10000_0304.json", + "type": "application/json", + "file:checksum": "122042fa66fab6bc64c6b33d101cd342a24e4fb875fb6e7164956cf653e3990fff47" + }, + { + "rel": "item", + "href": "./BE34_10000_0305.json", + "type": "application/json", + "file:checksum": "1220f1582b8d64da0a229961c385dae8a8598863556df068fb69f12825a508b7a229" + }, + { + "rel": "item", + "href": "./BE34_10000_0401.json", + "type": "application/json", + "file:checksum": "1220ef030f78fbccb6c380594964c0baa199f66c1df51f4954a73a1fb553d455e803" + }, + { + "rel": "item", + "href": "./BE34_10000_0402.json", + "type": "application/json", + "file:checksum": "12200dd62741f21a0eb8ee388c01a9125d159a28f04b0e5ad4057e645f8e213e7194" + }, + { + "rel": "item", + "href": "./BE34_10000_0403.json", + "type": "application/json", + "file:checksum": "12209523666c19f4a3ddc9525ca5edc07cf8f80a47deeca50e37a2815efaf6785c8c" + }, + { + "rel": "item", + "href": "./BE34_10000_0404.json", + "type": "application/json", + "file:checksum": "12209f4bf390c72375310f96a74cf9addae9f7fb0b4c17133a9a8f0d36d2afc7b598" + }, + { + "rel": "item", + "href": "./BE34_10000_0405.json", + "type": "application/json", + "file:checksum": "12201d9c2adc844ffd1af97bdc8dc83e48d5ed62559687035ca4299021d5079cb661" + }, + { + "rel": "item", + "href": "./BE34_10000_0501.json", + "type": "application/json", + "file:checksum": "12202bee63f74005de959749a65f34c3df931225654a531f81719d725d9d486b834f" + }, + { + "rel": "item", + "href": "./BE34_10000_0502.json", + "type": "application/json", + "file:checksum": "12201965f9ce3280f1306cf18eaf5971e2fecb73560ed156c04a361d0a5a4528ae60" + }, + { + "rel": "item", + "href": "./BE34_10000_0503.json", + "type": "application/json", + "file:checksum": "12209332787f5da230741d8017aa32e09de1d6b003ba0f912e279c3313648ecd6b14" + }, + { + "rel": "item", + "href": "./BE34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c8f17417f7e3aaee7aae49a2dd11f902456776e82a16be9d4bc4d0c6cb350744" + }, + { + "rel": "item", + "href": "./BE34_10000_0505.json", + "type": "application/json", + "file:checksum": "12201c319b41c52ee6fe9b7c1aca9307b9c6278ea3a05ac9b48f055ccc58e8dadf0a" + }, + { + "rel": "item", + "href": "./BE35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220d5e01d0c1c8411163241e6ceaf46090bcb4b4482399430de1ca03e7744b38fca" + }, + { + "rel": "item", + "href": "./BE35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d36df15d729f6b29a1ae050022ff26fce190eba12831875581b6246fc214344e" + }, + { + "rel": "item", + "href": "./BE35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220552ed2e0671adf88ecc91b2a5b485df84ed3e33a55a9b904a04235fe1b0531eb" + }, + { + "rel": "item", + "href": "./BE35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b7ad841bf0f440c53e097eaa71e70fef72e95349f1e5053a1697a63c67ac2074" + }, + { + "rel": "item", + "href": "./BE35_10000_0105.json", + "type": "application/json", + "file:checksum": "12200cc98616adce9b870fdb47ec0255d4714525f91e0cb38852f7ffe872d4544964" + }, + { + "rel": "item", + "href": "./BE35_10000_0201.json", + "type": "application/json", + "file:checksum": "12209278b5ac7c79738f1f58528d57d787e7276ff001d46688d2168d6f04371b4c81" + }, + { + "rel": "item", + "href": "./BE35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220d02dd76693c3438fcdab7239c285288a636de7fa5ed0280b92b2a2d13dad33f6" + }, + { + "rel": "item", + "href": "./BE35_10000_0203.json", + "type": "application/json", + "file:checksum": "12207928563134f3469e7e707ff6e720af6b37a0302e53eca3fef889ae7aba70d711" + }, + { + "rel": "item", + "href": "./BE35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220840579c684cdbe685390af018dd4ff91720d2b061e41d46faa19caeda49e31b7" + }, + { + "rel": "item", + "href": "./BE35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220729a03d0ae1088995bdbe217f1662a9d2ad1211282bf1279c9b588e4c15bac5a" + }, + { + "rel": "item", + "href": "./BE35_10000_0301.json", + "type": "application/json", + "file:checksum": "122085d34b8835aa7371f7972ada01d1346a8215821b381e2a9a607771218f596101" + }, + { + "rel": "item", + "href": "./BE35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220c22117b2e680bcdb772c6f6feebfebc110fcc31e85779ca0a5b10651c1d0ce19" + }, + { + "rel": "item", + "href": "./BE35_10000_0303.json", + "type": "application/json", + "file:checksum": "122066de38b31fc13831e61cfe8c4828bc924bc8f2391e8795c4abe2d6a901d4cec1" + }, + { + "rel": "item", + "href": "./BE35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a4e410e9f26465760debb0ae284610efb89226f5d8a250fc6901ef171f8629fa" + }, + { + "rel": "item", + "href": "./BE35_10000_0305.json", + "type": "application/json", + "file:checksum": "12203d47703dda07281bd6eaf61faa009237181f497a9e645e5d6605fa0f4354f19c" + }, + { + "rel": "item", + "href": "./BE35_10000_0401.json", + "type": "application/json", + "file:checksum": "122091b64c2b7892a7f11d83f9605fbc58c5098e4443aac4f6636980c2ab771416c2" + }, + { + "rel": "item", + "href": "./BE35_10000_0402.json", + "type": "application/json", + "file:checksum": "12204d96f062170a713000fda83a13e26998d59134eefe053164b0913a7662a8b35f" + }, + { + "rel": "item", + "href": "./BE35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f365587fa1190f72a6f38ba36a38e5aaf64eb5a3d244041ac0731549ab928708" + }, + { + "rel": "item", + "href": "./BE35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a38fe2d1fe9bb85e70464440a57337cbc21b49e96aad40fac6a93111bf5a8c7e" + }, + { + "rel": "item", + "href": "./BE35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220133ae0a67a7cf47849a2b24f061d19056581fa72d4b5c72570fd3839a9477f97" + }, + { + "rel": "item", + "href": "./BE35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220061d312cf7ce61c44b875450c5197847a35a8426bb88d978a4fb9013ef0f4d4f" + }, + { + "rel": "item", + "href": "./BE35_10000_0502.json", + "type": "application/json", + "file:checksum": "12200843d2ef8bfc4fbdb089b4093d4b9a7cd0060e24cfdf6bfbf233ff3251c187db" + }, + { + "rel": "item", + "href": "./BE35_10000_0503.json", + "type": "application/json", + "file:checksum": "122060d7975676735bd4618fa2706be6db3c861a062ab55068d79c642f11175d21b8" + }, + { + "rel": "item", + "href": "./BE35_10000_0504.json", + "type": "application/json", + "file:checksum": "122061387264084afa790096e90314ed74a6d083778ed4cbb72199ea36a4d1ac7779" + }, + { + "rel": "item", + "href": "./BE35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220fa05c86fd5b14a62d5c765d4dc8ac7c5769c315f947f3fd5ee1156dc9fd10398" + }, + { + "rel": "item", + "href": "./BE36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220ca867126226b4149359e98aaade15b529a66f7c3f2e592c7dab38b046e7bfe83" + }, + { + "rel": "item", + "href": "./BE36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220d4c4173ef3cb31743e46aab708ff45a3de738bd474319df7f42c4bc527e9c7a1" + }, + { + "rel": "item", + "href": "./BE36_10000_0201.json", + "type": "application/json", + "file:checksum": "12201473350fb3439468823f434881f812f7f0e00398dd707c61238eb5d3441397f7" + }, + { + "rel": "item", + "href": "./BE36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220ac39f77a3cf317287d040ed2659b000ae7bc79ad4c324a8b1b907c23ea472505" + }, + { + "rel": "item", + "href": "./BE36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220674d8a1467d33f4c747b725127176a9a3b4a1202f71261bd1b5ad0c684e0636f" + }, + { + "rel": "item", + "href": "./BE36_10000_0204.json", + "type": "application/json", + "file:checksum": "1220fe2f15a1900e66f9d1120b5e91ac98b0f6be984b7c2c23e36af5182cb378c7b3" + }, + { + "rel": "item", + "href": "./BE36_10000_0301.json", + "type": "application/json", + "file:checksum": "1220f568b4fbc6e9555e1b8554aed3a54d997c0f63f4738408e5bc8134dfee33ba61" + }, + { + "rel": "item", + "href": "./BE36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220bc5d6ba1f9d44037cf45b3c217a7786351ac6e4823ae8218bb7d3a99263467a4" + }, + { + "rel": "item", + "href": "./BE36_10000_0303.json", + "type": "application/json", + "file:checksum": "122080b8b25b7337d37e36d8da4360eaca95cc50a3b1ac0f7813315405d20384dc5b" + }, + { + "rel": "item", + "href": "./BE36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220ee9f6245097a7fca68967cb0033b7f857882bc2e180a2c7b45c845b4eb13adf0" + }, + { + "rel": "item", + "href": "./BE36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220bc61dd83b30aec369fb06943d1d9056ce149ba5809821c8d98f3d933ddd39883" + }, + { + "rel": "item", + "href": "./BE36_10000_0402.json", + "type": "application/json", + "file:checksum": "12209286c916fdc7e4c8070eb5d654177b4e16962d9f94457efa9c547f5097b2ff2e" + }, + { + "rel": "item", + "href": "./BE36_10000_0403.json", + "type": "application/json", + "file:checksum": "1220b786259d30a47e8a25f06da2723996140bba067b29f904f16e24a3cc89bceed4" + }, + { + "rel": "item", + "href": "./BE36_10000_0501.json", + "type": "application/json", + "file:checksum": "1220457281b56136fd4babd571055f4440cfdbeb2d8248072ebafee1a19c4277af73" + }, + { + "rel": "item", + "href": "./BE36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220a6324b5a5b269264d91266d7a476e0abf1e141f3bd6829089dd3c610c537a935" + }, + { + "rel": "item", + "href": "./BE36_10000_0503.json", + "type": "application/json", + "file:checksum": "122091de2125fd7bab9a5dfe3922e4fea910d973683115b0abfcb7eeeb53be5e273c" + }, + { + "rel": "item", + "href": "./BE36_10000_0504.json", + "type": "application/json", + "file:checksum": "12209233fe970b4e2f24a5a1ecd1a7125aef6580bdd2d9d9ce760a05877845ba5ad5" + }, + { + "rel": "item", + "href": "./BE36_10000_0505.json", + "type": "application/json", + "file:checksum": "12202d5ec4936d9958e45f9cb75710d31a17caed117a6b29382e7d400eb14b28d97a" + }, + { + "rel": "item", + "href": "./BF31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220f0a98cdec8dc98aebd8e7eae363a8ce57a30df940f59472cb1de415b0e118d55" + }, + { + "rel": "item", + "href": "./BF31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220949588d9344a9be505887f061e17a99e270ac08f73368e4f8483f88b5ab0c026" + }, + { + "rel": "item", + "href": "./BF31_10000_0203.json", + "type": "application/json", + "file:checksum": "12200cdf6f582079f392307f4221ed3efbc5e8b9630942498b29eae2a0b4ad8157f9" + }, + { + "rel": "item", + "href": "./BF31_10000_0204.json", + "type": "application/json", + "file:checksum": "1220efb85a1beffe07c9117a9911645855d744a143ba5322519f35903975031bec66" + }, + { + "rel": "item", + "href": "./BF31_10000_0205.json", + "type": "application/json", + "file:checksum": "1220bc8c5d84cbe5fdd70e118ebb9b989b86eb7a2b6c8687a24d462cd363f9aac483" + }, + { + "rel": "item", + "href": "./BF31_10000_0303.json", + "type": "application/json", + "file:checksum": "12208c5ce3b6fb8e9cd28368da4b35c777f009e0bbc6b27539497ae3e0a5ec2e0ae5" + }, + { + "rel": "item", + "href": "./BF31_10000_0304.json", + "type": "application/json", + "file:checksum": "1220533422fd88cd91ce5d025fd7fed508a57e48489798da476b31ba378b761b55c2" + }, + { + "rel": "item", + "href": "./BF31_10000_0305.json", + "type": "application/json", + "file:checksum": "12206f1f5995c18a0a18bd872f57c25cc446aced2a228fb29c058dde2d34d1cda873" + }, + { + "rel": "item", + "href": "./BF31_10000_0403.json", + "type": "application/json", + "file:checksum": "12209bb448233341e659000da1a6b86f0deaccce583ae8b3636e1ee8e4b6ee42449d" + }, + { + "rel": "item", + "href": "./BF31_10000_0404.json", + "type": "application/json", + "file:checksum": "122002990aabf2c064dc12f46281a58096217fa13ec4153c4ca57c2839a017e0e51d" + }, + { + "rel": "item", + "href": "./BF31_10000_0405.json", + "type": "application/json", + "file:checksum": "1220a1bb9c294eedf6a428dbbc75aae41f79ec4ecea7883466585ebc61df850c83f8" + }, + { + "rel": "item", + "href": "./BF31_10000_0503.json", + "type": "application/json", + "file:checksum": "12206b58d4986490df2254856e27b7ea691f6f4414d6a22bb946bd482437e442ed1d" + }, + { + "rel": "item", + "href": "./BF31_10000_0504.json", + "type": "application/json", + "file:checksum": "12206a256e030e2efca4d87e51b9baed75a45b49efbb65cbf8bbbaa685c9dbeb8782" + }, + { + "rel": "item", + "href": "./BF31_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b63fb016e4e028578c41e2955734c7afa6052c9503a3d1895e90a20bfe0d7a7a" + }, + { + "rel": "item", + "href": "./BF32_10000_0101.json", + "type": "application/json", + "file:checksum": "122062183ecc2edffcffe85ea0ea3f2ac691660bd8ead3cfb5ada15f6673f551f7ef" + }, + { + "rel": "item", + "href": "./BF32_10000_0102.json", + "type": "application/json", + "file:checksum": "12201753cb4b8accbc6ec0385ad5894d5656f43c1f353cbba600ed4d45fe3a29169a" + }, + { + "rel": "item", + "href": "./BF32_10000_0103.json", + "type": "application/json", + "file:checksum": "12203df72926aa3f6f628f953d7fa953660c888268c4e368838e098ff63985cd7dd6" + }, + { + "rel": "item", + "href": "./BF32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220f50c8e8a846fd9ab6715ee5b7d15637f963396580e8a360c31419837f4ef6233" + }, + { + "rel": "item", + "href": "./BF32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220258e88136d9056c4c3e62f1e9800d8708cd709072ba75dd4b3bac8e95cebf0cc" + }, + { + "rel": "item", + "href": "./BF32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220620f98f02880ac61af1d7e5ebfc38f3238015350c6551b4a2495b409240797fd" + }, + { + "rel": "item", + "href": "./BF32_10000_0202.json", + "type": "application/json", + "file:checksum": "122028a37513991139998cb0421d8d86efa439553b82707cf2f6391ae70bb34e96d3" + }, + { + "rel": "item", + "href": "./BF32_10000_0203.json", + "type": "application/json", + "file:checksum": "12204aec6eccd0dda8cc3e9ac64370d70d6d7bd1b3cb0247af23cd4917cdf6aca60f" + }, + { + "rel": "item", + "href": "./BF32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220c18f107902686067f22eb2caf0a07a2444aad78e4b7103ff6c8da3dc251490ed" + }, + { + "rel": "item", + "href": "./BF32_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b2787d6266915c826bcf1e16c94bb17280065b660d75dd9fa3c0b12412bb2d13" + }, + { + "rel": "item", + "href": "./BF32_10000_0301.json", + "type": "application/json", + "file:checksum": "1220639f6ea5db2c456834827265d431968b9da653e16b46a340895ae67993c5cb86" + }, + { + "rel": "item", + "href": "./BF32_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e085f9322ecd237322d022e586f66b5098276f348a8604abc4f7ca5da41f9b7c" + }, + { + "rel": "item", + "href": "./BF32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c409b81389938396b633aaa170a3efb040235cc82d417efb97c61425e21c2e0a" + }, + { + "rel": "item", + "href": "./BF32_10000_0304.json", + "type": "application/json", + "file:checksum": "12207370cc8b971e585ea2656cdcc48fc825d524946085293ce18f9a284e0b154dcf" + }, + { + "rel": "item", + "href": "./BF32_10000_0305.json", + "type": "application/json", + "file:checksum": "1220c6ad4d8948d52ae741af4084985181f9edec0a00e83aff26b7753230192fc4c6" + }, + { + "rel": "item", + "href": "./BF32_10000_0401.json", + "type": "application/json", + "file:checksum": "1220871e11539f584a8a8106851822b9de26b8bdea60f966e537b5bd92746e77a9d1" + }, + { + "rel": "item", + "href": "./BF32_10000_0402.json", + "type": "application/json", + "file:checksum": "1220a87380f037907a7d358dffb76a701032f5f2894dda0f783d8c2d87f0a09fdd60" + }, + { + "rel": "item", + "href": "./BF32_10000_0403.json", + "type": "application/json", + "file:checksum": "1220be2b9747add5b21869d122ea58654f0bdbc945f64c8127f0a2167317c6c0b917" + }, + { + "rel": "item", + "href": "./BF32_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b423bb0a7f4d0b4e4612dd2d9f8db9a8fe5c7ec961a0fb4fdc95e530f4dc9261" + }, + { + "rel": "item", + "href": "./BF32_10000_0405.json", + "type": "application/json", + "file:checksum": "12209742e2693388cb4da284c2d788be6c5dd85665806db29d79c5e41f6e8232f8fd" + }, + { + "rel": "item", + "href": "./BF32_10000_0501.json", + "type": "application/json", + "file:checksum": "1220dfc68943f68b16a07fff759ca1ad9191da1a9ccbf67be387cd88aae2555fcf92" + }, + { + "rel": "item", + "href": "./BF32_10000_0502.json", + "type": "application/json", + "file:checksum": "122013d505a6c4cee4831d0d5873eb0307df29741c723b61599f008f36563b718b64" + }, + { + "rel": "item", + "href": "./BF32_10000_0503.json", + "type": "application/json", + "file:checksum": "1220129eb9100012d427c706a71fde85a8efca4ae20e45653562ea192967863ad67f" + }, + { + "rel": "item", + "href": "./BF32_10000_0504.json", + "type": "application/json", + "file:checksum": "1220d340d307e2c2efde49bc722b52857ce4fe31bb515244218a34b41368eef16148" + }, + { + "rel": "item", + "href": "./BF32_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d7599e7df88ffb06288f7e20364da266d12e21492a0fc8c3aefc58e410386a2e" + }, + { + "rel": "item", + "href": "./BF33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220da4a779a545b81ae1403833bae86ee5ffc3c02d342f327f6bbb75c7a55031ad1" + }, + { + "rel": "item", + "href": "./BF33_10000_0102.json", + "type": "application/json", + "file:checksum": "1220dd5f78595e41f597cec9e37ef17dbe94a1c29e122f2472bfbca11219cfb306c2" + }, + { + "rel": "item", + "href": "./BF33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220b8071f7bfd5782a2cb4c316065412c1b414e8b31e52448c6cc7965a2f535daa3" + }, + { + "rel": "item", + "href": "./BF33_10000_0104.json", + "type": "application/json", + "file:checksum": "12203d398aff4608c24985a76535947ee0c3dbad9f34c6ba4bfa630a5dd6e36a896a" + }, + { + "rel": "item", + "href": "./BF33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220aab04ed3e3b2835343c9ae4dc6e3dfc039cd021202bbc5135e4d1a2e89d80ea4" + }, + { + "rel": "item", + "href": "./BF33_10000_0201.json", + "type": "application/json", + "file:checksum": "12205409e5fc827f03d43086292fdc0b3c4cbc96e42ecaa123396f7f0a96cb10c6ec" + }, + { + "rel": "item", + "href": "./BF33_10000_0202.json", + "type": "application/json", + "file:checksum": "12200873a8b1f81b8bd08f4866e57a10ff23a4f7baf1fe8939817c4c5b69fb4d646a" + }, + { + "rel": "item", + "href": "./BF33_10000_0203.json", + "type": "application/json", + "file:checksum": "12205927996eef49bf9d28a3a255caaf2001a07dad551a7c963f72707cbc624bcea5" + }, + { + "rel": "item", + "href": "./BF33_10000_0204.json", + "type": "application/json", + "file:checksum": "1220ef75fdb9d0c6f246c409fd6a24498c0813ad6c9b9f698929c7e5bf9f22e44b2e" + }, + { + "rel": "item", + "href": "./BF33_10000_0205.json", + "type": "application/json", + "file:checksum": "12209279301abdc1821a4244cb3e6e02528ea2bfcb0b657af86d30930c67c977977f" + }, + { + "rel": "item", + "href": "./BF33_10000_0301.json", + "type": "application/json", + "file:checksum": "12200f94d81b66fe1790370db78aad9a0ef9ed9e12d870a7f081a79a92e996aa3bbb" + }, + { + "rel": "item", + "href": "./BF33_10000_0302.json", + "type": "application/json", + "file:checksum": "1220b5d184d082ef404ae842cdfdbefc0b05994f80c81f84108f5d5013a14afc5630" + }, + { + "rel": "item", + "href": "./BF33_10000_0303.json", + "type": "application/json", + "file:checksum": "12209e7e1926b7c0f1ee6c235fbdb9a0a6429415bebb0f1eaf704fa29cac45707f47" + }, + { + "rel": "item", + "href": "./BF33_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fd33d3afa7bb4ccf1d8a304ed1f9a9a2351634d9aac01247db35d7453ae0d820" + }, + { + "rel": "item", + "href": "./BF33_10000_0305.json", + "type": "application/json", + "file:checksum": "122051caec319a7dc5c5b58c172ab8ca7c2299584bc7349c96d2143cdafdaeb46931" + }, + { + "rel": "item", + "href": "./BF33_10000_0401.json", + "type": "application/json", + "file:checksum": "1220ec1497069e6c9568e321f380a8cc8f9f0443429071b2c8b66c007efb3ddf8f76" + }, + { + "rel": "item", + "href": "./BF33_10000_0402.json", + "type": "application/json", + "file:checksum": "1220699b3614b9666218a15045a1d0e159fa137a036f5a32b8e5093d57a5ef22bafc" + }, + { + "rel": "item", + "href": "./BF33_10000_0403.json", + "type": "application/json", + "file:checksum": "1220ab120138ff8c3bfea69a92ccf751204ac37793cdf1e5421afdc5e38443ff7302" + }, + { + "rel": "item", + "href": "./BF33_10000_0404.json", + "type": "application/json", + "file:checksum": "1220fe26c01a1da6809b30faf5ea8baa4342caff741d5a90fd2f678a4cc6d4a36fb7" + }, + { + "rel": "item", + "href": "./BF33_10000_0405.json", + "type": "application/json", + "file:checksum": "1220b812ef7d0e1c1038ecbf4b3d3fbeb20f44494dde96e67321e0aff3f30e2af92e" + }, + { + "rel": "item", + "href": "./BF33_10000_0501.json", + "type": "application/json", + "file:checksum": "1220a7013dd2e7a5adfeb8672fca54ed94856f6378cdd6182f7a0485fc3f8c3f0a03" + }, + { + "rel": "item", + "href": "./BF33_10000_0502.json", + "type": "application/json", + "file:checksum": "1220313354411a16556fe05659b3e128a58c635c7821714680c70c6f043fe1d7af1c" + }, + { + "rel": "item", + "href": "./BF33_10000_0503.json", + "type": "application/json", + "file:checksum": "12206a9b33dd8af8526f21e70f0a8ea31bc438b3656398d48633a850b4def7a897aa" + }, + { + "rel": "item", + "href": "./BF33_10000_0504.json", + "type": "application/json", + "file:checksum": "1220213afb1a234f768858dbbdd8f8d3c59544c664cfdf949fafce73599161d7b014" + }, + { + "rel": "item", + "href": "./BF33_10000_0505.json", + "type": "application/json", + "file:checksum": "122029ae3fc30d1786aa1869245cb75865af7b11fd82dcd131892c8c1dcebae20aac" + }, + { + "rel": "item", + "href": "./BF34_10000_0101.json", + "type": "application/json", + "file:checksum": "12205540065726b3ed3f3bb1f1d2bee9a7657e8478e1b48659d8f037b2d3c8d5f880" + }, + { + "rel": "item", + "href": "./BF34_10000_0102.json", + "type": "application/json", + "file:checksum": "1220085146bbb7d36ab94ec028e8b8ba0bfa42ce2e06762f18f15df15f85bf771ea7" + }, + { + "rel": "item", + "href": "./BF34_10000_0103.json", + "type": "application/json", + "file:checksum": "1220d423bbdedc58a92c2e0d317a75b94000c8e95bf2375ca67273ab25a24ccb095a" + }, + { + "rel": "item", + "href": "./BF34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220a31eccd6a02ac0cf1ccd92af80dca4da3a54a26189166a3e3575e5f7478c183f" + }, + { + "rel": "item", + "href": "./BF34_10000_0105.json", + "type": "application/json", + "file:checksum": "12200de0944143cc44bdae89548409dfc9f28cdf19c8c6d9e396235d900f8808ff81" + }, + { + "rel": "item", + "href": "./BF34_10000_0201.json", + "type": "application/json", + "file:checksum": "122024bff4aabbf445c3b5c5b4f17c7aec303bb2bfdef26112408a28dabe65ecaf7e" + }, + { + "rel": "item", + "href": "./BF34_10000_0202.json", + "type": "application/json", + "file:checksum": "12201329f9d38142d552c2de79e62ca68adc3786866d0eda1373a17c44c06af8dcd1" + }, + { + "rel": "item", + "href": "./BF34_10000_0203.json", + "type": "application/json", + "file:checksum": "122063562e29c729bb1ee51c30f1cca21bf7d9acf88ea17ce0402af2814b10c166ec" + }, + { + "rel": "item", + "href": "./BF34_10000_0204.json", + "type": "application/json", + "file:checksum": "12205d2b6667e9f45fd4213e3f0149f17ca5a0e8e172ef7ea18a1108d7e8b577787d" + }, + { + "rel": "item", + "href": "./BF34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220a999513ec021c9318e83dcffc2bae37ead747eee8a10de138df685536e3128ac" + }, + { + "rel": "item", + "href": "./BF34_10000_0301.json", + "type": "application/json", + "file:checksum": "12203aa64c3f57af064a0c3306555237932b64d9df8e558f44bf750f4a56d9f78765" + }, + { + "rel": "item", + "href": "./BF34_10000_0302.json", + "type": "application/json", + "file:checksum": "122090226a45727341ef86beebdd3968869f8a9080a97aa9967c156306875c3a270c" + }, + { + "rel": "item", + "href": "./BF34_10000_0303.json", + "type": "application/json", + "file:checksum": "1220de367e4255b5185053b82e09637faf121a667b5675b029e943333aef76811297" + }, + { + "rel": "item", + "href": "./BF34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220de3f2edf8f5c17e2f4eb8c712553005df31375442b5196a0be03f0760202b890" + }, + { + "rel": "item", + "href": "./BF34_10000_0305.json", + "type": "application/json", + "file:checksum": "12202a74e30578f6ee6db3ea8be9718968c1180ba892be3830f58673c1ce4426a454" + }, + { + "rel": "item", + "href": "./BF34_10000_0401.json", + "type": "application/json", + "file:checksum": "12206068a1e055e23d06eeb731c036bfe0b0b45ccc3d266416ee0115034af68922f9" + }, + { + "rel": "item", + "href": "./BF34_10000_0402.json", + "type": "application/json", + "file:checksum": "1220b89ae9687e1d3051d8c350aad878893099d30a2cf85cb754e67a1f49cc00abfd" + }, + { + "rel": "item", + "href": "./BF34_10000_0403.json", + "type": "application/json", + "file:checksum": "12202661a3dc94c91121dadf6348845cf8fadfe51e07fdef348cfb51d33ee9abb2b8" + }, + { + "rel": "item", + "href": "./BF34_10000_0404.json", + "type": "application/json", + "file:checksum": "122086c92416a6f45cc2ca21d763e7a2858cb192c9b4fc9993d39308614a0c365041" + }, + { + "rel": "item", + "href": "./BF34_10000_0405.json", + "type": "application/json", + "file:checksum": "122089f35467481ed462959d5891696ca4d1fdf1fcbd1bd8c8722a6c935d5e01f537" + }, + { + "rel": "item", + "href": "./BF34_10000_0501.json", + "type": "application/json", + "file:checksum": "1220420f114ca71635e6aa506e077d3177bd4a9728392398d9c4794ff11b5277018d" + }, + { + "rel": "item", + "href": "./BF34_10000_0502.json", + "type": "application/json", + "file:checksum": "12202b550953deaa12368196c676e48b888c79794eafa9e48d6352705cb1dbb4c804" + }, + { + "rel": "item", + "href": "./BF34_10000_0504.json", + "type": "application/json", + "file:checksum": "122004e8d6ccf181504562b38542d39fab99661e49e031c77027e768424c47cba3c7" + }, + { + "rel": "item", + "href": "./BF34_10000_0505.json", + "type": "application/json", + "file:checksum": "12202d31ddd40711a13095eeb4cf511c8b1fd35ffd27146b8034b49e44786e1b6608" + }, + { + "rel": "item", + "href": "./BF35_10000_0101.json", + "type": "application/json", + "file:checksum": "1220f32b2ca2393a5ca147efc47af7fb43c0a352c96859086cd7159835bb1a0137f6" + }, + { + "rel": "item", + "href": "./BF35_10000_0102.json", + "type": "application/json", + "file:checksum": "12206cae886259ae39969d58e513841bf669061956882612a80ee4210d02a7344470" + }, + { + "rel": "item", + "href": "./BF35_10000_0103.json", + "type": "application/json", + "file:checksum": "12204d92aaecf8cebd5ec12a0af5a840324a540a4e461bc8998b6b0a453605465318" + }, + { + "rel": "item", + "href": "./BF35_10000_0104.json", + "type": "application/json", + "file:checksum": "12207d464b22b6acc14b54561bd9b36026cb597dcef7942f26db3b3c8318881dd408" + }, + { + "rel": "item", + "href": "./BF35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220689f1d6ee500c8df18fea5f091a10c8c2ddbee283eb21c24e73ea524d58c5160" + }, + { + "rel": "item", + "href": "./BF35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d89a300da5524264e0a933e27ce054aab5fb4141cd644508870819cdb469d307" + }, + { + "rel": "item", + "href": "./BF35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220a94e16100db6adfdb49dda4f29db58b4b223968abc5b3e9666e82cf429e996f9" + }, + { + "rel": "item", + "href": "./BF35_10000_0203.json", + "type": "application/json", + "file:checksum": "1220ede09c587553efc42fab2373082c3feafcd49b4af2ae0022f9ae4fbc71dc9f09" + }, + { + "rel": "item", + "href": "./BF35_10000_0204.json", + "type": "application/json", + "file:checksum": "122004e6849cbeb1c88931315ab4c9595d54f52a267949de6412f25fb70dbcba42f9" + }, + { + "rel": "item", + "href": "./BF35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220ac0a171060344d2adfcdd87f433c61a3cb4711d893eb41e63e07bcb2fa84ec6f" + }, + { + "rel": "item", + "href": "./BF35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220bce638384c5fcb551528e1c07fa6bf3c6a675f1ea4090e034bb63188301b6769" + }, + { + "rel": "item", + "href": "./BF35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220ef08365434b1b24eaa3c6c26f0036c64ae1dfdbfc2a30dd322c6bd5f89b09212" + }, + { + "rel": "item", + "href": "./BF35_10000_0303.json", + "type": "application/json", + "file:checksum": "12204dc0b35f232d452c0d298fe7c4cf875be9dd099f300cd802a9194d7c547b918c" + }, + { + "rel": "item", + "href": "./BF35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a5e3944b0babde74716c8ddebf44314ff0bf29a9589dcb7995ad6ecb44309c13" + }, + { + "rel": "item", + "href": "./BF35_10000_0305.json", + "type": "application/json", + "file:checksum": "12209379e098f0b963002b0a648c6f9af14e52803d4ee78c51dedd2d679f80c78a0a" + }, + { + "rel": "item", + "href": "./BF35_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d31dad7076fc1d20a12268a7cdc30e984687104fad1442db76351b36c319b1c7" + }, + { + "rel": "item", + "href": "./BF35_10000_0402.json", + "type": "application/json", + "file:checksum": "1220d9cfc46e494a459a4c3deaa7da8fa161d85a6b37593f718c256f96525c645cdb" + }, + { + "rel": "item", + "href": "./BF35_10000_0403.json", + "type": "application/json", + "file:checksum": "122066873fd25dbe81e0c80c73cfee1ed6736d5b1a87ce8b76bd5026b614f16acbb0" + }, + { + "rel": "item", + "href": "./BF35_10000_0404.json", + "type": "application/json", + "file:checksum": "12202f58ab7ca26e03dfcd1ed348a9b9b4ceb582782a7682ea69a806ab97d2c70505" + }, + { + "rel": "item", + "href": "./BF35_10000_0405.json", + "type": "application/json", + "file:checksum": "1220af7230c7453d1d17a24292b6cde908a49de875d55cf994deb3ff3601cd4f9f61" + }, + { + "rel": "item", + "href": "./BF35_10000_0501.json", + "type": "application/json", + "file:checksum": "122046054888f130673996c45b1ca45d98cd17b479837689b70bd6d87440427d9499" + }, + { + "rel": "item", + "href": "./BF35_10000_0502.json", + "type": "application/json", + "file:checksum": "12203a1a81900450bc44e06babaa86f52b58255e198bdeab73d7e6e2cafe06b73bf6" + }, + { + "rel": "item", + "href": "./BF35_10000_0503.json", + "type": "application/json", + "file:checksum": "12201aa7ecf84bb4f29a6a8cdab3cef140ac451d5887a266f6348e58b898900d8291" + }, + { + "rel": "item", + "href": "./BF35_10000_0504.json", + "type": "application/json", + "file:checksum": "122051758f1db61ae2cb2dfc188ef682f7cc4ef1ed08166f58e80395e7287cb14d9f" + }, + { + "rel": "item", + "href": "./BF35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220ed66515e84740c1b2f0b8d29dcd3374740c2b536e491b1a39e607a72025470c4" + }, + { + "rel": "item", + "href": "./BF36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220aac7e9cf6facf3afafb035164d91958a07806b4fffe262f11d511dd50c1dc651" + }, + { + "rel": "item", + "href": "./BF36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220c9073e5edd58d164cb831a8b6cbd73c17855daf294a0649c475cb2b8126caa34" + }, + { + "rel": "item", + "href": "./BF36_10000_0103.json", + "type": "application/json", + "file:checksum": "12208a14acbcd593e17327846f44427601b6c6a9b42e957e2255bc7c8920d8f79836" + }, + { + "rel": "item", + "href": "./BF36_10000_0104.json", + "type": "application/json", + "file:checksum": "12201d64da6f98076cbda737ff1f553273f25d75aacd333d7caff91ab08c09b4bcff" + }, + { + "rel": "item", + "href": "./BF36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220d59c834cd28da7486ab14c1d35f72cd1c136271b7559348677afeae32eda8adc" + }, + { + "rel": "item", + "href": "./BF36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220413fc61cc5a93aa91c3b5a85970284a904b2bb3d601b44f55815574cf31630a6" + }, + { + "rel": "item", + "href": "./BF36_10000_0202.json", + "type": "application/json", + "file:checksum": "122032e56d732a3c7faba8c2bc19bab150aa51b16b718d3696d797e5da68f83706d8" + }, + { + "rel": "item", + "href": "./BF36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220b2fdd3cdbeaa8636a7db7acc123d7b6305d9440de84a83b5c3a1f9e05958ace6" + }, + { + "rel": "item", + "href": "./BF36_10000_0204.json", + "type": "application/json", + "file:checksum": "12202ae784422a8a1549fb5c3611c3f1359e40473bfa80570badeb7dee290edda467" + }, + { + "rel": "item", + "href": "./BF36_10000_0205.json", + "type": "application/json", + "file:checksum": "122078714507e4464bf0d148894ec7cb36cd17497446b7d60d3bc6d9ca0c36cfd6f4" + }, + { + "rel": "item", + "href": "./BF36_10000_0301.json", + "type": "application/json", + "file:checksum": "12200957ecd60f0f8e29dc5a5c5b05b3395d1f441143a4d44d8f29b30d63b53cb9f8" + }, + { + "rel": "item", + "href": "./BF36_10000_0302.json", + "type": "application/json", + "file:checksum": "1220910dca8a84f23141b566a988074cd5366b66b2c19533eb522b2ed46ee710e901" + }, + { + "rel": "item", + "href": "./BF36_10000_0303.json", + "type": "application/json", + "file:checksum": "12205eb531611a229e9330ea8447627b5fe096f5b77d8043479e092a5f3e3d331283" + }, + { + "rel": "item", + "href": "./BF36_10000_0304.json", + "type": "application/json", + "file:checksum": "122096b016ba05a81d998919102aa0e29ecc22610df980af5e9dc38a74b33919e40a" + }, + { + "rel": "item", + "href": "./BF36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220b65e6eeffc6f7d841e0ec65818f6c8b7207f5465bba8e0e5c05ccdb143ad6842" + }, + { + "rel": "item", + "href": "./BF36_10000_0402.json", + "type": "application/json", + "file:checksum": "122098be5be01c089dd8d22960547a88a750bfa0ed97abeb6d22eff55fbbf099d4af" + }, + { + "rel": "item", + "href": "./BF36_10000_0403.json", + "type": "application/json", + "file:checksum": "122048eae553cd8d0d754585d88f93e21c758bd5caedb107a83616f8d28e83fb3812" + }, + { + "rel": "item", + "href": "./BF36_10000_0404.json", + "type": "application/json", + "file:checksum": "122091f3c8f43981e5f8a13a145189de19f6eddf3cf15cfb879f0345d32701c6b6c0" + }, + { + "rel": "item", + "href": "./BF36_10000_0405.json", + "type": "application/json", + "file:checksum": "1220dd8fbc43cd89645992dd1fd3989ced7b229394fee5d493c23db779a0c5e29f7f" + }, + { + "rel": "item", + "href": "./BF36_10000_0501.json", + "type": "application/json", + "file:checksum": "12203a1ade481d57443e4ee53a480ff66d157db12ab4f2f79b2b5b6aa286c94ceb71" + }, + { + "rel": "item", + "href": "./BF36_10000_0502.json", + "type": "application/json", + "file:checksum": "1220cadf60c2930d98d6347c8571d5b96297b8de159da3434884d6194d9c37a65e4f" + }, + { + "rel": "item", + "href": "./BF36_10000_0503.json", + "type": "application/json", + "file:checksum": "12205e5784d7eac5b672720b5f1036526339892e16cc1113b4607e38c5aa0e7889a5" + }, + { + "rel": "item", + "href": "./BF36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220b9a74d624efde286349f9c7681111510cf90f0cd098e1c48a13e474f6fc63a7e" + }, + { + "rel": "item", + "href": "./BF36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220d30044a199b2bd4345959beb196942640c3a1c363fd2bb873fb1a9a952a514ab" + }, + { + "rel": "item", + "href": "./BF37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220dc353a0be9db64efc73325305f4b499fd0174f7254edcde13f95d3f590149c71" + }, + { + "rel": "item", + "href": "./BF37_10000_0502.json", + "type": "application/json", + "file:checksum": "12202caad663917cad9df91c5bd64632c9e7bbf3122354f74add64cb1a385ec434f1" + }, + { + "rel": "item", + "href": "./BF37_10000_0503.json", + "type": "application/json", + "file:checksum": "12206e6231eb74ade510b36577babb504d5af76fbf18120fd885c726546d37b6d173" + }, + { + "rel": "item", + "href": "./BF37_10000_0504.json", + "type": "application/json", + "file:checksum": "12207d3d308cb88063c602984474a04879257b4563339d979689918adb89f995ac58" + }, + { + "rel": "item", + "href": "./BF37_10000_0505.json", + "type": "application/json", + "file:checksum": "12208a7e3677b4864dff025bd89b2012fcefd6768d3399e22ca4c49a80188e3e6156" + }, + { + "rel": "item", + "href": "./BF38_10000_0501.json", + "type": "application/json", + "file:checksum": "12205e83d7978b155a7058a7323283590fc85f682cc2979a81a5bdc66ace8df7f9e9" + }, + { + "rel": "item", + "href": "./BF38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220911b9035db2b0f139dac2ebe4e79c41b22381a17b795b0b20a38d6d55d986925" + }, + { + "rel": "item", + "href": "./BG31_10000_0102.json", + "type": "application/json", + "file:checksum": "122086fcde573d98d46f46e000bc4759d497d346b64d259183b1d28594447512fe16" + }, + { + "rel": "item", + "href": "./BG31_10000_0103.json", + "type": "application/json", + "file:checksum": "1220a89d35a86b5494e16377851aa8d5e480a629c8bcf724ede81466cd7de395a7c5" + }, + { + "rel": "item", + "href": "./BG31_10000_0104.json", + "type": "application/json", + "file:checksum": "1220db44f77a79c29c62287c17d6cf65ddc604a2b4fa791142247ed473c839887407" + }, + { + "rel": "item", + "href": "./BG31_10000_0105.json", + "type": "application/json", + "file:checksum": "1220286f7417cadd1077403558a0040c165074783531dd9a27033a142af21456c7aa" + }, + { + "rel": "item", + "href": "./BG31_10000_0202.json", + "type": "application/json", + "file:checksum": "1220409a4cd7b7b4c5a7f2bfbe1bc234e55cbc39874ad8c5a26465b036ea925132a6" + }, + { + "rel": "item", + "href": "./BG31_10000_0203.json", + "type": "application/json", + "file:checksum": "1220891706d45323c148cd34a38766f9a6aebca8226577f8dd432956130aec178018" + }, + { + "rel": "item", + "href": "./BG31_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d8f5a386510f9f5f1b485d63e6fb2fcc1e600fb53769e62117cbce9f99fa8589" + }, + { + "rel": "item", + "href": "./BG31_10000_0205.json", + "type": "application/json", + "file:checksum": "12203073ca211c7bcab6606f3b66077cd748e41c6159c24d65bcebffb192cf9509d6" + }, + { + "rel": "item", + "href": "./BG31_10000_0302.json", + "type": "application/json", + "file:checksum": "12203bbe8d16f7858b3ba2266421f23a2cc2483ec6e59a916052b1b919fd46dc55e8" + }, + { + "rel": "item", + "href": "./BG31_10000_0303.json", + "type": "application/json", + "file:checksum": "12205c797ab69883e6e2ed4a73b048d5384790b18abfc8805376c1c4df0ecbca0485" + }, + { + "rel": "item", + "href": "./BG31_10000_0304.json", + "type": "application/json", + "file:checksum": "12205cce5158002c78b554a510de54ae5ab72677ba21c6d0ae05c407770daeb51f1d" + }, + { + "rel": "item", + "href": "./BG31_10000_0305.json", + "type": "application/json", + "file:checksum": "1220ddcb9c4a856208bd665b2b25f2182e4cf5b76364525073157c85fdb973213655" + }, + { + "rel": "item", + "href": "./BG32_10000_0101.json", + "type": "application/json", + "file:checksum": "12208bb79042d9d9920d2e1c247e2f260879d530bc4816848ef48dfdf20f40712cba" + }, + { + "rel": "item", + "href": "./BG32_10000_0102.json", + "type": "application/json", + "file:checksum": "122058bd3ee184c129c71a38caa1ce2b3fc975348b4db2f3c993da9c53878c355a94" + }, + { + "rel": "item", + "href": "./BG32_10000_0103.json", + "type": "application/json", + "file:checksum": "12202986f273bfcee7a0861a3f60063d9f54b8c5848b707d77376e332f41020a8c22" + }, + { + "rel": "item", + "href": "./BG32_10000_0104.json", + "type": "application/json", + "file:checksum": "1220d7cef0fc14d44aa814c543a21bf396118a064535ec690fa7477936422f923e8d" + }, + { + "rel": "item", + "href": "./BG32_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c1fc806de63b2eafa4763fe8aa9b33109089a25946df6918555ca241668047f4" + }, + { + "rel": "item", + "href": "./BG32_10000_0201.json", + "type": "application/json", + "file:checksum": "1220f61d076cb116f4a0e713c994cb28a783e367d47a5ccca3898a81b22663acad59" + }, + { + "rel": "item", + "href": "./BG32_10000_0202.json", + "type": "application/json", + "file:checksum": "122058b47302980187888ba784247e7ff38febc0d6af6cf70dc4263a221275385312" + }, + { + "rel": "item", + "href": "./BG32_10000_0203.json", + "type": "application/json", + "file:checksum": "12203eda9169d97c6c2c5aba0b872b504761ed9af3cf80587e2ffb9205df8c3d2be0" + }, + { + "rel": "item", + "href": "./BG32_10000_0204.json", + "type": "application/json", + "file:checksum": "1220d997a91d5aba277aa5ef6004a357349ee61b3209cc90badb2915fd81c033af29" + }, + { + "rel": "item", + "href": "./BG32_10000_0205.json", + "type": "application/json", + "file:checksum": "12207defe24cc50ee64d47e28fc730851fb12d1a9d5d144edb543ffd746d4882c28e" + }, + { + "rel": "item", + "href": "./BG32_10000_0301.json", + "type": "application/json", + "file:checksum": "12203d17eadffa952d6ae701d2a4a59efe8a50dbdde406e9019e7151b92561072965" + }, + { + "rel": "item", + "href": "./BG32_10000_0302.json", + "type": "application/json", + "file:checksum": "12201791233129f484a423d91c8143c743721d0706b8bcb74850c4f332c7d544298a" + }, + { + "rel": "item", + "href": "./BG32_10000_0303.json", + "type": "application/json", + "file:checksum": "1220372ac8323c8067da0c27f5f815802b56af313d3c7e33af15959542e9ca4c5559" + }, + { + "rel": "item", + "href": "./BG32_10000_0304.json", + "type": "application/json", + "file:checksum": "12207e52db9e6c8436c0eac1e6cb4fe05f1bbf076db4d228adf6ff2a1a1e33c5e6ac" + }, + { + "rel": "item", + "href": "./BG32_10000_0401.json", + "type": "application/json", + "file:checksum": "12202ecc69317fe704bd0f9322f52f3b7057fb87647d35ef1d9bc59815efe669ca30" + }, + { + "rel": "item", + "href": "./BG32_10000_0402.json", + "type": "application/json", + "file:checksum": "122023744b07c3d8584fba906b4847dfa1aa69c31d3e2a22c9249562b730f9187ba9" + }, + { + "rel": "item", + "href": "./BG33_10000_0101.json", + "type": "application/json", + "file:checksum": "1220594d158d5f916b0df5901a0b3ef7c362b0fdd7944e518f3af69e2c3068eaa9eb" + }, + { + "rel": "item", + "href": "./BG33_10000_0102.json", + "type": "application/json", + "file:checksum": "12208f83351cf01d46cdaf0ee92d16cd70d1a6238ea8ba518c3d63f948c2e6c1fbf3" + }, + { + "rel": "item", + "href": "./BG33_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f088f4b4626f0eb40ea6ab1b523c6f96c06cf678cc2ffcffa433fad89e33ddf5" + }, + { + "rel": "item", + "href": "./BG33_10000_0104.json", + "type": "application/json", + "file:checksum": "1220bac5107eda9d26db37f68f37c32fea9adf0e25e1a91380f93147ca9ef7cc29b2" + }, + { + "rel": "item", + "href": "./BG33_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a954aa3d7614d73df78505d5f491dceac772676966b64c6b7acb776d1d10fd04" + }, + { + "rel": "item", + "href": "./BG33_10000_0201.json", + "type": "application/json", + "file:checksum": "12206be28433fd785a0f31a2e9e67ddb50151e8cc22152f1b7f7b03879b4fcaf0bd8" + }, + { + "rel": "item", + "href": "./BG33_10000_0202.json", + "type": "application/json", + "file:checksum": "1220ee097ab8fb8e3427d960437bdfcaea8b4179cf1d269662daacfe1aa0adc97a33" + }, + { + "rel": "item", + "href": "./BG33_10000_0203.json", + "type": "application/json", + "file:checksum": "1220d7b24627bf8e736d08e0c17f9bf63b97cab41f6c81eb2d6fbb010ed754cdb348" + }, + { + "rel": "item", + "href": "./BG33_10000_0204.json", + "type": "application/json", + "file:checksum": "122097cdc6f891277e2a217b944d467765eaa20c4ba1551583e14061c9d697600551" + }, + { + "rel": "item", + "href": "./BG34_10000_0101.json", + "type": "application/json", + "file:checksum": "12209dba057a3c857d870a303e49f15236c9de7ead24d4e004cd0884accd263285f5" + }, + { + "rel": "item", + "href": "./BG34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220307ed65245481c87603562d99f0725efe7c740bf325c82c7efd8a173a01fb8f2" + }, + { + "rel": "item", + "href": "./BG34_10000_0205.json", + "type": "application/json", + "file:checksum": "12201398f63acd7ff36e82eb969edc83f741d29b2efadf1d9d9eb0e3453065169925" + }, + { + "rel": "item", + "href": "./BG34_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a4160838a561ac710a8f07e5bfb94e9b9e3767a77a6547c88a60b9ce06cc1d92" + }, + { + "rel": "item", + "href": "./BG34_10000_0305.json", + "type": "application/json", + "file:checksum": "12208a537163834b1c932fe5f51da15856d499723908b2ed4caa18b0e821de032454" + }, + { + "rel": "item", + "href": "./BG34_10000_0404.json", + "type": "application/json", + "file:checksum": "1220bac615e0207feb7127393c18a199ec787a7fcdc637b00d6258fb9115f974028a" + }, + { + "rel": "item", + "href": "./BG34_10000_0405.json", + "type": "application/json", + "file:checksum": "1220d871689469033d1574bfd45e608f37824e638d8f916c306d25207cf8f0c894f9" + }, + { + "rel": "item", + "href": "./BG34_10000_0504.json", + "type": "application/json", + "file:checksum": "1220822d83b1557ef2e28bbf379f76b71f7dbc8c50ee2626c877b60fc7013d9919d5" + }, + { + "rel": "item", + "href": "./BG34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220b3199e99bc39ddd1b4ef8ec48aeed73f000b5e0bdece51cae84d0c7d2f7fd995" + }, + { + "rel": "item", + "href": "./BG35_10000_0101.json", + "type": "application/json", + "file:checksum": "12201b2a4b7ce52bec41213eef31ac5c0d627b5642b827d3d0bdb31fd1da3f08db03" + }, + { + "rel": "item", + "href": "./BG35_10000_0102.json", + "type": "application/json", + "file:checksum": "1220ce32800b43fbb2d60ba6123110c8b88b5fe5e4a248df22ddc9d6bdecbe526467" + }, + { + "rel": "item", + "href": "./BG35_10000_0103.json", + "type": "application/json", + "file:checksum": "12202edf02ec454c4927b278a3b23f0c5c6a28ed5c072ef03fa5fae77a51a1f1203e" + }, + { + "rel": "item", + "href": "./BG35_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b25a1174a78a2a88d3976123fa9e928b182ebf036973a8e2b22f02a5edd2dda4" + }, + { + "rel": "item", + "href": "./BG35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220ec86ed52143194fbc46b8dcae27df2d6ccb84747e6c354a72881c7237d71805e" + }, + { + "rel": "item", + "href": "./BG35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220eafe745e28de3a53f071e22be87b4bfaa0946779b1f06a81d2527fa0a3a493a3" + }, + { + "rel": "item", + "href": "./BG35_10000_0202.json", + "type": "application/json", + "file:checksum": "12202cf52adea4876d218652519da0ceae11829f9cc55599819335168e5b4635f3c1" + }, + { + "rel": "item", + "href": "./BG35_10000_0203.json", + "type": "application/json", + "file:checksum": "12201d4a36d7e92fbf964c04440086abe53abc861c3174d334c87209312ccde035d7" + }, + { + "rel": "item", + "href": "./BG35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220002541f58b535477852ff1ce8a07492d11331f9718d62066c498e00e7600cb08" + }, + { + "rel": "item", + "href": "./BG35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220d16fac290270b503c30ee871419b4eec86d793900ff95c81b0e5760589637194" + }, + { + "rel": "item", + "href": "./BG35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220e9648d840deeddecbb5a80aea914cd49008203c60b3886e19110a9142cd69d17" + }, + { + "rel": "item", + "href": "./BG35_10000_0302.json", + "type": "application/json", + "file:checksum": "1220838bde4e989dbc27f02ffa3177d41c88f012db236b4a86539db354993a310ca1" + }, + { + "rel": "item", + "href": "./BG35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220212c024902e51874701bb77d4e57a0e553d4ab15c098a4dca6b8d3294128f506" + }, + { + "rel": "item", + "href": "./BG35_10000_0304.json", + "type": "application/json", + "file:checksum": "1220242e90866d8db0191dbf4646b56c69c4335050821d0ea9f911e8060ce9e96af7" + }, + { + "rel": "item", + "href": "./BG35_10000_0305.json", + "type": "application/json", + "file:checksum": "12209f90e16133ff20ca42ee5fe0b4ed3d2f5f670f976c4749e36e70853d33f6a1a1" + }, + { + "rel": "item", + "href": "./BG35_10000_0401.json", + "type": "application/json", + "file:checksum": "122038f3868bba998bad0aac2a4a902b58cd0e85aed4a0638e45e6d81931d9d000d4" + }, + { + "rel": "item", + "href": "./BG35_10000_0402.json", + "type": "application/json", + "file:checksum": "12208a84fbe024e68f0414a67ac6a5d7245898460796b07e7dd907e6229363794f77" + }, + { + "rel": "item", + "href": "./BG35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220d4cecc81b4d470e33b1011d734e30053eacb52782360af12a67edfbf30b83d70" + }, + { + "rel": "item", + "href": "./BG35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a584d2f524eb93cab8b5cce14dd6295d466c5f592cfd6c5ae46e864c68505ab0" + }, + { + "rel": "item", + "href": "./BG35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220f888235cdd2070bb578f66e0b334a0409df80d804878bce3b155463d456fc1a2" + }, + { + "rel": "item", + "href": "./BG35_10000_0502.json", + "type": "application/json", + "file:checksum": "12205ff1ff232f07edae6781163da6f1cd73a8c06d6aa583bedbccea4c899191ad57" + }, + { + "rel": "item", + "href": "./BG35_10000_0503.json", + "type": "application/json", + "file:checksum": "1220dc5508f5b71855415829ecc16f76ea235ac862a4132bbae89e0e1f5af31cb9b6" + }, + { + "rel": "item", + "href": "./BG35_10000_0504.json", + "type": "application/json", + "file:checksum": "12207ee246afba7cfbd005552c97b22cc390557d1d414b7ec4a696bec1f86a9a1585" + }, + { + "rel": "item", + "href": "./BG36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220b92f07aa0602a2ed43a72c6029c5322c7d1bbc2e27f7c1e47e5bf3345d2b2530" + }, + { + "rel": "item", + "href": "./BG36_10000_0102.json", + "type": "application/json", + "file:checksum": "12209974fa487153be320a08c068a0a313972c3a54e0ae5647ef58cf702e9c20c078" + }, + { + "rel": "item", + "href": "./BG36_10000_0103.json", + "type": "application/json", + "file:checksum": "1220bd13a56bc29c066d246184a94c657266930ab49c81f97a351bc8a97e8e8f0095" + }, + { + "rel": "item", + "href": "./BG36_10000_0104.json", + "type": "application/json", + "file:checksum": "1220b689240838d2dbddce174a96f4b3b729090034a61b96288e9e8e4a4976e19ed4" + }, + { + "rel": "item", + "href": "./BG36_10000_0105.json", + "type": "application/json", + "file:checksum": "12206f4847de29c3b907e5d0e4e18354b2c45596f48ba2192b5794067437c7bc0801" + }, + { + "rel": "item", + "href": "./BG36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220143bd2df11623170e5191773458b6424908860a3006448bbb75d204abab52df8" + }, + { + "rel": "item", + "href": "./BG36_10000_0202.json", + "type": "application/json", + "file:checksum": "1220340890555b3382a6f892a89d069d3dd381180a4bec038474530bf9270e3d9de5" + }, + { + "rel": "item", + "href": "./BG36_10000_0203.json", + "type": "application/json", + "file:checksum": "1220a827accbc1605e62d0ea5b2db9949e80be1b27f3e84efea47806fcbf4c7de295" + }, + { + "rel": "item", + "href": "./BG36_10000_0204.json", + "type": "application/json", + "file:checksum": "12209ddc2618bc53780a55b0abf33a3bdf15841774140c0469ad34f7e95799b45737" + }, + { + "rel": "item", + "href": "./BG36_10000_0205.json", + "type": "application/json", + "file:checksum": "12206c0ce7819794c475223921e52dca3f60901a4ade0c90f02b135dde04b17c779d" + }, + { + "rel": "item", + "href": "./BG36_10000_0301.json", + "type": "application/json", + "file:checksum": "122097f9b51b75fa92718a6d54754405a35903147088a6892d2135cf581037a2c33c" + }, + { + "rel": "item", + "href": "./BG36_10000_0302.json", + "type": "application/json", + "file:checksum": "122013412c7e62e6e7546b490e654bf8fb1eec697f38a33ba5948d9651422e1237e8" + }, + { + "rel": "item", + "href": "./BG36_10000_0303.json", + "type": "application/json", + "file:checksum": "12203be8dc2b9acb6e0948942d27766091a89998cff2a68e6001acf6317e9237c94c" + }, + { + "rel": "item", + "href": "./BG36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220fcac6979fdaf47ad9e0e378fffea673bbf777dfea22e2f1ff4997b6ac18c6c45" + }, + { + "rel": "item", + "href": "./BG36_10000_0305.json", + "type": "application/json", + "file:checksum": "1220d634aff02b723b241530cf092b18951b35b2887ad7629041b6ac85f0b5e40b94" + }, + { + "rel": "item", + "href": "./BG36_10000_0402.json", + "type": "application/json", + "file:checksum": "122013d5a98510c960a3d4b1774d261fafd307af49caa79569d4f130b8984166a02c" + }, + { + "rel": "item", + "href": "./BG36_10000_0403.json", + "type": "application/json", + "file:checksum": "12209cb90ccc4a057997c5901489b3aac25f467c11b0502c1a24593827ea5a304ac0" + }, + { + "rel": "item", + "href": "./BG36_10000_0404.json", + "type": "application/json", + "file:checksum": "1220922e372f076e5fbbb362c9ac0dcb483276501c24a413cfaf380d7142a9072a58" + }, + { + "rel": "item", + "href": "./BG36_10000_0405.json", + "type": "application/json", + "file:checksum": "122045c36b62c7a6b659fec34b5d79e27a46bad7a70a3937712d30006f85ed6a7976" + }, + { + "rel": "item", + "href": "./BG36_10000_0501.json", + "type": "application/json", + "file:checksum": "12209a39527de802aa2e1cf161a3e4bc0c7db2a5a3720330b37fb8afa874c170fda1" + }, + { + "rel": "item", + "href": "./BG36_10000_0502.json", + "type": "application/json", + "file:checksum": "122062b3dbf9a0fd8add806be4842bfefa6d8e378c61a8deee8f676eecad5c665d59" + }, + { + "rel": "item", + "href": "./BG36_10000_0503.json", + "type": "application/json", + "file:checksum": "12202824d9d14b9bc58c399eeef22e789916579952c4cf220f2f7601025e6bd5a790" + }, + { + "rel": "item", + "href": "./BG36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220df8dc4f31247d95be560dcc7afb7096ed67c8c811781d1d730b7b779798dfb3a" + }, + { + "rel": "item", + "href": "./BG36_10000_0505.json", + "type": "application/json", + "file:checksum": "122021c0ac3db5169ba2fab02ccb95726e9fab9979aa5609492485fa45041a9e0ebf" + }, + { + "rel": "item", + "href": "./BG37_10000_0101.json", + "type": "application/json", + "file:checksum": "12207d8c81df8604f70c8a992a1aec7be1ffa49686d13e03fbaf3e26359eae081b46" + }, + { + "rel": "item", + "href": "./BG37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220b7d2d878c59aed768a8933d65db1144e6f943e6911b92b3e1e57648b9c586238" + }, + { + "rel": "item", + "href": "./BG37_10000_0103.json", + "type": "application/json", + "file:checksum": "1220c43a7e2b5c8508c852ee686e5f2f9c33fc3730eef99df0639405eff72911c105" + }, + { + "rel": "item", + "href": "./BG37_10000_0104.json", + "type": "application/json", + "file:checksum": "12204e7d3a395039628b1189b98f0f2055c7dc414686a9a7398b792bfc48ef6e9a91" + }, + { + "rel": "item", + "href": "./BG37_10000_0105.json", + "type": "application/json", + "file:checksum": "12202991f2c36c1b7489f8f23fed833adf22ed1863279eb322294e390d4c87e58cac" + }, + { + "rel": "item", + "href": "./BG37_10000_0201.json", + "type": "application/json", + "file:checksum": "122063e193eed22eb8e581a8d663c4895bb272533bedb2565fa88fda1418660baa07" + }, + { + "rel": "item", + "href": "./BG37_10000_0202.json", + "type": "application/json", + "file:checksum": "12203f074b6754cd44a8508218d94f54bcd4edfa88083c5a77dd730e277e28a188a0" + }, + { + "rel": "item", + "href": "./BG37_10000_0203.json", + "type": "application/json", + "file:checksum": "1220e0b570a82a859bad12fc1ab23099f014368527b506a610b5c02049a8e03b1e4d" + }, + { + "rel": "item", + "href": "./BG37_10000_0204.json", + "type": "application/json", + "file:checksum": "12207c751ba77ba4e20362defc8e6cade490c7f7cc94f1407e931d7581c11e66ccd6" + }, + { + "rel": "item", + "href": "./BG37_10000_0205.json", + "type": "application/json", + "file:checksum": "122037f1c576d3d410473d55b16c19c18d0f504e0036165e8fb7073b83923cd1b978" + }, + { + "rel": "item", + "href": "./BG37_10000_0301.json", + "type": "application/json", + "file:checksum": "1220c5030f90c4724c7313a52a051e9ed0ec0ca3c80f901afcf6c849880d39fa1ff2" + }, + { + "rel": "item", + "href": "./BG37_10000_0302.json", + "type": "application/json", + "file:checksum": "122019f5cccf922cb3a914cc94c676c9530080bcaa29dc74216775b35ff255fb0066" + }, + { + "rel": "item", + "href": "./BG37_10000_0303.json", + "type": "application/json", + "file:checksum": "122086835f44e8d83977fc4c804ab6bc685f231bfb703e747eba76abc4ce74f9d5b0" + }, + { + "rel": "item", + "href": "./BG37_10000_0304.json", + "type": "application/json", + "file:checksum": "122033261de3ef3e30be2be25a270a7cc7b4a9e4e95d6c85d0fbb8f7823aa5c5bbe0" + }, + { + "rel": "item", + "href": "./BG37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220828b2a678bc50d7eb2d02bcb260f0c098c945b195acaaab7453a7047a166c5e3" + }, + { + "rel": "item", + "href": "./BG37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220d55da4a5c0c3166bd30fe9856e73a71b1d5308ac29a0f04549467ca972ca75e2" + }, + { + "rel": "item", + "href": "./BG37_10000_0402.json", + "type": "application/json", + "file:checksum": "1220866a9fa907f78031d57aa47a5cb7d7ed73274d97857c72dd8930fb7710caaa1e" + }, + { + "rel": "item", + "href": "./BG37_10000_0403.json", + "type": "application/json", + "file:checksum": "1220a8bfceb19ff3f4168feb3af11b2ee6ddd5d67b4207a03c5c69c3747e25e17d5d" + }, + { + "rel": "item", + "href": "./BG37_10000_0404.json", + "type": "application/json", + "file:checksum": "12206a1ba02e16544a13cf55012487aa9846dcac20b522d5a46df55d90e2e8b28239" + }, + { + "rel": "item", + "href": "./BG37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220445030f28f8724a8de8fe2fddffbb41524060a28303f698f4a957acc05b69d30" + }, + { + "rel": "item", + "href": "./BG37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220c504854eca363e34ee97d36cc5c7e5460f48e6730185ee9cb6f2199023dcf610" + }, + { + "rel": "item", + "href": "./BG37_10000_0502.json", + "type": "application/json", + "file:checksum": "12205ba24a63ad076391315ad6228c4719dd52ef222c67b62d06fcd3799812779c98" + }, + { + "rel": "item", + "href": "./BG37_10000_0503.json", + "type": "application/json", + "file:checksum": "1220838b40d46c050e8fd7468183d622a7a5079496a39744a0ef713d867002992ec6" + }, + { + "rel": "item", + "href": "./BG37_10000_0504.json", + "type": "application/json", + "file:checksum": "1220333a1fcaa0083e27ff0a72365d0d2f664c789481998cf9458230f6a1c6f52b9e" + }, + { + "rel": "item", + "href": "./BG37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220113b70389e8db942f1e743aa96115b47051b2424d36358014c2f1f3c888ad494" + }, + { + "rel": "item", + "href": "./BG38_10000_0101.json", + "type": "application/json", + "file:checksum": "1220934da9c4036a1cde4b3d8b3186ee0ad834690a0305fda3763ca28fdf11af67af" + }, + { + "rel": "item", + "href": "./BG38_10000_0102.json", + "type": "application/json", + "file:checksum": "12203fb9ddc95d7e1768049eeef5135350d723bd63fc6bccb73a47727667709ca95c" + }, + { + "rel": "item", + "href": "./BG38_10000_0103.json", + "type": "application/json", + "file:checksum": "12202ac635f5fc7be9ab62ce8abdeef6bd8bd8f9e514b0973a162c2453e37e391ffd" + }, + { + "rel": "item", + "href": "./BG38_10000_0201.json", + "type": "application/json", + "file:checksum": "12200838bdcbe9924501f978b736c81839f916c3a842b682eb8ae3c3262d78cd4f6b" + }, + { + "rel": "item", + "href": "./BG38_10000_0202.json", + "type": "application/json", + "file:checksum": "12206e7894bd0908cd9752b2f3c419fcee04311252131768cf516d9660e48e68a565" + }, + { + "rel": "item", + "href": "./BG38_10000_0203.json", + "type": "application/json", + "file:checksum": "12204ad9d873c10e14940f654fe51316f7095cf7bef6fb0e765193e99315eccb5fdd" + }, + { + "rel": "item", + "href": "./BG38_10000_0204.json", + "type": "application/json", + "file:checksum": "12209ecc3126ab7c9dfc37099e0dfb8273f30e6f176823890ff4ee5c509f22681a61" + }, + { + "rel": "item", + "href": "./BG38_10000_0301.json", + "type": "application/json", + "file:checksum": "12209841560d11b65559b0f9dc41c08fc8249c8d05b9f9f4968004d0b59da1894950" + }, + { + "rel": "item", + "href": "./BG38_10000_0302.json", + "type": "application/json", + "file:checksum": "12207cc219501d12e86880184f87d63d91d7910d565560ca3ad6c962754de9e52f62" + }, + { + "rel": "item", + "href": "./BG38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220228e8463acccb6e9ed88f9a712a072f9a181e08ff1ce3abe5783b6d20aaa9c70" + }, + { + "rel": "item", + "href": "./BG38_10000_0304.json", + "type": "application/json", + "file:checksum": "12204bc49d6c15fc8f33ad5059ff77d37dc31a26502dd8534568385baa37921c3efe" + }, + { + "rel": "item", + "href": "./BG38_10000_0401.json", + "type": "application/json", + "file:checksum": "1220979cf97516f1c7a31c0d834ae91406a880e0456194104b060d20dbb4e8d05fcf" + }, + { + "rel": "item", + "href": "./BG38_10000_0402.json", + "type": "application/json", + "file:checksum": "12200dcfcbfddadfdad2217d94924d2adc618893e6ba735765b692a5b5e296dcec49" + }, + { + "rel": "item", + "href": "./BG38_10000_0403.json", + "type": "application/json", + "file:checksum": "12200b7958d3215ac712291baa1f23b860dc3ca4429f3b857d94dd6406b590fffad8" + }, + { + "rel": "item", + "href": "./BG38_10000_0404.json", + "type": "application/json", + "file:checksum": "12206e90e0b052024cc3eee6c67983e30ca790a9d0bbf0cf1574c144b03a4d1c3622" + }, + { + "rel": "item", + "href": "./BG38_10000_0501.json", + "type": "application/json", + "file:checksum": "1220c159bd7df0cd5fd1d981cdce7550adcfceaeaeed845e7d644eda440c25378231" + }, + { + "rel": "item", + "href": "./BG38_10000_0502.json", + "type": "application/json", + "file:checksum": "1220d7adc109f9743898709fae1ee83bbbdf5e5ac8f2dda7a8b3b2886c95de022d96" + }, + { + "rel": "item", + "href": "./BG38_10000_0503.json", + "type": "application/json", + "file:checksum": "12209e7d4406f076032d7b6929f6616f0d0209cfa9b01117874eb117ba32ab078c7b" + }, + { + "rel": "item", + "href": "./BG38_10000_0504.json", + "type": "application/json", + "file:checksum": "122023073d303bb3b1d9f929ed1278e0f224126c9355d3d37a28c64192ec4ed8f8be" + }, + { + "rel": "item", + "href": "./BG38_10000_0505.json", + "type": "application/json", + "file:checksum": "122060d46503b88d277b15a11ff8c05ef63827a5145e185d31b19b3f5aa35176abfd" + }, + { + "rel": "item", + "href": "./BH34_10000_0104.json", + "type": "application/json", + "file:checksum": "122087e598228e362a5433c8f9bc662fcd7ad6743e89ce6a8c7f27d7453449543e53" + }, + { + "rel": "item", + "href": "./BH34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220227215ade3f10af643a10798002724dab464e2aa5b95f5f55ffad7023b2a44ca" + }, + { + "rel": "item", + "href": "./BH34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220aeb280a63334dafa19c48b3cd365b6e27787d94d148150be7acc8debf1a610c7" + }, + { + "rel": "item", + "href": "./BH34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220dfbf594569a9e6bf8930dadf49b9378faaff80e0e8674c7cefc953af9fc1a41e" + }, + { + "rel": "item", + "href": "./BH34_10000_0305.json", + "type": "application/json", + "file:checksum": "122039f6ca14af801ea571c7205780ed4620c26237db786b7091aa4f807209a94364" + }, + { + "rel": "item", + "href": "./BH34_10000_0405.json", + "type": "application/json", + "file:checksum": "12207db389892748f0f4106b8495ff88b0246f3cee5646fbf2a91071a959d1bb9726" + }, + { + "rel": "item", + "href": "./BH34_10000_0505.json", + "type": "application/json", + "file:checksum": "1220fa872fb53c9a61b82cdd76df549c969136ef1c61f70e6375bf00ebbcc818b6ed" + }, + { + "rel": "item", + "href": "./BH35_10000_0101.json", + "type": "application/json", + "file:checksum": "12204fbfa8f41ff18d05212bb00c2f7b82ca5c52a2ae4c6cab2f3424d196cc5a722b" + }, + { + "rel": "item", + "href": "./BH35_10000_0102.json", + "type": "application/json", + "file:checksum": "12206fc4280e0502b95039f84eb308e71c9e7f5a8d37a917dfc589cfa9fe36028c59" + }, + { + "rel": "item", + "href": "./BH35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220f825759ee7e9244146387b6d29bf2f8a04390ae1a04de90801e4001b1f30cf74" + }, + { + "rel": "item", + "href": "./BH35_10000_0105.json", + "type": "application/json", + "file:checksum": "122031ad0baebd9954175cf42a93dc93b22c5eb70598eb1e2f7c7a6900aa623bfd9d" + }, + { + "rel": "item", + "href": "./BH35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220d282b2d5fa0d205350a7c54143397b53637ea4cbe8941e85582bf82ee4447a52" + }, + { + "rel": "item", + "href": "./BH35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220e7ac6f66daa032ba48058161fc61b963ea3bacc67440ee3e9be717c0c3005c3c" + }, + { + "rel": "item", + "href": "./BH35_10000_0203.json", + "type": "application/json", + "file:checksum": "122097fff0d21aea44c45b10990879dc73643f71468c6e9ac0c58bcb29fcec94e182" + }, + { + "rel": "item", + "href": "./BH35_10000_0204.json", + "type": "application/json", + "file:checksum": "12206c6a3fda1bfe77c20b6e94f9dbb07bd6d2246f902c6796fdee12da286e022076" + }, + { + "rel": "item", + "href": "./BH35_10000_0205.json", + "type": "application/json", + "file:checksum": "122099f4646b75023082e6565d4a2e396c4f8e9261fcb92d95e3b85be51c20ad2d57" + }, + { + "rel": "item", + "href": "./BH35_10000_0301.json", + "type": "application/json", + "file:checksum": "1220fb4b719bd467d7def0455d688e3dbe070d8336f89a4d9fe932b837a1aa5c0e62" + }, + { + "rel": "item", + "href": "./BH35_10000_0302.json", + "type": "application/json", + "file:checksum": "12207f17e070e0752674e7ddf6e77d821ad70362bf67fc8dae0111a0ed4e0ae21d0b" + }, + { + "rel": "item", + "href": "./BH35_10000_0303.json", + "type": "application/json", + "file:checksum": "1220b62ef1e3f2e86ab9fb12d455116a779b55e25d0800256981b2d44a153a94305e" + }, + { + "rel": "item", + "href": "./BH35_10000_0304.json", + "type": "application/json", + "file:checksum": "12203d672eeda8c050845e641135c18cc51034bf634fe4b1f732a774f33ff5980011" + }, + { + "rel": "item", + "href": "./BH35_10000_0305.json", + "type": "application/json", + "file:checksum": "12200e49d1876174fcde42f97daeb408ef63d62edf5d4183a8ac337bbad5f3678a91" + }, + { + "rel": "item", + "href": "./BH35_10000_0401.json", + "type": "application/json", + "file:checksum": "122033c16d19da6777ca8224b004079b48369af1ce3f1d23398d6966e7b845d5b312" + }, + { + "rel": "item", + "href": "./BH35_10000_0402.json", + "type": "application/json", + "file:checksum": "12205b8d81477012105ca4f11234a48c665a4e6cfe880b50ae573e4ab91ee926c443" + }, + { + "rel": "item", + "href": "./BH35_10000_0403.json", + "type": "application/json", + "file:checksum": "1220f4f895b6e3857616196e0cb63819cb9d89c7cb9c2b2bb147f65eda1337b97957" + }, + { + "rel": "item", + "href": "./BH35_10000_0404.json", + "type": "application/json", + "file:checksum": "1220b648e9b8e457b37bfa8dbabad647611bce8ac5e01bf4b1e3a7e691719daf5fff" + }, + { + "rel": "item", + "href": "./BH35_10000_0405.json", + "type": "application/json", + "file:checksum": "12203c1e25382fd6257ed71ad21a11ce14dee9eb1d7fb6ae4f828d1cff08588e4d22" + }, + { + "rel": "item", + "href": "./BH35_10000_0501.json", + "type": "application/json", + "file:checksum": "1220b2926a8ed678f3726c0975ac63750469a91ebfeb247f3f39e101885b2f61cc26" + }, + { + "rel": "item", + "href": "./BH35_10000_0502.json", + "type": "application/json", + "file:checksum": "1220b7b241015d0c989fd6295b0a3da27724f83121f30dacfabc7d27b63d59ae7d11" + }, + { + "rel": "item", + "href": "./BH35_10000_0503.json", + "type": "application/json", + "file:checksum": "122021946be072749231c9183b56f36a4068137da6457e948a9554405b67ee91dfbd" + }, + { + "rel": "item", + "href": "./BH35_10000_0504.json", + "type": "application/json", + "file:checksum": "1220813f5d0f70a62413a812d58f991b4ae132a90b6c18eeacd1a80a192cc79186f4" + }, + { + "rel": "item", + "href": "./BH35_10000_0505.json", + "type": "application/json", + "file:checksum": "1220375136cede8690c3929a08010c473317052cbc496b3803fd017f6550b8b64c5a" + }, + { + "rel": "item", + "href": "./BH36_10000_0101.json", + "type": "application/json", + "file:checksum": "1220feb03c33aed3b8445d843d071fdd917f66e7af9715044e6202d7b4ccb9f79af2" + }, + { + "rel": "item", + "href": "./BH36_10000_0102.json", + "type": "application/json", + "file:checksum": "1220a6736ae70d10c890c56dbe3bb640a529847c41c94502bdb1ffbbd5686905c138" + }, + { + "rel": "item", + "href": "./BH36_10000_0103.json", + "type": "application/json", + "file:checksum": "12203e7d1e6f95ff67966ac0e0b65251d90a7a746df11e0164e3d11c1697d327f587" + }, + { + "rel": "item", + "href": "./BH36_10000_0104.json", + "type": "application/json", + "file:checksum": "12202aef2e53a29b549f4e3b316ffd3a5d7ed4fc295c24ce8d086e05fbcdc0f939b6" + }, + { + "rel": "item", + "href": "./BH36_10000_0105.json", + "type": "application/json", + "file:checksum": "1220c965e6b2912d0678cab24986314dda1a2dd16bd9fb240e08c9a8447c76a707d5" + }, + { + "rel": "item", + "href": "./BH36_10000_0201.json", + "type": "application/json", + "file:checksum": "1220860ebac47b74605bea88ce41b35544f01e846401f0490d5135627f4d2be7c5a2" + }, + { + "rel": "item", + "href": "./BH36_10000_0202.json", + "type": "application/json", + "file:checksum": "12201cd4fa7f2e80190010fd14669f083a157b5b3c818abbe70f57d4cf3c31a6bb93" + }, + { + "rel": "item", + "href": "./BH36_10000_0203.json", + "type": "application/json", + "file:checksum": "122023b4ffb63ca52b71e67dcbd1581f8ca3dce3820729789f7e35554f0fdc65ed25" + }, + { + "rel": "item", + "href": "./BH36_10000_0204.json", + "type": "application/json", + "file:checksum": "122031f8d017b3b79c4299b67c20e491941f2b2d1a8149708ba9a24ae4b1cf7ee80b" + }, + { + "rel": "item", + "href": "./BH36_10000_0205.json", + "type": "application/json", + "file:checksum": "1220195d0bda4696b07a076604c6cdee96468728a5d8d385e53d0b7925d4520e1f7e" + }, + { + "rel": "item", + "href": "./BH36_10000_0301.json", + "type": "application/json", + "file:checksum": "122095fe38d6c492def0b9106cb038306022fd1582e3d60816b80fc084ce9899dbd7" + }, + { + "rel": "item", + "href": "./BH36_10000_0302.json", + "type": "application/json", + "file:checksum": "122067d107d4eab9c83e2a83fd71c980ace6bf0e670d0d68e4b3d9839f6323e60bb8" + }, + { + "rel": "item", + "href": "./BH36_10000_0303.json", + "type": "application/json", + "file:checksum": "1220c6f26f3b749d6ad895f3534ec27367f4265cae69fd98e101ba01f84898b691fe" + }, + { + "rel": "item", + "href": "./BH36_10000_0304.json", + "type": "application/json", + "file:checksum": "1220c9d010eec1f833b2afd6547568225ab09f15fc50675d10c3d668ad6350aacb63" + }, + { + "rel": "item", + "href": "./BH36_10000_0305.json", + "type": "application/json", + "file:checksum": "12206191073c72d1d6ff38180aff03f66c3acf8c216976366919ad1f5f5d8c71ccc9" + }, + { + "rel": "item", + "href": "./BH36_10000_0401.json", + "type": "application/json", + "file:checksum": "1220c147ba73462e9d19fe2b8f52fb9c84bd1ec6165128ef451dde5d448cc40fb4f9" + }, + { + "rel": "item", + "href": "./BH36_10000_0402.json", + "type": "application/json", + "file:checksum": "1220faf840746b5e802d0fb017436230e2dcb7d5c2769b21308b695c213def4b7ed0" + }, + { + "rel": "item", + "href": "./BH36_10000_0403.json", + "type": "application/json", + "file:checksum": "122031a1d5ec89de4ff66643c4d1d8faafa325d89b6b86d358466dbc25ce56be95f3" + }, + { + "rel": "item", + "href": "./BH36_10000_0404.json", + "type": "application/json", + "file:checksum": "122089fbc8bd5ccf34a496c89649f2eabfa108de82a646dc136544aa0b7ab1fe0d79" + }, + { + "rel": "item", + "href": "./BH36_10000_0405.json", + "type": "application/json", + "file:checksum": "12203bfbd2a82e3466f61c236c062d6ab5af546f520331c3a1d7e632948c4eaa9fe4" + }, + { + "rel": "item", + "href": "./BH36_10000_0501.json", + "type": "application/json", + "file:checksum": "12204417f47d3d955dc0c49a4fdca6df5f48fe865519295fa42e5f29c713e5de818c" + }, + { + "rel": "item", + "href": "./BH36_10000_0502.json", + "type": "application/json", + "file:checksum": "12203bcaf5da2f45dbba5b36ea02ad6ed98b58282a324ad0d0951ed29df8dbc8768e" + }, + { + "rel": "item", + "href": "./BH36_10000_0503.json", + "type": "application/json", + "file:checksum": "12203cac568556468162fd473e93cf44fd27c342c8b0472f7470d2effc96791e2428" + }, + { + "rel": "item", + "href": "./BH36_10000_0504.json", + "type": "application/json", + "file:checksum": "1220c21744bdea393dfc0d417bf7ac9542bd234349e781fc03ff44a93c2ddb479d86" + }, + { + "rel": "item", + "href": "./BH36_10000_0505.json", + "type": "application/json", + "file:checksum": "1220730ec15dfc8b7b2bae45520a49b9083f0be7ed26435319ea45f2e0ece8e907fd" + }, + { + "rel": "item", + "href": "./BH37_10000_0101.json", + "type": "application/json", + "file:checksum": "122078cadc46495e205194b0938f239a7b8b681a1f3d8eb977e8d495abbc49a45dae" + }, + { + "rel": "item", + "href": "./BH37_10000_0102.json", + "type": "application/json", + "file:checksum": "1220f23ddd9cd6a404d3dd797ac1719050b1695372a0c4269fe26920ae6ab2ea1678" + }, + { + "rel": "item", + "href": "./BH37_10000_0103.json", + "type": "application/json", + "file:checksum": "122046a9aaf4ed0bed0d1679f6d9e5064dfcea1e93ee691d7ddb691833aac5175380" + }, + { + "rel": "item", + "href": "./BH37_10000_0104.json", + "type": "application/json", + "file:checksum": "12205061700198cc18cbee04d8b579f414665759459ad94e60ab23dbcf3fc9cd41a7" + }, + { + "rel": "item", + "href": "./BH37_10000_0105.json", + "type": "application/json", + "file:checksum": "1220f4e6f2b8d30369cfa59baded2611d22dcf8794578fd071518d00d0d9c606fa59" + }, + { + "rel": "item", + "href": "./BH37_10000_0201.json", + "type": "application/json", + "file:checksum": "12200a8fc6f800a2956783f6e05ee07c536492ff1d7d390d86e01130d8da7c026892" + }, + { + "rel": "item", + "href": "./BH37_10000_0202.json", + "type": "application/json", + "file:checksum": "12203a9e80d9cdb5fbdae75cb22879ca931d44ebce45a3357a5179d4a7fd383e0c55" + }, + { + "rel": "item", + "href": "./BH37_10000_0203.json", + "type": "application/json", + "file:checksum": "1220dbba5322d80c59a799f6037c75ce6f983728fb35fa33925dda801f70e841e68b" + }, + { + "rel": "item", + "href": "./BH37_10000_0204.json", + "type": "application/json", + "file:checksum": "1220b38b186bbb624941045bf82abd7a7f9c693d35f10a68e748af2bdfdcd471845e" + }, + { + "rel": "item", + "href": "./BH37_10000_0205.json", + "type": "application/json", + "file:checksum": "1220b0e149650f4933f00404e42d48f7a82e04fedcab41bc2a6ce0d3afcfbb5c90e9" + }, + { + "rel": "item", + "href": "./BH37_10000_0301.json", + "type": "application/json", + "file:checksum": "1220ec703ad43ee44944bf41b56af0b7655b8601bffc8dcc1a63afae988c994b41a9" + }, + { + "rel": "item", + "href": "./BH37_10000_0302.json", + "type": "application/json", + "file:checksum": "1220e2cdb9e0e0117c64dde657c8f393749ce5907e8fc885922809be72d07f0aee59" + }, + { + "rel": "item", + "href": "./BH37_10000_0303.json", + "type": "application/json", + "file:checksum": "1220a60d1fded0b03024b98aead47e34bd47d49b382b39ab48faaf7e4c0523279c37" + }, + { + "rel": "item", + "href": "./BH37_10000_0304.json", + "type": "application/json", + "file:checksum": "1220a406541b6b7743f8d07378205e0dbf4ffe9f3d83f380357cc2f81f14a8316ca5" + }, + { + "rel": "item", + "href": "./BH37_10000_0305.json", + "type": "application/json", + "file:checksum": "1220a931af014fb3a123fc9a71e740f2a7feee1be21b057f04a56183f6c5a98f49a8" + }, + { + "rel": "item", + "href": "./BH37_10000_0401.json", + "type": "application/json", + "file:checksum": "1220867039f1b46b387dc5f76f1dea1d676a07abc17cb86da9cb38fe0d96fdeb7fc3" + }, + { + "rel": "item", + "href": "./BH37_10000_0402.json", + "type": "application/json", + "file:checksum": "12201670e18cc1d88bf2840219949bedbddadd725d02827bff0ad1b4017af1205ed6" + }, + { + "rel": "item", + "href": "./BH37_10000_0403.json", + "type": "application/json", + "file:checksum": "1220a1ac475690dda359e9af4d5e42f64e52004bf783b2eec6147b71730fd8df0cfc" + }, + { + "rel": "item", + "href": "./BH37_10000_0404.json", + "type": "application/json", + "file:checksum": "1220a0dbec1a8619f2c7c78c363db60328ef42ae3ddc19c797dffe050fb46a3a9e2c" + }, + { + "rel": "item", + "href": "./BH37_10000_0405.json", + "type": "application/json", + "file:checksum": "1220597899fb1698d9604ca53a82cf83d076e232f522873b164d85a24dd0d2f7347f" + }, + { + "rel": "item", + "href": "./BH37_10000_0501.json", + "type": "application/json", + "file:checksum": "1220e20f292b5a2c6ec3429e83170d9b590867476e3ebfd04f74e0c34a6133016541" + }, + { + "rel": "item", + "href": "./BH37_10000_0502.json", + "type": "application/json", + "file:checksum": "12203b2f9f0fd4f18552f01835688fe7967d524efcd71369678ad1a771b19544e785" + }, + { + "rel": "item", + "href": "./BH37_10000_0503.json", + "type": "application/json", + "file:checksum": "122050319ebe7cf938d82ee1ac8f97493bb9de551d4c7e5284c5c04f7fbef43ba0d6" + }, + { + "rel": "item", + "href": "./BH37_10000_0504.json", + "type": "application/json", + "file:checksum": "12205f7403d9d8e1984f5c33c942fe0eacc65ea1c3e83ba91f8dbec280532bdc3837" + }, + { + "rel": "item", + "href": "./BH37_10000_0505.json", + "type": "application/json", + "file:checksum": "1220662ef9d41e009e3e09565391da3d590468311e9d8b1a3027b936403bbb0e7c9b" + }, + { + "rel": "item", + "href": "./BH38_10000_0101.json", + "type": "application/json", + "file:checksum": "12204a6e2241b46b854568faf8a5ece2cf1568301e9a7eb990f0186097d1ff617cb7" + }, + { + "rel": "item", + "href": "./BH38_10000_0102.json", + "type": "application/json", + "file:checksum": "12205b4e94de1b79f36a10764216b4b49ea3bb4ab83b48fae79ff84f3b04638dfbf3" + }, + { + "rel": "item", + "href": "./BH38_10000_0103.json", + "type": "application/json", + "file:checksum": "12201764de6b09260f39cd2dfb3f6e305fca7cc2e7f208e11db4a82d37d8cc43725c" + }, + { + "rel": "item", + "href": "./BH38_10000_0104.json", + "type": "application/json", + "file:checksum": "12207e42c6f94950203db5093b512c24ee9994f75b622360917c1f9939d831354f65" + }, + { + "rel": "item", + "href": "./BH38_10000_0105.json", + "type": "application/json", + "file:checksum": "1220868cbbdb8c76dbb87a935f9c17bb68a7ac9751fc1b27e9faa206ebd0f5614971" + }, + { + "rel": "item", + "href": "./BH38_10000_0201.json", + "type": "application/json", + "file:checksum": "122082e1b67fa5eeeb556099dee66ac27761433380c8af7000a09de827c03ebf7a14" + }, + { + "rel": "item", + "href": "./BH38_10000_0202.json", + "type": "application/json", + "file:checksum": "12201cd0b2f1b983eedb9a09277d6a639029579ea10cdb36af85a395805ef84aaac2" + }, + { + "rel": "item", + "href": "./BH38_10000_0203.json", + "type": "application/json", + "file:checksum": "12200bac277db67a9372fd634e3c01a702d119e25de952d758656e4288569ae7121e" + }, + { + "rel": "item", + "href": "./BH38_10000_0204.json", + "type": "application/json", + "file:checksum": "1220c658f7d5b83e0ba6c3d9960fa668c925e0938d834b8dac83a7927ad69aa38336" + }, + { + "rel": "item", + "href": "./BH38_10000_0301.json", + "type": "application/json", + "file:checksum": "122025cf815d203e31fef3bd31cf6bf5e9b15f873f30fed7ae990df8c3ee3bda679b" + }, + { + "rel": "item", + "href": "./BH38_10000_0302.json", + "type": "application/json", + "file:checksum": "12205c462cd2798ac5c91398b3ec2a66467870bbdc06cbd09ebe71f781c5a879dd03" + }, + { + "rel": "item", + "href": "./BH38_10000_0303.json", + "type": "application/json", + "file:checksum": "1220479aec6703faaea6d9a9333c968fafd810e377cd75b9f07cfd4e34ba404d9552" + }, + { + "rel": "item", + "href": "./BJ34_10000_0104.json", + "type": "application/json", + "file:checksum": "1220a0bd1afd76a5d8f572452f217b0375792bbdef139847a52789403487e091bc38" + }, + { + "rel": "item", + "href": "./BJ34_10000_0105.json", + "type": "application/json", + "file:checksum": "1220a3763450504b36ecf7271c5a4d8fa34ebb8984dd8bcd2fc4c7969e70682744b4" + }, + { + "rel": "item", + "href": "./BJ34_10000_0204.json", + "type": "application/json", + "file:checksum": "1220e80a35e22aa1f858304b32ae96cb53531e83ce8dd1363d12bfc6ed4bb741e4ef" + }, + { + "rel": "item", + "href": "./BJ34_10000_0205.json", + "type": "application/json", + "file:checksum": "1220df64c81d895e0e4ab06c434fe7e43481e159d2cdd2bedb03f9eec1bd7ca7c872" + }, + { + "rel": "item", + "href": "./BJ35_10000_0101.json", + "type": "application/json", + "file:checksum": "12203ee99f48719fabe379c275ab6e698da341d3fb62497825d68f6d06cd19432302" + }, + { + "rel": "item", + "href": "./BJ35_10000_0102.json", + "type": "application/json", + "file:checksum": "122032a864fa8046807413b9da0c3928a9534dc43edbd18709f579302922642753d3" + }, + { + "rel": "item", + "href": "./BJ35_10000_0103.json", + "type": "application/json", + "file:checksum": "1220086099d67b38b3390ade13c5615ba1dfc68d9058ad4cc847f90df8b9399d5a46" + }, + { + "rel": "item", + "href": "./BJ35_10000_0104.json", + "type": "application/json", + "file:checksum": "12208c65b7d4cbcf902a9cffecda506112fc6195b7d583fec15605e51d057934fc20" + }, + { + "rel": "item", + "href": "./BJ35_10000_0105.json", + "type": "application/json", + "file:checksum": "1220e4af6b3e0ac63d480183f2d7800b67680f7c9a46a66cf1fe034b6997eb4e3f0b" + }, + { + "rel": "item", + "href": "./BJ35_10000_0201.json", + "type": "application/json", + "file:checksum": "1220096f649f1d16e2c94f5461d884db6c72ada3de3ccf16404329b17ee9178dea89" + }, + { + "rel": "item", + "href": "./BJ35_10000_0202.json", + "type": "application/json", + "file:checksum": "1220700eb36291fad0ff220cced4e16cbbe813807bf80575d6d152d830ab2c4aa6b2" + }, + { + "rel": "item", + "href": "./BJ35_10000_0203.json", + "type": "application/json", + "file:checksum": "122043086836675c7abc042b4dc6cda425694ec949306636ca3df1deb0b7bda70e07" + }, + { + "rel": "item", + "href": "./BJ35_10000_0204.json", + "type": "application/json", + "file:checksum": "1220cdc9ce0ed9e36a018ef3403c499b6789bde64b42dfe394c80fc6ab126a4b211e" + }, + { + "rel": "item", + "href": "./BJ35_10000_0205.json", + "type": "application/json", + "file:checksum": "1220c1214ece61b35e8c5b8f456f9f778f5f09e394fbe45a36a7af8e47b449db99f3" + }, + { + "rel": "item", + "href": "./BJ36_10000_0101.json", + "type": "application/json", + "file:checksum": "122060e5980b4ec3d818e219f65654e1166442899dadbddb5e36b5914cdf8e7106bb" + } + ], + "providers": [ + { "name": "Ocean Infinity", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "created": "2024-07-04T02:41:14Z", + "updated": "2024-07-04T02:41:14Z", + "extent": { + "spatial": { "bbox": [[174.5702773, -39.329461, 176.7362937, -36.4037416]] }, + "temporal": { "interval": [["2021-01-04T11:00:00Z", "2021-03-25T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fe02d6de97d1b29b7148d9156ac980ee47a5eac56d1110992e93bffa1dc279ff", + "file:size": 67405 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/waikato_2024/dem_1m/2193/collection.json b/stac/waikato/waikato_2024/dem_1m/2193/collection.json new file mode 100644 index 00000000..9f41317f --- /dev/null +++ b/stac/waikato/waikato_2024/dem_1m/2193/collection.json @@ -0,0 +1,438 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6R9ZFHKYH6K8XSAE2J5A0A", + "title": "Waikato LiDAR 1m DEM (2024) - Draft", + "description": "Digital Elevation Model within the Waikato region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC31_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220abc69d5ed6468b43388a74fe62cb3bdfc3f5c1f026578b83022e3cb1b8457a57" + }, + { + "href": "./BC31_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122031088e236d17631fb7a14d3375809f37fc7bc71f4b1a224af4ff6765b51f61b5" + }, + { + "href": "./BC31_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206753ed1aebda0b0d5d7d33373d9eccf27e66627d8f5577efd4a90d23ac4df643" + }, + { + "href": "./BC32_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c215149f19d10602015dde06400349abc17e911f99dd8ce0dc7ea59b7f1c4ca9" + }, + { + "href": "./BC32_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fd97d20b762c0516fa2de3628e6ca51b837d96ffe497682bb232c638e3de2cf5" + }, + { + "href": "./BC34_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cd2da16481a8924da41dc341e524fee3622aa88301ee1d9b109fc05635271705" + }, + { + "href": "./BC34_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b563f1c668e5978db58d6ed578065fe81201ee496412de1a47cf4e01d8060a49" + }, + { + "href": "./BC34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209936429f585d0bcc86aa3e857db82df84e02ad88b7a25e6362e68a2e57b861f5" + }, + { + "href": "./BC34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206145064a7dbe1cef942fc3f797308b95040fbf6e7fcbbc0048980030094f9b9e" + }, + { + "href": "./BC34_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a26940a103359f0c7bd14bfa8ea1424cad3b4acfb0a1decf06412dd6ea96f611" + }, + { + "href": "./BC34_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dbdc2b619f6cd172be9e344483a712222eb8b0b059787d60c2fe106acb39bcdb" + }, + { + "href": "./BC34_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209223b4be5cd54a1711d021985bbf89e19b049695700b536d06996731bc2ce7f5" + }, + { + "href": "./BC34_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220158a84d31424e232b20f0c86602de03b8db9b9ad6a1faa43b8229a03221d2a9e" + }, + { + "href": "./BC34_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205b91246c7757450bb2937e1c0ebb9418a31199016cc6f8774b19c0f4c9e7cf85" + }, + { + "href": "./BC34_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f78f94ecf74c840e0b437f014ee643082e59aed9e2b45ab2594b5379eee2a18" + }, + { + "href": "./BC35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203b6da9a68185701321ac9b01dfa3c938226bfd5e4930071373a69fac9a8fe4f7" + }, + { + "href": "./BC35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209a736119c8a654aad072cfc9703322d5a24081fb2025a98b7a258de5afd20eb3" + }, + { + "href": "./BC35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204e41384322e167481e3b383c588ea717b7872978df10036bdf799a24265e6698" + }, + { + "href": "./BC35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d533f89ced9806a60b6c41ef9002d90f26bc31bfe8b73b004fba1241cd099b3d" + }, + { + "href": "./BC35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5a1c7dd0ff4b3b97c10cd3e2e12966b5f09c1bb76fd065045f8ed7dfe20fff1" + }, + { + "href": "./BC35_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204c70e630c9466ffbf4db368c9093e1598cd633a0470e12ca05f61fda16088df0" + }, + { + "href": "./BC35_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208f9262b817fed944e397e8cf3aa0d54371b9681a112a4ab2b48f03231f9ab7bf" + }, + { + "href": "./BC35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122007505c8ed08a9c7e17d70dfae99820899ec028a4919aac46563706a3952d6d59" + }, + { + "href": "./BC35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ac5c3238acb6d89a4b3eba3ac641cf71ab7cbd52f28a3415afb1283c648935ee" + }, + { + "href": "./BC35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207c9732819666676a4ce2bb9eb1708af17e8dfb4dd8077260906c7ed64fbea0d8" + }, + { + "href": "./BC35_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122047243b19ae62ff1007b69f347bbeebb59186edcbda516e778906a208cf6b1a55" + }, + { + "href": "./BC35_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122088c36d7996024cb35b541d7ba035cfe335a7528654c49187479a11f5d9a251cb" + }, + { + "href": "./BC35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203d36c43161afde8611fb4ac8b61ef76a1c932ff072376fb29f915e164a424922" + }, + { + "href": "./BC35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204b74a7912ee28157b09ee5f665a6dc710f917b6ec32d8ad01255df19d34a2f9d" + }, + { + "href": "./BC35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12201ee0992c8316a1abe9488a545428667715542cf2b07f9ec25f7253c35897bbd0" + }, + { + "href": "./BC36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200751180cecd22b8f43b3a953d8379056d449297341d2dc834e517d070e0e923c" + }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220695474fa728ba0368c77cad9aa213c4a909aecda8461eaae1aa7b8485c5bb6fd" + }, + { + "href": "./BC36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204f58b656c7b37a7106b6231d7853df33682e2440a948d151c720477e14ce9fb5" + }, + { + "href": "./BD34_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b00b00ce408d404ba85991b5d1b689be2da2a72ff4a01747259babfaf9d3ef73" + }, + { + "href": "./BD34_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e1398af558f6ac69f2f0cb799f20c8301271e3cd20969fb3addd478d8f3f0706" + }, + { + "href": "./BD34_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b8d637b53141148e7055980ccf058e6b3ae5893f27a54b59d1f38c5a6af82a61" + }, + { + "href": "./BD34_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052f5ffca443de617fbdb413346b0a1ead9a02bb679717ebe925272c5f3cffbf8" + }, + { + "href": "./BD34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f0cf0dba409dc5e6fab54a953582c6695c616ba1abc451b66d93c56c2529289" + }, + { + "href": "./BD34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203ef59429e7c27266bca056805615fc088fd7f7951b3f3547614a478cb04d05e7" + }, + { + "href": "./BD35_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209871c3138b409882455a3d53e06b4a2500cea43e8f99613d086fec52c1f14802" + }, + { + "href": "./BD35_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6a1def81e62ea1b151bf93ce8b27b91c1f2821e1ddd969c9723a62c2d8a7256" + }, + { + "href": "./BD35_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202520fd5079b76b05765458ab6c80c09629fcca8fb9dac0adfd07e95b353e329e" + }, + { + "href": "./BD35_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203293ee15e7740e508856b9abd2f2f47e4c444d10f6b88a02c784881692dac1d3" + }, + { + "href": "./BD35_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202bcaba6bf2c4767fb40135b5edf3d9355c419315bb4595b0966d350fcc6aca46" + }, + { + "href": "./BD35_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220dc58a6f008b208d9ddc8897b3b51327e026bd664c82061206b0775d316d3ccbe" + }, + { + "href": "./BD35_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203327238feb64e7f82cfa24702015471a226e8d6ae00e63b2be89c3b30b00570c" + }, + { + "href": "./BD35_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fcf66fe45c51fc7c7c0f776f3aeac28346270fe66aa75c9a09769c695010256b" + }, + { + "href": "./BD35_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122069a5ea23b0eb78271ec9e5ed2a427ad710cc1cdf1ed427e924760739b366e42f" + }, + { + "href": "./BD35_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122092b7a69c2cf780751aae3fd5b0870b3bccad87c441ce14e3c9b19e9ec2993f76" + }, + { + "href": "./BD35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fe8d7ea3d690ddf4f032350d636ee276b6dc40accc375609e94351aec4135a31" + }, + { + "href": "./BD35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bed816b16311faf6120092ab785380aac01182d2521d7a1a438eb4c7a015faf7" + }, + { + "href": "./BD35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf45ede8e0ef221b4d6c3372d57523cb7e7274bb110be998cf0db04c4ce6682e" + }, + { + "href": "./BD35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220046b04bcc19b53f620ebb26594bfd74a1884d0f97873bfb0af2ee49022ed2f50" + }, + { + "href": "./BD35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220593a1c91768d1fd697bc2f1fd8c37d02dafab6e87faef2cdba86e93acceaa0c6" + }, + { + "href": "./BD35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9ed2e4340415f005d4c2a79eb3f5785abced2d614688753db5110046607cb6a" + }, + { + "href": "./BD35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200eae52f6e9a2fe51bed4948e0d34b9aa096cbc1f959510af4070eaf8ae6838ee" + }, + { + "href": "./BD35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220824e2da1bd1f0c90520e3d5a297d6b4add2b12c0a38b6a8f43c0d6cdfd43b50a" + }, + { + "href": "./BD35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086ce3d0c7bf125d850e3dd90f8d75f0d945b7fc35729fdae404dfa4c8a6c413e" + }, + { + "href": "./BD35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206f273590a97958dadc5c35bcba7bb4b96b06d94f5a99526ca14d264f5d06a08f" + }, + { + "href": "./BD35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c5b549ff7860f6a554ebffec6b0b9c30f9410c915871a5566f00066adbd88871" + }, + { + "href": "./BD36_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a7f1a1726aca19a0180cf6ede50abb8989c1b99ad41b406620245019c06950d" + }, + { + "href": "./BD36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d5d5f5be06791a428100e1225241b2afc2c95709466bc88de1e606e05269a3f8" + }, + { + "href": "./BD36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b4ad66307d794cdf5851a63e1c49ecef20790372f7b632e240b23506ced39da9" + }, + { + "href": "./BD36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122085c3b4cac7b1b66ffbde273bcd369ccd76a1fe3437352c691cb853e8989bfb8b" + }, + { + "href": "./BD36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206152e930f35eae86f32c1143677ce8eae88b69171afb5732ac62fe2c79ddf356" + }, + { + "href": "./BD36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b1c6c16132fe18486e49060a056bbd33f26214152a933cb84fe6b81a3a82c987" + } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "created": "2024-10-15T00:20:00Z", + "updated": "2024-10-15T00:20:00Z", + "extent": { + "spatial": { "bbox": [[174.6540045, -37.8985301, 175.9722922, -37.2649909]] }, + "temporal": { "interval": [["2024-01-20T11:00:00Z", "2024-05-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209ce7f0917eabbf125f7a5d626c12fe3a52503ead68111cefd01ae7e51851206a", + "file:size": 4992 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/waikato_2024/dsm_1m/2193/collection.json b/stac/waikato/waikato_2024/dsm_1m/2193/collection.json new file mode 100644 index 00000000..e1970b93 --- /dev/null +++ b/stac/waikato/waikato_2024/dsm_1m/2193/collection.json @@ -0,0 +1,438 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01JA6R9Z4XM3K81N2VFKJ4MT24", + "title": "Waikato LiDAR 1m DSM (2024) - Draft", + "description": "Digital Surface Model within the Waikato region captured in 2024.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { + "href": "./BC31_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122064fca9c247fd1a98a47942b86fdf26d2d2adcbf6fd67d17b26ae0b7b4ab4eba3" + }, + { + "href": "./BC31_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7c8e5dfd907ac6b8ac7b89821e1cc0219ccdc7a357d1d7258e222340343c6f2" + }, + { + "href": "./BC31_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b0d3d23842ce15e1c07947e13a22555252b314a5e263f9d2609466addaa8e75f" + }, + { + "href": "./BC32_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220e9aeb44a6c457ae0ef70c7583f84429174020dacdd23b006d432df064843e31d" + }, + { + "href": "./BC32_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220355f9a24812f3ca005425011c751d6297deb131a42c96ccbf783a458f2441e90" + }, + { + "href": "./BC34_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c887c5d7b908f9494139da16030fec60be3e30ecb3db459252f84c71bd0cd2ab" + }, + { + "href": "./BC34_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eb446a253e3bc0861a8405cdd2ba1b08932207de90d7f9a11ad1d30f45c33b1e" + }, + { + "href": "./BC34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122010543a69f5a987544c991fa36913427b9009c9e14b1a04c8d7ac74854c42be8c" + }, + { + "href": "./BC34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12203c39c01e4b7840a4f9661c60d623f56f8a2e981e30d049848ad33e790f975a31" + }, + { + "href": "./BC34_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220d3cf36c2e1dba1d2618b45a4dec8d8fbad137a44a7d2d85a6e7d233bb269a5b8" + }, + { + "href": "./BC34_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220bf6a4d20a7fc5b28ecc0e332102d114805fa4fbd185a9061caa187a4e05eaaf6" + }, + { + "href": "./BC34_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fb49b0ad0d40563c5701b9122ca1c19756629a510e093a9221e4365ad96d8a2f" + }, + { + "href": "./BC34_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122049f1d7c969c84888eb8d1011431ba33907b317dcfee386dad4fb51a23f4f8b63" + }, + { + "href": "./BC34_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ad9c686981a6d24b5d99736cfb09242a79ebf2ea2a7c045ace5e506f0e299313" + }, + { + "href": "./BC34_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206a37781d5f3d5bba70fd08ea8e15656cd896ae1706ebdad77de6764a3804a05d" + }, + { + "href": "./BC35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209d5045da99dfb74c67768a8a86f9c70876225a8fca2932958b343efe8f4883cc" + }, + { + "href": "./BC35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220faab63a4f59ef6831e4e0af2973fa8c52c1862b46ae6b3957734ffb1811b0086" + }, + { + "href": "./BC35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12209e67b61e474b5a0a4cded62544120a0def6f52c9c11629df9b1f29c017172e0a" + }, + { + "href": "./BC35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122075a8618aba8fbcdc17532de4c9ecef9bf2ec5dad303d0381bf05c1b0b8ab5c57" + }, + { + "href": "./BC35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122000a2e462c5eee8a5a4311c7af2299d2f732804d0cc0faa5c799db5affe08d18f" + }, + { + "href": "./BC35_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202fc778eedb0481a93a4c62aba776a1d911e8059f325dd255142745e24acf48e3" + }, + { + "href": "./BC35_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ebcf52f158c3bf990d011c884d6565e33da4888815b483108a5680fd1aeccdac" + }, + { + "href": "./BC35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ee11ae72ab3a55ad83d3011defca25a85306c917b4946c85d51d46add4161131" + }, + { + "href": "./BC35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202a373de727efe9cd2d4a540e27b65af05e9e507e8a56a452ac6142df578a717e" + }, + { + "href": "./BC35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122065af9cb7ac568bc24890001df183faaf7aedebb19b0aab53957e5d3af9521f96" + }, + { + "href": "./BC35_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fa6c48678facf730dd3da4c227c831e6f4ac0a8347a87a0ff405147d7368cb8e" + }, + { + "href": "./BC35_10000_0502.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122099db0176e741d35a6bfee08ef37f15010903fa8b72ab50d6ed03410c508d24f8" + }, + { + "href": "./BC35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220174e90bac1607e2192f48b32c00fc56c50d79ad363e95a91105b431e47de6f61" + }, + { + "href": "./BC35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122081b1256706bcb033671798d91cf903c4f89b4ed482ecf14ef8a5005c51436a7f" + }, + { + "href": "./BC35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122055e1edb3dbd9bd7e1b82aa906d341bcf4e97ce1ce486757fd3b089365c188892" + }, + { + "href": "./BC36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f6fbebee767903aef080b79293834bc9e6371669dee958c9f665b104bbe2a655" + }, + { + "href": "./BC36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208cfd38647b728477a155118e059f346901fa9fea50f6be41a0a1d21e48348dcb" + }, + { + "href": "./BC36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202f4265bdc2f405560dd78ea56733fdc19d6983aedcf11875792f4c8ae06bf0b4" + }, + { + "href": "./BD34_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220b6cd8a737137f596918819883da9e532a09b69113bc41bd35201f8ca9d49f148" + }, + { + "href": "./BD34_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f4f4e99aee7cf99f1700635e30676625e8ffc49c51375ac88435e09aa9148107" + }, + { + "href": "./BD34_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220cf262c5d060f96e6daa2157340352797bfc641b5c6e5f5eb86b73ec6c992e11f" + }, + { + "href": "./BD34_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122019d83fe41148b043fb77828165092051f2b2e721ab6433f715e068524c6c34bd" + }, + { + "href": "./BD34_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12202caac5856b52cbe43a61e7be6935bf126b36f65191d4e3aabba3e95055600841" + }, + { + "href": "./BD34_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205309b548a9074c0d16f134fec6044bc796180effd2643787a5781924fbea3814" + }, + { + "href": "./BD35_10000_0101.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220489f6f3bfa19c5321d9b6b03ad7ac380e1324fd75e1eda9743f2cebf3b665130" + }, + { + "href": "./BD35_10000_0102.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122048255990d1d620f48e43b95dfe651e668730d26285ae880afa45d14e6f601396" + }, + { + "href": "./BD35_10000_0103.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220eefc55576b6e1e9b258e89f9791ee00a49faa4c711616ef99afd377a871d75a3" + }, + { + "href": "./BD35_10000_0104.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207653e8e5f7379f8ef938000b116649395cdfb3e6824dc5f028361ec120fe3571" + }, + { + "href": "./BD35_10000_0105.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122027496cbaee2b306c986e1279838cf67d9e4d1069c8f5d438325fae8a2a14c959" + }, + { + "href": "./BD35_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f84092bc8ac7cf945a0425128ed711202e8b85e5d5ad999358b3953c12a3763e" + }, + { + "href": "./BD35_10000_0202.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a998cb1af4a2a23ad81bd928e48654c94354395d02a97474757260acb858200b" + }, + { + "href": "./BD35_10000_0203.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220463a090ccacfdbd19cdf4fd4707d4bdbabfbf76eda3deae319239916ad6c7bbf" + }, + { + "href": "./BD35_10000_0204.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12204cf81b5ab67061d9d21160c05d4650a83000216cba70f0c5c46f3709fbf6ef42" + }, + { + "href": "./BD35_10000_0205.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220fc9fc792501b4d21bba8edded48ad4d6752f597b1676f5b28fdf70518b045d35" + }, + { + "href": "./BD35_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12205d4c10305bd093f28015c9c208a35627cf084c4d9a02780e2717ba5011707edc" + }, + { + "href": "./BD35_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122052a42364ec30a3500041d012217c0f81cee0179c92243b8cb1f4c47446a8710b" + }, + { + "href": "./BD35_10000_0303.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122024b811a18a2993fb19bbe8e222a94e96ec396c91757cb3179802e636a14a43e0" + }, + { + "href": "./BD35_10000_0304.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ab87ebeafbfef47a174cf65f1cc3df4adc26db23e1500ec426f378f38f64be5f" + }, + { + "href": "./BD35_10000_0305.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ffafa337e54c45af5232fa95810969ecad1442931e342512c78d4092626dedd5" + }, + { + "href": "./BD35_10000_0403.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122086ffe89c496aae70c7d14a9ba06367d862afff6145d5e091afc3f27d76a24526" + }, + { + "href": "./BD35_10000_0404.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206cee6047bbe7e754382e38773a200a64f4e6fc49ad49ab526daea368d99d85b4" + }, + { + "href": "./BD35_10000_0405.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12200ac49d677a695172561f5afd81040fbee1f282747b7b00dbbe2079fafdc42c07" + }, + { + "href": "./BD35_10000_0503.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220a3bc3300b09b30542e216c5582d3852c769473f9721acf41c0fc64b56629ba32" + }, + { + "href": "./BD35_10000_0504.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12208d1855a865a18727ec9fe2f3f20312285d781b5b4e7e63d2191238d4ce5d807c" + }, + { + "href": "./BD35_10000_0505.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "122060f11a7f79653815d7d191b8af278410d000b49d2f1af162807bce33b5453345" + }, + { + "href": "./BD36_10000_0201.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ca22b751799e858df01fa552a07cc67659d182aad52092a19e24e3186f954917" + }, + { + "href": "./BD36_10000_0301.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220ddf8efa6968b45131285346a51b702947612fcf0766cee259fd2d45cced550e6" + }, + { + "href": "./BD36_10000_0302.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220f7602a437b77105438405a7ccaadef5be8abf500e8bd88bccdb7b7880e3f0800" + }, + { + "href": "./BD36_10000_0401.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12207d2d37a43297ef1178afbf020b5ff468ab433695305713109efa4503b4d55476" + }, + { + "href": "./BD36_10000_0402.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "12206d2d70c46c15e3176131144180239fd39100b020e237287654e48d9119e99d8b" + }, + { + "href": "./BD36_10000_0501.json", + "rel": "item", + "type": "application/geo+json", + "file:checksum": "1220c9aea93637feb308128e6c5a191d0f9afcc377007a4a6d273a16cb767f12b353" + } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "National Institute of Water and Atmospheric Research", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "ongoing", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "created": "2024-10-15T00:20:31Z", + "updated": "2024-10-15T00:20:31Z", + "extent": { + "spatial": { "bbox": [[174.6540045, -37.8985301, 175.9722922, -37.2649909]] }, + "temporal": { "interval": [["2024-01-20T11:00:00Z", "2024-05-16T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209ce7f0917eabbf125f7a5d626c12fe3a52503ead68111cefd01ae7e51851206a", + "file:size": 4992 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/west-coast-and-hauraki-plains_2015/dem_1m/2193/collection.json b/stac/waikato/west-coast-and-hauraki-plains_2015/dem_1m/2193/collection.json new file mode 100644 index 00000000..e2a06034 --- /dev/null +++ b/stac/waikato/west-coast-and-hauraki-plains_2015/dem_1m/2193/collection.json @@ -0,0 +1,127 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSDXDNFABY8PT7WFNHZGG78", + "title": "Waikato - West Coast and Hauraki Plains LiDAR 1m DEM (2015)", + "description": "Digital Elevation Model within the Waikato region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "West Coast and Hauraki Plains", + "extent": { + "spatial": { "bbox": [[174.5702773, -38.7625134, 175.7447982, -36.9977812]] }, + "temporal": { "interval": [["2015-02-06T11:00:00Z", "2015-02-28T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220d055449f86286e7ff4123e373de934c4810a917d2584a26a8ca60a1923aca3f2", + "file:size": 602767 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/waikato/west-coast-and-hauraki-plains_2015/dsm_1m/2193/collection.json b/stac/waikato/west-coast-and-hauraki-plains_2015/dsm_1m/2193/collection.json new file mode 100644 index 00000000..07ad26a1 --- /dev/null +++ b/stac/waikato/west-coast-and-hauraki-plains_2015/dsm_1m/2193/collection.json @@ -0,0 +1,127 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSDZCVJS6E3A2WCTD8N715G", + "title": "Waikato - West Coast and Hauraki Plains LiDAR 1m DSM (2015)", + "description": "Digital Surface Model within the Waikato region captured in 2015.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BB33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BB34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BC33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BC35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BD31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BD32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BD34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BE31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BE32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BF31_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BF32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BG31_10000_0303.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Waikato Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "waikato", + "linz:security_classification": "unclassified", + "linz:geographic_description": "West Coast and Hauraki Plains", + "extent": { + "spatial": { "bbox": [[174.5702773, -38.7625134, 175.7447982, -36.9977812]] }, + "temporal": { "interval": [["2015-02-06T11:00:00Z", "2015-02-28T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220351a84fe7a2184031b8f251c871bbf2355cb071d8c1074100d75d889ca779d17", + "file:size": 606232 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json b/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..3507490f --- /dev/null +++ b/stac/wellington/hutt-city_2021/dem_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPF9MT38NM2T02EW00BF45Z", + "title": "Wellington - Hutt City LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Wellington region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hutt City", + "extent": { + "spatial": { "bbox": [[174.802131, -41.3527997, 175.034859, -41.0906186]] }, + "temporal": { "interval": [["2021-03-22T11:00:00Z", "2021-03-26T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220e1dc00d6a8019789c90f86804c62ba6ff723aac58cabc834200c92251b7ce4f9", + "file:size": 54497 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json b/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b33a31d2 --- /dev/null +++ b/stac/wellington/hutt-city_2021/dsm_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPFBSFMSK3EAGMX91XWSPST", + "title": "Wellington - Hutt City LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Wellington region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Hutt City", + "extent": { + "spatial": { "bbox": [[174.802131, -41.3527997, 175.034859, -41.0906186]] }, + "temporal": { "interval": [["2021-03-22T11:00:00Z", "2021-03-26T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fc0a49f60701778f24343bf415368e688f0ac78755398db295ce5b5b5e506610", + "file:size": 64992 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json b/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..d214c75b --- /dev/null +++ b/stac/wellington/kapiti-coast_2021/dem_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPESP47FJ7SRPP3H26MCRAM", + "title": "Wellington - Kāpiti Coast LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Wellington region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Kāpiti Coast District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kāpiti Coast", + "extent": { + "spatial": { "bbox": [[174.9089866, -41.0277519, 175.2506622, -40.6337799]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220095cc1f8b95ded37f9935d3f8d5bbbf04edb3926d981d622cfa9ce155b4e3e48", + "file:size": 33256 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json b/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..ebcbbdcf --- /dev/null +++ b/stac/wellington/kapiti-coast_2021/dsm_1m/2193/collection.json @@ -0,0 +1,60 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPF1CPR7PB5HMKP583SNCAA", + "title": "Wellington - Kāpiti Coast LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Wellington region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Kāpiti Coast District Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Kāpiti Coast", + "extent": { + "spatial": { "bbox": [[174.9089866, -41.0277519, 175.2506622, -40.6337799]] }, + "temporal": { "interval": [["2021-03-12T11:00:00Z", "2021-03-14T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122005589fbc88edb964de76334f495163cb5ac7379644c22131d346a9e064b601ea", + "file:size": 33355 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/porirua_2023/dem_1m/2193/collection.json b/stac/wellington/porirua_2023/dem_1m/2193/collection.json new file mode 100644 index 00000000..dd6f43f1 --- /dev/null +++ b/stac/wellington/porirua_2023/dem_1m/2193/collection.json @@ -0,0 +1,55 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFHMB6E7XTG5KNMVKJ870C", + "title": "Wellington - Porirua LiDAR 1m DEM (2023)", + "description": "Digital Elevation Model within the Wellington region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Porirua City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Porirua", + "extent": { + "spatial": { "bbox": [[174.7415177, -41.2240674, 175.0308433, -40.9619694]] }, + "temporal": { "interval": [["2023-01-17T11:00:00Z", "2023-04-15T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220c9ba2450b90ac5b7c07e7106f1ee833f823a8c585bef3d32b32fadbda6b0df57", + "file:size": 3995 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/porirua_2023/dsm_1m/2193/collection.json b/stac/wellington/porirua_2023/dsm_1m/2193/collection.json new file mode 100644 index 00000000..84f72d97 --- /dev/null +++ b/stac/wellington/porirua_2023/dsm_1m/2193/collection.json @@ -0,0 +1,55 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQRFJFR5VSY4853G66QD438Q", + "title": "Wellington - Porirua LiDAR 1m DSM (2023)", + "description": "Digital Surface Model within the Wellington region captured in 2023.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" } + ], + "providers": [ + { "name": "Landpro", "roles": ["producer"] }, + { "name": "Porirua City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Porirua", + "extent": { + "spatial": { "bbox": [[174.7415177, -41.2240674, 175.0308433, -40.9619694]] }, + "temporal": { "interval": [["2023-01-17T11:00:00Z", "2023-04-15T12:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220db37dfa146b294346c20e061c141f1bbae8da9db7d4404b8f22597b9d8f83710", + "file:size": 4597 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json b/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json new file mode 100644 index 00000000..1efa37e4 --- /dev/null +++ b/stac/wellington/upper-hutt-city_2021/dem_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPEDD94P084NZMA8KTQSVCV", + "title": "Wellington - Upper Hutt City LiDAR 1m DEM (2021)", + "description": "Digital Elevation Model within the Wellington region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Upper Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Upper Hutt City", + "extent": { + "spatial": { "bbox": [[174.9717275, -41.2212486, 175.2023473, -41.0237366]] }, + "temporal": { "interval": [["2021-03-24T11:00:00Z", "2021-03-26T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207c7972ea114de61f34d33020c4c72222f2d9244a09716c50b21b52ca5acbf221", + "file:size": 4770 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json b/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json new file mode 100644 index 00000000..9f74b1f5 --- /dev/null +++ b/stac/wellington/upper-hutt-city_2021/dsm_1m/2193/collection.json @@ -0,0 +1,48 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQPEMX4YRZA6FE2P8X42CP8A", + "title": "Wellington - Upper Hutt City LiDAR 1m DSM (2021)", + "description": "Digital Surface Model within the Wellington region captured in 2021.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" } + ], + "providers": [ + { "name": "AAM NZ", "roles": ["producer"] }, + { "name": "Upper Hutt City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Upper Hutt City", + "extent": { + "spatial": { "bbox": [[174.9717275, -41.2212486, 175.2023473, -41.0237366]] }, + "temporal": { "interval": [["2021-03-24T11:00:00Z", "2021-03-26T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12207c7972ea114de61f34d33020c4c72222f2d9244a09716c50b21b52ca5acbf221", + "file:size": 4770 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json b/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json new file mode 100644 index 00000000..f2746e36 --- /dev/null +++ b/stac/wellington/wellington-city_2019-2020/dem_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMBZ0CC3ZD705NJ8GTHFKA1", + "title": "Wellington City LiDAR 1m DEM (2019-2020)", + "description": "Digital Elevation Model within the Wellington region captured in 2019-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Wellington City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wellington City", + "extent": { + "spatial": { "bbox": [[174.6877591, -41.4202865, 174.9202826, -41.0935096]] }, + "temporal": { "interval": [["2019-03-19T11:00:00Z", "2020-03-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122030d81e99d842a5791df0b36050b307569728b0b56afdd071c5243a9ad4ac3890", + "file:size": 4165 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json b/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json new file mode 100644 index 00000000..f65f715a --- /dev/null +++ b/stac/wellington/wellington-city_2019-2020/dsm_1m/2193/collection.json @@ -0,0 +1,53 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQMBZ3AN7M16TBT28MJWXCAM", + "title": "Wellington City LiDAR 1m DSM (2019-2020)", + "description": "Digital Surface Model within the Wellington region captured in 2019-2020.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Wellington City Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "linz:geographic_description": "Wellington City", + "extent": { + "spatial": { "bbox": [[174.6877591, -41.4202865, 174.9202826, -41.0935096]] }, + "temporal": { "interval": [["2019-03-19T11:00:00Z", "2020-03-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220385235693698fd3d7811a8bff51db607b8f69603f913005fbe6776bd8449d459", + "file:size": 4671 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/wellington_2013-2014/dem_1m/2193/collection.json b/stac/wellington/wellington_2013-2014/dem_1m/2193/collection.json new file mode 100644 index 00000000..c527ef26 --- /dev/null +++ b/stac/wellington/wellington_2013-2014/dem_1m/2193/collection.json @@ -0,0 +1,340 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSEZ6S5JQWAAZA8HE4GB441", + "title": "Wellington LiDAR 1m DEM (2013-2014)", + "description": "Digital Elevation Model within the Wellington region captured in 2013-2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Greater Wellington Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[174.5749311, -41.6707333, 176.3820697, -40.6067447]] }, + "temporal": { "interval": [["2012-12-31T11:00:00Z", "2014-12-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "12209d6914063fb75a0fc731011aab2e20941f6aa42353d2475d9bbdda67d6e39c33", + "file:size": 495527 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/wellington/wellington_2013-2014/dsm_1m/2193/collection.json b/stac/wellington/wellington_2013-2014/dsm_1m/2193/collection.json new file mode 100644 index 00000000..b981b4d9 --- /dev/null +++ b/stac/wellington/wellington_2013-2014/dsm_1m/2193/collection.json @@ -0,0 +1,340 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQSF0RZ3PEA164YN0VCV66PV", + "title": "Wellington LiDAR 1m DSM (2013-2014)", + "description": "Digital Surface Model within the Wellington region captured in 2013-2014.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BN36_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BN37_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP31_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP32_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BP35_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BP36_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ31_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ32_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ33_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ34_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ35_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BQ36_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR33_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BR34_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "Greater Wellington Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "wellington", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[174.5749311, -41.6707333, 176.3820697, -40.6067447]] }, + "temporal": { "interval": [["2012-12-31T11:00:00Z", "2014-12-30T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220fb2aad7546d0638fe27f3e18a4c3a452649c2065fe75c0faa5799da3e09bea79", + "file:size": 495234 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json new file mode 100644 index 00000000..774aa95d --- /dev/null +++ b/stac/west-coast/west-coast_2020-2022/dem_1m/2193/collection.json @@ -0,0 +1,320 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQVVCM7AR4J34QDDYVA54Q6D", + "title": "West Coast LiDAR 1m DEM (2020-2022)", + "description": "Digital Elevation Model within the West Coast region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "West Coast Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dem", + "linz:region": "west-coast", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[168.0352097, -44.3199292, 171.9916607, -41.5564186]] }, + "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "1220200b1c9f054cc01e3d8d1e8d5d5e8007a478102eb0010c6536aaa227192f54fe", + "file:size": 62963 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json new file mode 100644 index 00000000..9681a5e3 --- /dev/null +++ b/stac/west-coast/west-coast_2020-2022/dsm_1m/2193/collection.json @@ -0,0 +1,320 @@ +{ + "type": "Collection", + "stac_version": "1.0.0", + "id": "01HQVVCN98JY46D6DF254SZ3DW", + "title": "West Coast LiDAR 1m DSM (2020-2022)", + "description": "Digital Surface Model within the West Coast region captured in 2020-2022.", + "license": "CC-BY-4.0", + "links": [ + { + "rel": "root", + "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json", + "type": "application/json" + }, + { "rel": "self", "href": "./collection.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BR20_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BR21_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BS19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BS20_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BT19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BT20_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU18_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BU19_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV16_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BV17_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BV18_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BV19_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW14_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BW15_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BW16_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BW17_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX12_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BX13_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BX14_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BX15_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY10_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BY11_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BY12_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BY13_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0305.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0403.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0404.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0405.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0501.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0502.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0503.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0504.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ09_10000_0505.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0104.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0105.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0201.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0202.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0203.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0204.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0205.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0301.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0302.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0303.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0304.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0401.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ10_10000_0402.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0101.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0102.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0103.json", "type": "application/json" }, + { "rel": "item", "href": "./BZ11_10000_0201.json", "type": "application/json" } + ], + "providers": [ + { "name": "Aerial Surveys", "roles": ["producer"] }, + { "name": "West Coast Regional Council", "roles": ["licensor"] }, + { "name": "Toitū Te Whenua Land Information New Zealand", "roles": ["host", "processor"] } + ], + "linz:lifecycle": "completed", + "linz:geospatial_category": "dsm", + "linz:region": "west-coast", + "linz:security_classification": "unclassified", + "extent": { + "spatial": { "bbox": [[168.0352097, -44.3199292, 171.9916607, -41.5564186]] }, + "temporal": { "interval": [["2020-05-15T12:00:00Z", "2022-02-13T11:00:00Z"]] } + }, + "assets": { + "capture_area": { + "href": "./capture-area.geojson", + "title": "Capture area", + "type": "application/geo+json", + "roles": ["metadata"], + "file:checksum": "122053407ed63fd6ec9b109dcfc337167f89c5bf10be3df000f49ec3a7fa1ba9075d", + "file:size": 65977 + } + }, + "stac_extensions": ["https://stac-extensions.github.io/file/v2.0.0/schema.json"] +} diff --git a/template/catalog.json b/template/catalog.json index 481bb649..21386acb 100644 --- a/template/catalog.json +++ b/template/catalog.json @@ -1,10 +1,10 @@ { "stac_version": "1.0.0", "type": "Catalog", - "id": "linz-elevation", - "description": "Toitū Te Whenua Land Information New Zealand makes New Zealand's publicly owned elevation archive freely available to use under an open licence. ", + "id": "nz-elevation", + "description": "Toitū Te Whenua Land Information New Zealand makes New Zealand's publicly owned elevation archive freely available to use under an open licence. This public S3 bucket has been made available to enable bulk access and cloud-based data processing.", "links": [ - { "rel": "self", "href": "https://linz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json" }, + { "rel": "self", "href": "https://nz-elevation.s3.ap-southeast-2.amazonaws.com/catalog.json" }, { "rel": "root", "href": "./catalog.json" } ] }