mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-29 14:51:50 -08:00
Merge branch 'meshtastic:master' into master
This commit is contained in:
commit
7c34078742
30
.github/workflows/ci.yml
vendored
30
.github/workflows/ci.yml
vendored
|
@ -5,21 +5,39 @@ on:
|
|||
pull_request:
|
||||
|
||||
jobs:
|
||||
quality:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Biome
|
||||
uses: biomejs/setup-biome@v1
|
||||
with:
|
||||
version: latest
|
||||
|
||||
- name: Run Biome
|
||||
run: biome ci .
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code & submodules
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup pnpm
|
||||
uses: pnpm/action-setup@v2.2.1
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: latest
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'latest'
|
||||
|
||||
- name: Install Dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: Build Site
|
||||
run: pnpm build
|
||||
- name: Build Package
|
||||
run: pnpm run build
|
2
.vscode/extensions.json
vendored
2
.vscode/extensions.json
vendored
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"recommendations": ["biomejs.biome"]
|
||||
"recommendations": ["biomejs.biome", "unifiedjs.vscode-mdx"]
|
||||
}
|
||||
|
|
40
biome.json
40
biome.json
|
@ -1,18 +1,26 @@
|
|||
{
|
||||
"$schema": "https://biomejs.dev/schemas/1.3.3/schema.json",
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"indentStyle": "space",
|
||||
"indentWidth": 2
|
||||
},
|
||||
"organizeImports": {
|
||||
"enabled": true
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
"all": true
|
||||
|
||||
}
|
||||
}
|
||||
"$schema": "https://biomejs.dev/schemas/1.5.0/schema.json",
|
||||
"organizeImports": {
|
||||
"enabled": true
|
||||
},
|
||||
"files": {
|
||||
"ignoreUnknown": true
|
||||
},
|
||||
"vcs": {
|
||||
"enabled": true,
|
||||
"clientKind": "git",
|
||||
"useIgnoreFile": true,
|
||||
"defaultBranch": "master"
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"indentStyle": "space",
|
||||
"indentWidth": 2
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
"all": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ Most communication and interactions happen with protocol buffers. The [Meshtasti
|
|||
|
||||
### Device Firmware
|
||||
|
||||
The [firmware repo](https://github.com/meshtastic/firmware) is where all of the device firmware development happens. This is where the code for the ESP32 and nRF52 based devices is developed. It is mainly C and C++ code. Think Arduino. It is where the first level of hardware interaction begins and ends.
|
||||
The [firmware repo](https://github.com/meshtastic/firmware) is where all of the device firmware development happens. This is where the code for the ESP32, nRF52 and RP2040 based devices is developed. It is mainly C and C++ code. Think Arduino. It is where the first level of hardware interaction begins and ends.
|
||||
|
||||
### Firmware Modules
|
||||
|
||||
|
@ -44,13 +44,6 @@ The [firmware repo](https://github.com/meshtastic/firmware) is where all of the
|
|||
- **Meshtastic Web** - The [meshtastic/web repository](https://github.com/meshtastic/web) is where the hosted web server on the ESP32 devices in Typescript is developed. See the [Web Development Overview](/docs/development/web/) for more details.
|
||||
- **Meshtastic JS** - The [meshtastic/meshtastic.js](https://github.com/meshtastic/meshtastic.js) repository is a JavaScript library that provides an interface for Meshtastic devices. See [Javascript Development](/docs/development/js) for more details
|
||||
|
||||
@sachaw has been making tons of progress on the web app and would love help with:
|
||||
|
||||
- Saving of preferences
|
||||
- Better loading state indicators
|
||||
- Chat scroll lock
|
||||
- Various module support
|
||||
|
||||
### Mobile and Desktop Apps (Device Interface)
|
||||
|
||||
There are Android, iOS, iPadOS, and macOS apps that interact with Meshtastic devices:
|
||||
|
@ -60,4 +53,4 @@ There are Android, iOS, iPadOS, and macOS apps that interact with Meshtastic dev
|
|||
|
||||
### Documentation
|
||||
|
||||
The Meshtastic website (the one you are looking at right now) is in the [meshtastic/Meshtastic](https://github.com/meshtastic/meshtastic) repository. See [Maintaining Documentation](docs/development/docs) for more details.
|
||||
The Meshtastic website (the one you are looking at right now) is in the [meshtastic/Meshtastic](https://github.com/meshtastic/meshtastic) repository. See [Maintaining Documentation](/docs/development/docs) for more details.
|
||||
|
|
|
@ -131,6 +131,10 @@ All MQTT module config options are available for the Web UI.
|
|||
|
||||
## Connect to the Default Public Server
|
||||
|
||||
:::important
|
||||
The default channel (LongFast) on the public server usually has a lot of traffic. Your device may get overloaded and may no longer function properly anymore. It is recommended to use a different channel or to use your own MQTT server if you experience issues.
|
||||
:::
|
||||
|
||||
<Tabs
|
||||
defaultValue="apple"
|
||||
values={[
|
||||
|
|
|
@ -7,7 +7,7 @@ sidebar_label: Remote Hardware
|
|||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
|
||||
The Remote Hardware Module allows control of a GPIO pin on a remote node. Config options are: Enabled, Allow Undefined Pin Access, Available Pins
|
||||
The Remote Hardware Module allows to read, write and watch GPIO pins on a remote node. Config options are: Enabled.
|
||||
|
||||
:::info
|
||||
|
||||
|
@ -19,16 +19,7 @@ While configuring this module may be available in clients, setting and reading G
|
|||
|
||||
### Enabled
|
||||
|
||||
Whether the module is enabled
|
||||
|
||||
### Allow Undefined Pin Access
|
||||
|
||||
Whether the module allows consumers to read/write to pins not that are not defined in available_pins
|
||||
|
||||
### Available Pins
|
||||
|
||||
Exposes the available pins to the mesh for reading and writing
|
||||
|
||||
Whether the module is enabled.
|
||||
|
||||
## Remote Hardware Module Client Availability
|
||||
|
||||
|
@ -88,7 +79,10 @@ GPIO access is fundamentally dangerous because invalid options can physically da
|
|||
|
||||
- Set any GPIO
|
||||
- Read any GPIO
|
||||
- Receive notification of changes in any GPIO
|
||||
- Receive a notification over the mesh if any GPIO changes state.
|
||||
Note that it cannot detect fast changes like button presses. For this, look at the [Detection Sensor module](/docs/configuration/module/detection-sensor) instead.
|
||||
|
||||
The result of reading a GPIO or notifications of GPIO changes will also be sent over MQTT (if enabled) in JSON format (if enabled).
|
||||
|
||||
### Setup
|
||||
|
||||
|
@ -103,16 +97,12 @@ The procedure using the python command line tool is:
|
|||
```shell
|
||||
meshtastic --ch-add gpio
|
||||
```
|
||||
3. If doing local testing, you may also want to change the speed of the channel:
|
||||
```shell
|
||||
meshtastic --ch-mediumfast
|
||||
```
|
||||
4. Check the channel has been created and copy the long "Complete URL" that contains all the channels on that device:
|
||||
3. Check the channel has been created and copy the long "Complete URL" that contains all the channels on that device:
|
||||
```shell
|
||||
meshtastic --info
|
||||
```
|
||||
5. Connect the remote device via USB (or use the [remote admin](/docs/configuration/remote-admin) feature to reach it through the mesh)
|
||||
6. Set it to join the gpio channel you created:
|
||||
4. Connect the remote device via USB (or use the [remote admin](/docs/configuration/remote-admin) feature to reach it through the mesh)
|
||||
5. Set it to join the gpio channel you created:
|
||||
```shell
|
||||
meshtastic --seturl theurlyoucopiedinstep3
|
||||
```
|
||||
|
@ -121,7 +111,8 @@ Now both devices should be able to talk over the `gpio` channel. Send a text mes
|
|||
|
||||
### Masks
|
||||
|
||||
To determine the appropriate mask for the pin(s) that you want to know. The python program (and output) below might help:
|
||||
A mask is used to set the GPIOs to control. For GPIO 1, bit 1 of the mask is set (0x2 in hexadecimal), for GPIO 2, bit 2 of the mask is set (0x4 in hexadecimal), and so on.
|
||||
To determine the appropriate mask for the pin(s) that you want to know, the python program (and output) below might help:
|
||||
|
||||
```python
|
||||
>>> for i in range(1,45):
|
||||
|
@ -173,36 +164,12 @@ GPIO:43 mask:0x80000000000
|
|||
GPIO:44 mask:0x100000000000
|
||||
```
|
||||
|
||||
## Testing GPIO Operations
|
||||
|
||||
You can programmatically do operations from your own python code by using the Meshtastic `RemoteHardwareClient` class. See the [Python API](/docs/software/python/cli/installation) documentation for more details.
|
||||
|
||||
You can add a simple LED and resistor to validate that the GPIO operations work as expected. Use [this tutorial](https://www.instructables.com/Slide-Switch-With-Arduino-Uno-R3/) as a guide.
|
||||
|
||||
### Requirements
|
||||
|
||||
- (x2) Meshtastic devices (one device could be on a local computer, and the other one just has to be powered and is the one with the LED to be connected to it)
|
||||
- (x2) wires (black and yellow; they can be any color but typically black is used for ground)
|
||||
- (x1) LED
|
||||
- (x1) 220Ω resistor (somewhat optional, but recommended)
|
||||
- (x1) Breadboard (optional)
|
||||
|
||||
### Preparation
|
||||
|
||||
1. Disconnect the remote device from power (battery/usb)
|
||||
2. Connect the resistor to the longer (positive) lead of the LED and the yellow wire to the other end of the resistor
|
||||
3. Connect the other end of the yellow wire to a GPIO pin that will not cause any issues (ex: for TLoraV1, we can use GPIO21)
|
||||
4. Connect the black "ground" wire from the ground pin on the device (ex: for TLoraV1 it is the end pin next to the RST button) to the shorter (negative) lead of the LED
|
||||
5. Power on the device
|
||||
|
||||
### Validation
|
||||
|
||||
By default, the pin may be "off" or "on". (It will most likely "off".) See the steps below for running commands. In the example of GPIO21, the mask would be `0x200000`.
|
||||
|
||||
![T-Lora v1 with LED on GPIO 21](/img/LED_on_TLoraV1.jpg)
|
||||
|
||||
## Using GPIOs from the Python CLI
|
||||
|
||||
:::info
|
||||
You can also control or watch GPIOs of your USB-connected node by setting `--dest` to the local node's ID. No `gpio` channel is needed in this case.
|
||||
:::
|
||||
|
||||
### Writing a GPIO
|
||||
|
||||
```shell title="Example: turning 'on' GPIO4"
|
||||
|
@ -235,3 +202,31 @@ meshtastic --port /dev/ttyUSB0 --gpio-watch 0x10 --dest 28979058
|
|||
# Received RemoteHardware typ=GPIOS_CHANGED, gpio_value=16
|
||||
# < press ctrl-c to exit >
|
||||
```
|
||||
|
||||
## Testing GPIO Operations
|
||||
|
||||
You can programmatically do operations from your own python code by using the Meshtastic `RemoteHardwareClient` class. See the [Python API](/docs/software/python/cli/installation) documentation for more details.
|
||||
|
||||
You can add a simple LED and resistor to validate that the GPIO operations work as expected. Use [this tutorial](https://www.instructables.com/Slide-Switch-With-Arduino-Uno-R3/) as a guide.
|
||||
|
||||
### Requirements
|
||||
|
||||
- (x2) Meshtastic devices (one device could be on a local computer, and the other one just has to be powered and is the one with the LED to be connected to it)
|
||||
- (x2) wires (black and yellow; they can be any color but typically black is used for ground)
|
||||
- (x1) LED
|
||||
- (x1) 220Ω resistor (somewhat optional, but recommended)
|
||||
- (x1) Breadboard (optional)
|
||||
|
||||
### Preparation
|
||||
|
||||
1. Disconnect the remote device from power (battery/usb)
|
||||
2. Connect the resistor to the longer (positive) lead of the LED and the yellow wire to the other end of the resistor
|
||||
3. Connect the other end of the yellow wire to a GPIO pin that will not cause any issues (ex: for TLoraV1, we can use GPIO21)
|
||||
4. Connect the black "ground" wire from the ground pin on the device (ex: for TLoraV1 it is the end pin next to the RST button) to the shorter (negative) lead of the LED
|
||||
5. Power on the device
|
||||
|
||||
### Validation
|
||||
|
||||
By default, the pin may be "off" or "on". (It will most likely "off".) See the steps below for running commands. In the example of GPIO21, the mask would be `0x200000`.
|
||||
|
||||
![T-Lora v1 with LED on GPIO 21](/img/LED_on_TLoraV1.jpg)
|
||||
|
|
|
@ -55,7 +55,7 @@ Each channel is assigned one of 3 roles:
|
|||
- The channel settings are set to default.
|
||||
|
||||
:::note
|
||||
While you can have a different PRIMARY channel and communicate over SECONDARY channels with the same PSK, a hash of the PRIMARY channel's name sets the LoRa channel number, which determines the actual frequency you are transmitting on in the band.
|
||||
While you can have a different PRIMARY channel and communicate over SECONDARY channels with the same Name & PSK, a hash of the PRIMARY channel's name sets the LoRa channel number, which determines the actual frequency you are transmitting on in the band.
|
||||
To ensure devices with different PRIMARY channel name transmit on the same frequency, you must explicitly set the LoRa channel number.
|
||||
:::
|
||||
|
||||
|
@ -72,6 +72,12 @@ A short identifier for the channel. _(< 12 bytes)_
|
|||
| `""` (default) | If left empty on the Primary channel, this designates the `default` channel. |
|
||||
| `admin` | On Secondary channels, the name `admin` (case sensitive) designates the `admin` channel used to administer nodes over the mesh |
|
||||
|
||||
:::note
|
||||
|
||||
Matching channel names are required in order to communicate on the same channel with other devices. Example: If your device is using the channel name `LongFast` the device you are attempting to communicate with must also have a channel named `LongFast`.
|
||||
|
||||
:::
|
||||
|
||||
### PSK
|
||||
|
||||
The encryption key used for private channels.
|
||||
|
@ -80,6 +86,12 @@ Hex byte `0x01` for the Primary `default` channel.
|
|||
|
||||
Must be either 0 bytes (no crypto), 16 bytes (AES128), or 32 bytes (AES256).
|
||||
|
||||
:::note
|
||||
|
||||
Matching PSKs are required in order to communicate on the same channel with other devices. Example: If your device is using a channel with the default PSK of `AQ==` the device you are attempting to communicate with must also have a matching channel with the same PSK.
|
||||
|
||||
:::
|
||||
|
||||
### Downlink Enabled
|
||||
|
||||
If enabled, messages captured from a **public** internet gateway will be forwarded to the local mesh.
|
||||
|
@ -112,6 +124,7 @@ Channel Config options are available on Android.
|
|||
![Android Menu Tabs](/img/android/android-menu-channel.png)
|
||||
|
||||
The Radio Configuration tab can be used for common tasks:
|
||||
|
||||
1. View your current channel configuration QR code and URL.
|
||||
2. Quickly create or modify your primary channel.
|
||||
3. Select a modem preset for all your channels i.e. `Long Range / Fast`.
|
||||
|
@ -126,7 +139,6 @@ Tap the Channel Name (or the pen icon) to access the Channel Menu:
|
|||
2. Create or modify encryption keys
|
||||
3. Enable uplink and downlink for individual channels
|
||||
|
||||
|
||||
</TabItem>
|
||||
|
||||
<TabItem value="apple">
|
||||
|
|
|
@ -15,7 +15,7 @@ Power settings are advanced configuration, most users should choose a role under
|
|||
The power config options are: Power Saving, Shutdown after losing power, ADC Multiplier Override, Wait Bluetooth Interval, Light Sleep Interval, Minimum Wake Interval, and Device Battery INA2xx Address. Power config uses an admin message sending a `Config.Power` protobuf.
|
||||
|
||||
:::info
|
||||
ADC Multiplier, The Light Sleep setting only applies to ESP32-based boards. This settings will have no effect on nRF52 modules.
|
||||
ADC Multiplier, The Light Sleep setting only applies to ESP32-based boards. This settings will have no effect on nRF52/RP2040 modules.
|
||||
:::
|
||||
|
||||
## Power Config Values
|
||||
|
|
|
@ -29,7 +29,7 @@ If you'd like to connect with other Meshtastic users but only share your locatio
|
|||
1. Ensure you have not changed the LoRa [Modem Preset](/docs/configuration/radio/lora#modem-preset) from the default `unset` / `LONG_FAST`.
|
||||
2. On your PRIMARY channel, set anything you'd like for the channel's name and choose a random PSK.
|
||||
3. Enable a SECONDARY channel named "LongFast" with PSK "AQ==".
|
||||
4. Since the radio's frequency is automatically changed based on your PRIMARY channel's name, you will have to manually set it back to your region's default (in LoRa settings) in order to interface with users on the default channel:
|
||||
4. If your LoRa channel is set to the default (`0`), the radio's frequency will be automatically changed based on your PRIMARY channel's name. In this case, you will have to manually set it back to your region's default (in LoRa settings) in order to interface with users on the default channel:
|
||||
|
||||
### Default Primary Channels by Region
|
||||
|
||||
|
@ -65,4 +65,5 @@ This configures the frequency the radio is set to. Check out the [frequency cal
|
|||
- If you are part of a large mesh and don't know what a setting does, don't change it (unless you're super curious).
|
||||
- Leave your [MAX HOPS](/docs/configuration/radio/lora#max-hops) set to 3 unless you're sure you need more (or less) to reach your destination node.
|
||||
- TEST your settings and hardware before you install in hard-to-reach locations.
|
||||
- Connecting a node to the [public MQTT server](http://localhost:3000/docs/configuration/module/mqtt#connect-to-the-default-public-server) may publish the locations of all nodes in your mesh to the internet. This will also add every globally connected node to your node database and potentially flood your mesh with all types of packets.
|
||||
- Connecting a node to the [public MQTT server](./module/mqtt#connect-to-the-default-public-server) may publish the locations of all nodes in your mesh to the internet. This will also add every globally connected node to your node database and potentially flood your mesh with all types of packets.
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ UUID
|
|||
Properties
|
||||
Description (including human readable name)
|
||||
|
||||
8ba2bcc2-ee02-4a55-a531-c525c5e454d5
|
||||
2c55e69e-4993-11ed-b878-0242ac120002
|
||||
read
|
||||
fromradio - contains a newly received FromRadio packet destined towards the phone (up to MAXPACKET bytes per packet).
|
||||
After reading the ESP32 will put the next packet in this mailbox. If the FIFO is empty it will put an empty packet in this
|
||||
|
|
|
@ -7,7 +7,7 @@ sidebar_label: Connecting
|
|||
```tsx
|
||||
import type React from "React";
|
||||
|
||||
import { IHTTPConnection } from "@meshtastic/meshtasticjs";
|
||||
import { IHTTPConnection } from "@meshtastic/js";
|
||||
|
||||
export const Connection = (): JSX.Element => {
|
||||
const connection = new IHTTPConnection();
|
||||
|
|
|
@ -14,7 +14,7 @@ import {
|
|||
Types,
|
||||
Protobuf,
|
||||
SettingsManager
|
||||
} from "@meshtastic/meshtasticjs";
|
||||
} from "@meshtastic/js";
|
||||
|
||||
/**
|
||||
* Connection method
|
||||
|
|
|
@ -42,7 +42,7 @@ The nRF52 chip is much more power efficient than the ESP32 chip and easier to up
|
|||
|
||||
The RP2040 is a dual-core ARM chip developed by Raspberry Pi. Supported RP2040 devices include:
|
||||
|
||||
- Raspberry Pi Pico + Waveshare LoRa Module (Note: **Bluetooth and Wi-Fi on the Pico W is not yet supported by Meshtastic**)
|
||||
- Raspberry Pi Pico + Waveshare LoRa Module (Note: **Bluetooth on the Pico W is not yet supported by Meshtastic**)
|
||||
- RAK11310 Core module for RAK WisBlock modular boards
|
||||
|
||||
:::info
|
||||
|
@ -67,7 +67,7 @@ Some cables only provide _charging_, verify that your cable is also capable of _
|
|||
|
||||
:::caution
|
||||
|
||||
nRF52 devices typically do not require serial drivers. They use the UF2 bootloader which makes the devices appear as flash drives. Do _NOT_ download the USB device drivers unless required to install UF2 support.
|
||||
nRF52/RP2040 devices typically do not require serial drivers. They use the UF2 bootloader which makes the devices appear as flash drives. Do _NOT_ download the USB device drivers unless required to install UF2 support.
|
||||
|
||||
:::
|
||||
|
||||
|
@ -89,7 +89,7 @@ If you require serial drivers installed on your computer, please choose one of t
|
|||
className={'button button--outline button--lg cta--button'}
|
||||
to={'/docs/getting-started/serial-drivers/nrf52'}
|
||||
>
|
||||
Install NRF52 Drivers
|
||||
Install nRF52/RP2040 Drivers
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -115,7 +115,7 @@ After completing the previous steps, you can now flash the Meshtastic firmware o
|
|||
className={"button button--outline button--lg cta--button"}
|
||||
to={"/docs/getting-started/flashing-firmware/nrf52/"}
|
||||
>
|
||||
Flash nRF52 Firmware
|
||||
Flash nRF52/RP2040 Firmware
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
id: nrf52
|
||||
title: nRF52 Serial Drivers
|
||||
sidebar_label: nRF52 Drivers
|
||||
title: nRF52/RP2040 Serial Drivers
|
||||
sidebar_label: nRF52/RP2040 Drivers
|
||||
sidebar_position: 2
|
||||
---
|
||||
|
||||
|
@ -9,11 +9,11 @@ import Tabs from "@theme/Tabs";
|
|||
import TabItem from "@theme/TabItem";
|
||||
import Link from "@docusaurus/Link";
|
||||
|
||||
## Install nRF52 USB to Serial Drivers
|
||||
## Install nRF52/RP2040 USB to Serial Drivers
|
||||
|
||||
:::caution
|
||||
|
||||
nRF52 devices typically do not require serial drivers. They use the UF2 bootloader which makes the devices appear as flash drives. Do _NOT_ download the USB device drivers unless required to install UF2 support.
|
||||
nRF52/RP2040 devices typically do not require serial drivers. They use the UF2 bootloader which makes the devices appear as flash drives. Do _NOT_ download the USB device drivers unless required to install UF2 support.
|
||||
|
||||
:::
|
||||
|
||||
|
@ -86,6 +86,6 @@ After installing the serial drivers, you can now flash the Meshtastic firmware o
|
|||
className={"button button--outline button--lg cta--button"}
|
||||
to={"/docs/getting-started/flashing-firmware/nrf52/"}
|
||||
>
|
||||
Flash nRF52 Firmware
|
||||
Flash nRF52/RP2040 Firmware
|
||||
</Link>
|
||||
</div>
|
||||
|
|
|
@ -94,7 +94,7 @@ After completing the previous steps, you can now flash the Meshtastic firmware o
|
|||
className={"button button--outline button--lg cta--button"}
|
||||
to={"/docs/getting-started/flashing-firmware/nrf52/"}
|
||||
>
|
||||
Flash nRF52 Firmware
|
||||
Flash nRF52/RP2040 Firmware
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -124,7 +124,7 @@ This device may have issues charging a connected battery if utilizing a USB-C to
|
|||
|
||||
### Pin Map
|
||||
|
||||
![HTIT-WSL_V3_PIN_MAP](/img/hardware/HTIT-WSL_V3_PIN_MAP.png)
|
||||
![HTIT-WSL_V3_PIN_MAP](/img/hardware/heltek-wsl-v3.svg)
|
||||
|
||||
Image Source: [Heltec](https://resource.heltec.cn/download/Wireless_Stick_Lite_V3/HTIT-WSL_V3.png)
|
||||
|
||||
|
|
|
@ -39,4 +39,4 @@ Further information on the LILYGO® T-Echo devices can be found on LILYGO®'s [G
|
|||
- AliExpress: [T-Echo Meshtastic 433/868/915MHz with optional BME280 sensor](https://www.aliexpress.com/item/1005003026107533.html)
|
||||
- US Distributor - Rokland: [915MHz](https://store.rokland.com/products/lilygo-ttgo-meshtastic-t-echo-white-lora-sx1262-wireless-module-915mhz-nrf52840-gps-for-arduino?ref=8Bb2mUO5i-jKwt) [915MHz BME280 Kit](https://store.rokland.com/products/lilygo-ttgo-meshtastic-t-echo-white-bme280-lora-sx1262-wireless-module-915mhz-nrf52840-gps-rtc-nfc-for-arduino?ref=8Bb2mUO5i-jKwt)
|
||||
|
||||
![LILYGO T-Echo](/img/hardware/t-echo.png)
|
||||
![LILYGO T-Echo](/img/hardware/t-echo.svg)
|
||||
|
|
144
docs/legal/code_of_conduct.mdx
Normal file
144
docs/legal/code_of_conduct.mdx
Normal file
|
@ -0,0 +1,144 @@
|
|||
---
|
||||
id: conduct
|
||||
title: Code of Conduct
|
||||
sidebar_label: Conduct
|
||||
---
|
||||
|
||||
# Contributor Covenant Code of Conduct
|
||||
|
||||
## Our Pledge
|
||||
|
||||
We as members, contributors, and leaders pledge to make participation in our
|
||||
community a harassment-free experience for everyone, regardless of age, body
|
||||
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
||||
identity and expression, level of experience, education, socio-economic status,
|
||||
nationality, personal appearance, race, caste, color, religion, or sexual
|
||||
identity and orientation.
|
||||
|
||||
We pledge to act and interact in ways that contribute to an open, welcoming,
|
||||
diverse, inclusive, and healthy community.
|
||||
|
||||
## Our Standards
|
||||
|
||||
Examples of behavior that contributes to a positive environment for our
|
||||
community include:
|
||||
|
||||
* Demonstrating empathy and kindness toward other people
|
||||
* Being respectful of differing opinions, viewpoints, and experiences
|
||||
* Giving and gracefully accepting constructive feedback
|
||||
* Accepting responsibility and apologizing to those affected by our mistakes,
|
||||
and learning from the experience
|
||||
* Focusing on what is best not just for us as individuals, but for the overall
|
||||
community
|
||||
|
||||
Examples of unacceptable behavior include:
|
||||
|
||||
* The use of sexualized language or imagery, and sexual attention or advances of
|
||||
any kind
|
||||
* Trolling, insulting or derogatory comments, and personal or political attacks
|
||||
* Public or private harassment
|
||||
* Publishing others' private information, such as a physical or email address,
|
||||
without their explicit permission
|
||||
* Other conduct which could reasonably be considered inappropriate in a
|
||||
professional setting
|
||||
|
||||
## Enforcement Responsibilities
|
||||
|
||||
Community leaders are responsible for clarifying and enforcing our standards of
|
||||
acceptable behavior and will take appropriate and fair corrective action in
|
||||
response to any behavior that they deem inappropriate, threatening, offensive,
|
||||
or harmful.
|
||||
|
||||
Community leaders have the right and responsibility to remove, edit, or reject
|
||||
comments, commits, code, wiki edits, issues, and other contributions that are
|
||||
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
||||
decisions when appropriate.
|
||||
|
||||
## Scope
|
||||
|
||||
This Code of Conduct applies within all community spaces, and also applies when
|
||||
an individual is officially representing the community in public spaces.
|
||||
Examples of representing our community include using an official email address,
|
||||
posting via an official social media account, or acting as an appointed
|
||||
representative at an online or offline event.
|
||||
|
||||
## Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported to the community leaders responsible for enforcement using one or more of the methods:
|
||||
|
||||
* In Discord, send a private message to an Admin
|
||||
* In Email, send a message to all of these:
|
||||
* conduct@meshtastic.org
|
||||
* jm@meshtastic.org
|
||||
* sachaw@meshtastic.org
|
||||
|
||||
All complaints will be reviewed and investigated promptly and fairly.
|
||||
|
||||
All community leaders are obligated to respect the privacy and security of the
|
||||
reporter of any incident.
|
||||
|
||||
## Enforcement Guidelines
|
||||
|
||||
Community leaders will follow these Community Impact Guidelines in determining
|
||||
the consequences for any action they deem in violation of this Code of Conduct:
|
||||
|
||||
### 1. Correction
|
||||
|
||||
**Community Impact**: Use of inappropriate language or other behavior deemed
|
||||
unprofessional or unwelcome in the community.
|
||||
|
||||
**Consequence**: A private, written warning from community leaders, providing
|
||||
clarity around the nature of the violation and an explanation of why the
|
||||
behavior was inappropriate. A public apology may be requested.
|
||||
|
||||
### 2. Warning
|
||||
|
||||
**Community Impact**: A violation through a single incident or series of
|
||||
actions.
|
||||
|
||||
**Consequence**: A warning with consequences for continued behavior. No
|
||||
interaction with the people involved, including unsolicited interaction with
|
||||
those enforcing the Code of Conduct, for a specified period of time. This
|
||||
includes avoiding interactions in community spaces as well as external channels
|
||||
like social media. Violating these terms may lead to a temporary or permanent
|
||||
ban.
|
||||
|
||||
### 3. Temporary Ban
|
||||
|
||||
**Community Impact**: A serious violation of community standards, including
|
||||
sustained inappropriate behavior.
|
||||
|
||||
**Consequence**: A temporary ban from any sort of interaction or public
|
||||
communication with the community for a specified period of time. No public or
|
||||
private interaction with the people involved, including unsolicited interaction
|
||||
with those enforcing the Code of Conduct, is allowed during this period.
|
||||
Violating these terms may lead to a permanent ban.
|
||||
|
||||
### 4. Permanent Ban
|
||||
|
||||
**Community Impact**: Demonstrating a pattern of violation of community
|
||||
standards, including sustained inappropriate behavior, harassment of an
|
||||
individual, or aggression toward or disparagement of classes of individuals.
|
||||
|
||||
**Consequence**: A permanent ban from any sort of public interaction within the
|
||||
community.
|
||||
|
||||
## Attribution
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
||||
version 2.1, available at
|
||||
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
||||
|
||||
Community Impact Guidelines were inspired by
|
||||
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
||||
|
||||
For answers to common questions about this code of conduct, see the FAQ at
|
||||
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
||||
[https://www.contributor-covenant.org/translations][translations].
|
||||
|
||||
[homepage]: https://www.contributor-covenant.org
|
||||
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
||||
[Mozilla CoC]: https://github.com/mozilla/diversity
|
||||
[FAQ]: https://www.contributor-covenant.org/faq
|
||||
[translations]: https://www.contributor-covenant.org/translations
|
|
@ -11,12 +11,14 @@ sidebar_position: 6
|
|||
|
||||
Meshtastic networks in different locations beyond the reach of LoRa can be easily bridged together using MQTT. The simplest option is to connect your mesh to the official Meshtastic MQTT broker. This makes your devices appear on the world map, and provides a copy of your mesh traffic, translated into JSON. All you have to do to join the public MQTT server is to Enable MQTT and set Uplink and Downlink on the channels that you want to share over MQTT. The default device configuration using the public MQTT Server is encrypted.
|
||||
|
||||
You can also share channel settings with a remote network. If you use the default Meshtastic MQTT server, packets are always encrypted. If you use a custom MQTT broker (ie set `mqtt.address`), the `mqtt.encryption_enabled` setting applies, which by default is false. You can also specify your own private MQTT broker and specify authentication for that broker to bridge several mesh networks together, via the internet (or just a local IP network).
|
||||
You can also specify your own private MQTT broker to bridge mesh networks together, via the internet (or just a local IP network).
|
||||
|
||||
You can find the settings available for MQTT [here](/docs/configuration/module/mqtt).
|
||||
|
||||
:::important
|
||||
When MQTT is turned on, you are potentially broadcasting your entire mesh's traffic onto the public internet. This includes messages and position information.
|
||||
|
||||
The default channel (LongFast) on the public MQTT server usually has a lot of traffic. Your device may get overloaded and may no longer function properly anymore. It is recommended to use a different channel or to use your own MQTT server if you experience issues.
|
||||
:::
|
||||
|
||||
## Software Integrations
|
||||
|
@ -52,7 +54,7 @@ The payload is a raw protobuf, whose definitions for Meshtastic can be found [he
|
|||
If [encryption_enabled](/docs/configuration/module/mqtt#encryption-enabled) is set to true, the payload of the MeshPacket will remain encrypted with the key for the specified channel.
|
||||
|
||||
#### JSON topic
|
||||
If [JSON is enabled](/docs/configuration/module/mqtt/#json-enabled), packets from the following [port numbers](/docs/development/firmware/portnum) are serialized to JSON: `TEXT_MESSAGE_APP`, `TELEMETRY_APP`, `NODEINFO_APP`, `POSITION_APP`, `WAYPOINT_APP`, and `NEIGHBORINFO_APP`. These are then forwarded to the topic:
|
||||
If [JSON is enabled](/docs/configuration/module/mqtt/#json-enabled), packets from the following [port numbers](/docs/development/firmware/portnum) are serialized to JSON: `TEXT_MESSAGE_APP`, `TELEMETRY_APP`, `NODEINFO_APP`, `POSITION_APP`, `WAYPOINT_APP`, `NEIGHBORINFO_APP`, `TRACEROUTE_APP`, `DETECTION_SENSOR_APP`, `PAXCOUNTER_APP` and `REMOTE_HARDWARE_APP`. These are then forwarded to the topic:
|
||||
|
||||
`msh/2/json/CHANNELNAME/USERID`.
|
||||
|
||||
|
|
|
@ -5,7 +5,56 @@ sidebar_label: Node-RED
|
|||
sidebar_position: 3
|
||||
---
|
||||
|
||||
### Using MQTT with Node-RED
|
||||
## Using MQTT with Node-RED
|
||||
|
||||
Node-RED is a free cross-platform programming tool for wiring together hardware, APIs, and online services developed originally by IBM for IOT. It is widely used for home automation by many non-professional programmers and runs well on Pi's. Node-RED has many plug-in modules written by the community.
|
||||
|
||||
I will use this platform as a practical example on how to interface with the MQTT features of Meshtastic. Everything can be done from GUI's without using command line.
|
||||
|
||||
|
||||
### Enabling MQTT
|
||||
|
||||
Use http://client.meshtastic.org/ , the python CLI, or an Apple or Android app to connect to your device and adjust these settings.
|
||||
|
||||
|
||||
1. Settings--> Radio Config--> Network
|
||||
- On the node that will act as the gateway between the mesh and MQTT enable a network connection (i.e. Wifi, Ethernet).
|
||||
- Save
|
||||
|
||||
2. Settings--> Module Config--> MQTT config
|
||||
- Configure the MQTT gateway's network configuration.
|
||||
- Verify Encryption Enabled is OFF.
|
||||
- (optional) Turn JSON Output Enabled ON.
|
||||
- Save
|
||||
3. Channel Editor
|
||||
- Go to Channel Editor and enable Uplink and Downlink on the channels you wish to publish to MQTT.
|
||||
- Save
|
||||
|
||||
|
||||
### Using Node-RED with Meshtastic
|
||||
There are three common approaches:
|
||||
|
||||
1. Using JSON-encoded messages
|
||||
2. Using protobuf-encoded messages with the Meshtastic decode node
|
||||
3. Using protobuf-encoded messages with a protobuf decode node and the Meshtastic protobuf definitions
|
||||
|
||||
The JSON output only publishes the following subset of the messages on a Meshtastic network:
|
||||
- Text Message
|
||||
- Telemetry
|
||||
- Device Metrics
|
||||
- Environment Metrics
|
||||
- Power Metrics
|
||||
- Node Info
|
||||
- Position
|
||||
- Waypoint
|
||||
- Neighbor Info
|
||||
|
||||
> JSON is intended to be a convenience for consuming data in other applications like Home Assistant.
|
||||
|
||||
> Protobufs are mesh native.
|
||||
|
||||
#### 1. Using JSON-encoded messages
|
||||
Make sure that option *JSON Output Enabled* is set in MQTT module options.
|
||||
|
||||
Below is a valid JSON envelope for information sent by MQTT to a device for broadcast onto the mesh.
|
||||
|
||||
|
@ -16,21 +65,25 @@ Below is a valid JSON envelope for information sent by MQTT to a device for broa
|
|||
"payload": text or a json object go here
|
||||
}
|
||||
```
|
||||
#### 2. Using protobuf-encoded messages with the Meshtastic decode node
|
||||
Install Node-Red plug-in:
|
||||
https://flows.nodered.org/node/@meshtastic/node-red-contrib-meshtastic
|
||||
|
||||
Node-RED is a free cross-platform programming tool for wiring together hardware, APIs, and online services developed originally by IBM for IOT. It is widely used for home automation by many non-professional programmers and runs well on Pi's. Node-RED has many plug-in modules written by the community. I will use this platform as a practical example on how to interface with the MQTT features of Meshtastic. Everything can be done from GUI's without using command line.
|
||||
More info is in the plug-in source repository.
|
||||
|
||||
Step one: use http://client.meshtastic.org/ , the python CLI, or an Apple or Android app to connect to your device and adjust these settings.
|
||||
Enable and enter network SSID/PSK. Settings--> Radio Config--> Network; Save.
|
||||
Set MQTT server address. Settings--> Module Config--> MQTT config; Verify Encryption Enabled is OFF. Turn JSON Output Enabled ON. Save.
|
||||
Go to Channel Editor and set Uplink and Downlink enabled to True. Save.
|
||||
There is an example flow using this mechanism available
|
||||
https://github.com/scruplelesswizard/meshtastic-node-red
|
||||
|
||||
Step two: if you don't want to depend on JSON decoding on the device, you can decode the protobuf messages off-device. To do that you will need to get the .proto files from https://github.com/meshtastic/protobufs. They function as a schema and are required for decoding in Node-RED. Save the files where the node-RED application can access them and note the file path of the "mqtt.proto" file.
|
||||
|
||||
Step three: install Node-RED plug-ins to your node-RED application for an embedded MQTT server and a protobuf decoder.
|
||||
#### 3. Using protobuf-encoded messages with a protobuf decode node and the Meshtastic protobuf definitions
|
||||
|
||||
If you don't want to depend on JSON decoding on the device, you can decode the protobuf messages off-device. To do that you will need to get the .proto files from https://github.com/meshtastic/protobufs. They function as a schema and are required for decoding in Node-RED. Save the files where the node-RED application can access them and note the file path of the "mqtt.proto" file.
|
||||
|
||||
Install Node-RED plug-ins to your Node-RED application for an embedded MQTT server and a protobuf decoder.
|
||||
https://flows.nodered.org/node/node-red-contrib-aedes
|
||||
https://flows.nodered.org/node/node-red-contrib-protobuf
|
||||
|
||||
Drag, drop, and wire the nodes like this. For this example, I ran node-RED on a Windows machine. Note that file paths might be specified differently on different platforms. MQTT server wild cards are usually the same. A "+" is a single level wildcard for a specific topic level. A "#" is a multiple level wildcard that can be used at the end of a topic filter. The debug messages shown are what happens when the inject button sends a JSON message with a topic designed to be picked up by the specified Meshtastic device and then having it rebroadcast the message.
|
||||
Drag, drop, and wire the nodes like this. For this example, I ran Node-RED on a Windows machine. Note that file paths might be specified differently on different platforms. MQTT server wild cards are usually the same. A "+" is a single level wildcard for a specific topic level. A "#" is a multiple level wildcard that can be used at the end of a topic filter. The debug messages shown are what happens when the inject button sends a JSON message with a topic designed to be picked up by the specified Meshtastic device and then having it rebroadcast the message.
|
||||
|
||||
[<img src="/documents/mqtt/NodeRedTwo.jpg" style={{zoom:'50%'}} />](/documents/mqtt/NodeRedTwo.jpg)
|
||||
[<img src="/documents/mqtt/NodeRedThree.jpg" style={{zoom:'50%'}} />](/documents/mqtt/NodeRedThree.jpg)
|
||||
|
|
35
package.json
35
package.json
|
@ -12,34 +12,35 @@
|
|||
"clear": "docusaurus clear"
|
||||
},
|
||||
"dependencies": {
|
||||
"@algolia/client-search": "^4.20.0",
|
||||
"@docusaurus/core": "3.0.1",
|
||||
"@docusaurus/plugin-content-docs": "3.0.1",
|
||||
"@docusaurus/preset-classic": "3.0.1",
|
||||
"@docusaurus/theme-common": "3.0.1",
|
||||
"@docusaurus/theme-mermaid": "3.0.1",
|
||||
"@heroicons/react": "^2.0.18",
|
||||
"@algolia/client-search": "^4.22.0",
|
||||
"@docusaurus/core": "3.1.0",
|
||||
"@docusaurus/plugin-content-docs": "3.1.0",
|
||||
"@docusaurus/preset-classic": "3.1.0",
|
||||
"@docusaurus/theme-common": "3.1.0",
|
||||
"@docusaurus/theme-mermaid": "3.1.0",
|
||||
"@heroicons/react": "^2.1.1",
|
||||
"@mdx-js/react": "^3.0.0",
|
||||
"@meshtastic/meshtasticjs": "2.2.13-1",
|
||||
"@meshtastic/js": "2.2.18-0",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"base64-js": "^1.5.1",
|
||||
"clsx": "^2.0.0",
|
||||
"clsx": "^2.1.0",
|
||||
"dotenv": "^16.3.1",
|
||||
"postcss": "^8.4.31",
|
||||
"postcss": "^8.4.33",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-icons": "^4.12.0",
|
||||
"swr": "^2.2.4",
|
||||
"tailwindcss": "^3.3.5"
|
||||
"tailwindcss": "^3.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@docusaurus/module-type-aliases": "3.0.1",
|
||||
"@biomejs/biome": "^1.5.0",
|
||||
"@buf/meshtastic_protobufs.bufbuild_es": "1.6.0-20240106203407-94f78518ac45.1",
|
||||
"@docusaurus/module-type-aliases": "3.1.0",
|
||||
"@tailwindcss/typography": "^0.5.10",
|
||||
"@tsconfig/docusaurus": "^2.0.2",
|
||||
"@types/node": "^20.9.3",
|
||||
"@types/react": "^18.2.38",
|
||||
"@types/react-dom": "^18.2.16",
|
||||
"biome": "^0.3.3",
|
||||
"typescript": "^5.3.2"
|
||||
"@types/node": "^20.10.7",
|
||||
"@types/react": "^18.2.47",
|
||||
"@types/react-dom": "^18.2.18",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
}
|
||||
|
|
3179
pnpm-lock.yaml
3179
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -1,8 +1,7 @@
|
|||
// class .markdown needs to be called or it is removed from the build
|
||||
import React from "react";
|
||||
|
||||
const BaseCSS = () => {
|
||||
return <div className="markdown">Shid Fard</div>;
|
||||
return <div className="markdown">Shid Fard</div>;
|
||||
};
|
||||
|
||||
export default BaseCSS;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Protobuf, Types } from "@meshtastic/meshtasticjs";
|
||||
import { Protobuf, Types } from "@meshtastic/js";
|
||||
import React, { useEffect } from "react";
|
||||
|
||||
interface Region {
|
||||
|
@ -15,9 +15,12 @@ interface Modem {
|
|||
sf: number;
|
||||
}
|
||||
|
||||
const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
||||
const RegionData = new Map<
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode,
|
||||
Region
|
||||
>([
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.US,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.US,
|
||||
{
|
||||
freq_start: 902.0,
|
||||
freq_end: 928.0,
|
||||
|
@ -27,7 +30,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.EU_433,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.EU_433,
|
||||
{
|
||||
freq_start: 433.0,
|
||||
freq_end: 434.0,
|
||||
|
@ -37,7 +40,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.EU_868,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.EU_868,
|
||||
{
|
||||
freq_start: 869.4,
|
||||
freq_end: 869.65,
|
||||
|
@ -47,7 +50,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.CN,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.CN,
|
||||
{
|
||||
freq_start: 470.0,
|
||||
freq_end: 510.0,
|
||||
|
@ -57,7 +60,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.JP,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.JP,
|
||||
{
|
||||
freq_start: 920.8,
|
||||
freq_end: 927.8,
|
||||
|
@ -67,7 +70,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.ANZ,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.ANZ,
|
||||
{
|
||||
freq_start: 915.0,
|
||||
freq_end: 928.0,
|
||||
|
@ -77,7 +80,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.RU,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.RU,
|
||||
{
|
||||
freq_start: 868.7,
|
||||
freq_end: 869.2,
|
||||
|
@ -87,7 +90,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.KR,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.KR,
|
||||
{
|
||||
freq_start: 920.0,
|
||||
freq_end: 923.0,
|
||||
|
@ -97,7 +100,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.TW,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.TW,
|
||||
{
|
||||
freq_start: 920.0,
|
||||
freq_end: 925.0,
|
||||
|
@ -107,7 +110,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.IN,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.IN,
|
||||
{
|
||||
freq_start: 865.0,
|
||||
freq_end: 867.0,
|
||||
|
@ -117,7 +120,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.NZ_865,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.NZ_865,
|
||||
{
|
||||
freq_start: 864.0,
|
||||
freq_end: 868.0,
|
||||
|
@ -127,7 +130,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.TH,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.TH,
|
||||
{
|
||||
freq_start: 920.0,
|
||||
freq_end: 925.0,
|
||||
|
@ -137,7 +140,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.UA_433,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.UA_433,
|
||||
{
|
||||
freq_start: 433.0,
|
||||
freq_end: 434.7,
|
||||
|
@ -147,7 +150,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.UA_868,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.UA_868,
|
||||
{
|
||||
freq_start: 868.0,
|
||||
freq_end: 868.6,
|
||||
|
@ -157,7 +160,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.LORA_24,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.LORA_24,
|
||||
{
|
||||
freq_start: 2400.0,
|
||||
freq_end: 2483.5,
|
||||
|
@ -167,7 +170,7 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_RegionCode.UNSET,
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.UNSET,
|
||||
{
|
||||
freq_start: 902.0,
|
||||
freq_end: 928.0,
|
||||
|
@ -178,9 +181,12 @@ const RegionData = new Map<Protobuf.Config_LoRaConfig_RegionCode, Region>([
|
|||
],
|
||||
]);
|
||||
|
||||
const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
||||
const modemPresets = new Map<
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset,
|
||||
Modem
|
||||
>([
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.SHORT_FAST,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.SHORT_FAST,
|
||||
{
|
||||
bw: 250,
|
||||
cr: 8,
|
||||
|
@ -188,7 +194,7 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.SHORT_SLOW,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.SHORT_SLOW,
|
||||
{
|
||||
bw: 250,
|
||||
cr: 8,
|
||||
|
@ -196,7 +202,7 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.MEDIUM_FAST,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.MEDIUM_FAST,
|
||||
{
|
||||
bw: 250,
|
||||
cr: 8,
|
||||
|
@ -204,7 +210,7 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.MEDIUM_SLOW,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.MEDIUM_SLOW,
|
||||
{
|
||||
bw: 250,
|
||||
cr: 8,
|
||||
|
@ -212,7 +218,7 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.LONG_FAST,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.LONG_FAST,
|
||||
{
|
||||
bw: 250,
|
||||
cr: 8,
|
||||
|
@ -220,7 +226,7 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.LONG_MODERATE,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.LONG_MODERATE,
|
||||
{
|
||||
bw: 125,
|
||||
cr: 8,
|
||||
|
@ -228,7 +234,7 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.LONG_SLOW,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.LONG_SLOW,
|
||||
{
|
||||
bw: 125,
|
||||
cr: 8,
|
||||
|
@ -236,7 +242,7 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
},
|
||||
],
|
||||
[
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.VERY_LONG_SLOW,
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.VERY_LONG_SLOW,
|
||||
{
|
||||
bw: 62.5,
|
||||
cr: 8,
|
||||
|
@ -247,12 +253,12 @@ const modemPresets = new Map<Protobuf.Config_LoRaConfig_ModemPreset, Modem>([
|
|||
|
||||
export const FrequencyCalculator = (): JSX.Element => {
|
||||
const [modemPreset, setModemPreset] =
|
||||
React.useState<Protobuf.Config_LoRaConfig_ModemPreset>(
|
||||
Protobuf.Config_LoRaConfig_ModemPreset.LONG_FAST,
|
||||
React.useState<Protobuf.Config.Config_LoRaConfig_ModemPreset>(
|
||||
Protobuf.Config.Config_LoRaConfig_ModemPreset.LONG_FAST,
|
||||
);
|
||||
const [region, setRegion] =
|
||||
React.useState<Protobuf.Config_LoRaConfig_RegionCode>(
|
||||
Protobuf.Config_LoRaConfig_RegionCode.US,
|
||||
React.useState<Protobuf.Config.Config_LoRaConfig_RegionCode>(
|
||||
Protobuf.Config.Config_LoRaConfig_RegionCode.US,
|
||||
);
|
||||
const [channel, setChannel] = React.useState<Types.ChannelNumber>(
|
||||
Types.ChannelNumber.PRIMARY,
|
||||
|
@ -294,13 +300,13 @@ export const FrequencyCalculator = (): JSX.Element => {
|
|||
setModemPreset(
|
||||
parseInt(
|
||||
e.target.value,
|
||||
) as Protobuf.Config_LoRaConfig_ModemPreset,
|
||||
) as Protobuf.Config.Config_LoRaConfig_ModemPreset,
|
||||
)
|
||||
}
|
||||
>
|
||||
{Array.from(modemPresets.keys()).map((key) => (
|
||||
<option key={key} value={key}>
|
||||
{Protobuf.Config_LoRaConfig_ModemPreset[key]}
|
||||
{Protobuf.Config.Config_LoRaConfig_ModemPreset[key]}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
|
@ -313,7 +319,7 @@ export const FrequencyCalculator = (): JSX.Element => {
|
|||
>
|
||||
{Array.from(RegionData.keys()).map((key) => (
|
||||
<option key={key} value={key}>
|
||||
{Protobuf.Config_LoRaConfig_RegionCode[key]}
|
||||
{Protobuf.Config.Config_LoRaConfig_RegionCode[key]}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
|
@ -334,11 +340,11 @@ export const FrequencyCalculator = (): JSX.Element => {
|
|||
|
||||
<div className="flex gap-2">
|
||||
<label className="font-semibold">Number of channels:</label>
|
||||
<input type="number" disabled value={numChannels} />
|
||||
<input type="number" disabled={true} value={numChannels} />
|
||||
</div>
|
||||
<div className="flex gap-2">
|
||||
<label className="font-semibold">Channel Frequency:</label>
|
||||
<input type="number" disabled value={channelFrequency} />
|
||||
<input type="number" disabled={true} value={channelFrequency} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import Link from "@docusaurus/Link";
|
||||
import Layout from "@theme/Layout";
|
||||
import React from "react";
|
||||
|
||||
const Credits = (): JSX.Element => {
|
||||
return (
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import React from "react";
|
||||
|
||||
import { DeviceFirmwareResource } from "../../../utils/apiTypes";
|
||||
|
||||
export interface releaseCardProps {
|
||||
|
@ -49,7 +47,7 @@ export const FirmwareCard = ({
|
|||
) : (
|
||||
<button
|
||||
type="button"
|
||||
disabled
|
||||
disabled={true}
|
||||
className="button button--secondary button--block"
|
||||
>
|
||||
Loading...
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
import React from "react";
|
||||
|
||||
import { FaAndroid, FaApple } from "react-icons/fa";
|
||||
import useSWR from "swr";
|
||||
import useSwr from "swr";
|
||||
|
||||
import {
|
||||
ArrowTopRightOnSquareIcon,
|
||||
|
@ -20,7 +18,7 @@ import {
|
|||
} from "./_components/FirmwareCard";
|
||||
|
||||
const Firmware = (): JSX.Element => {
|
||||
const { data, error } = useSWR<FirmwareReleases>(
|
||||
const { data, error } = useSwr<FirmwareReleases>(
|
||||
"https://api.meshtastic.org/github/firmware/list",
|
||||
fetcher,
|
||||
);
|
||||
|
@ -64,7 +62,8 @@ const Firmware = (): JSX.Element => {
|
|||
</div>
|
||||
<div className="card__body">
|
||||
<p>
|
||||
Devices such as T-Echo, RAK4631, and RAK11300 are flashed via filesystem.
|
||||
Devices such as T-Echo, RAK4631, and RAK11300 are flashed via
|
||||
filesystem.
|
||||
</p>
|
||||
</div>
|
||||
<div className="card__footer mt-auto">
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import React from "react";
|
||||
|
||||
import Head from "@docusaurus/Head";
|
||||
import Link from "@docusaurus/Link";
|
||||
import useBaseUrl from "@docusaurus/useBaseUrl";
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
import React, { useEffect, useState } from "react";
|
||||
import { useEffect, useState } from "react";
|
||||
|
||||
import { fromByteArray, toByteArray } from "base64-js";
|
||||
|
||||
import { Protobuf } from "@meshtastic/meshtasticjs";
|
||||
import { Protobuf } from "@meshtastic/js";
|
||||
import Layout from "@theme/Layout";
|
||||
|
||||
const OEM = (): JSX.Element => {
|
||||
const [oemAesKey, setOemAesKey] = useState<Uint8Array>(new Uint8Array());
|
||||
const [oemFont, setOemFont] = useState<Protobuf.ScreenFonts>(
|
||||
Protobuf.ScreenFonts.FONT_MEDIUM,
|
||||
Protobuf.DeviceOnly.ScreenFonts.FONT_MEDIUM,
|
||||
);
|
||||
const [oemIconBits, setOemIconBits] = useState<Uint8Array>(new Uint8Array());
|
||||
const [oemIconHeight, setOemIconHeight] = useState<number>(0);
|
||||
|
@ -18,7 +18,7 @@ const OEM = (): JSX.Element => {
|
|||
|
||||
useEffect(() => {
|
||||
setOemBytes(
|
||||
new Protobuf.OEMStore({
|
||||
new Protobuf.DeviceOnly.OEMStore({
|
||||
oemAesKey,
|
||||
oemFont,
|
||||
oemIconBits,
|
||||
|
@ -29,8 +29,8 @@ const OEM = (): JSX.Element => {
|
|||
);
|
||||
}, [oemAesKey, oemFont, oemIconBits, oemIconHeight, oemIconWidth, oemText]);
|
||||
|
||||
const enumOptions = Protobuf.ScreenFonts
|
||||
? Object.entries(Protobuf.ScreenFonts).filter(
|
||||
const enumOptions = Protobuf.DeviceOnly.ScreenFonts
|
||||
? Object.entries(Protobuf.DeviceOnly.ScreenFonts).filter(
|
||||
(value) => typeof value[1] === "number",
|
||||
)
|
||||
: [];
|
||||
|
|
|
@ -1,35 +1,37 @@
|
|||
import React from 'react';
|
||||
import clsx from 'clsx';
|
||||
import Translate from '@docusaurus/Translate';
|
||||
import Heading from '@theme/Heading';
|
||||
export default function NotFoundContent({className}) {
|
||||
import Translate from "@docusaurus/Translate";
|
||||
import Heading from "@theme/Heading";
|
||||
import clsx from "clsx";
|
||||
export default function NotFoundContent({ className }) {
|
||||
return (
|
||||
<main className={clsx('container margin-vert--xl', className)}>
|
||||
<main className={clsx("container margin-vert--xl", className)}>
|
||||
<div className="row">
|
||||
<div className="col col--6 col--offset-3">
|
||||
<Heading as="h1" className="hero__title">
|
||||
<Translate
|
||||
id="theme.NotFound.title"
|
||||
description="The title of the 404 page">
|
||||
description="The title of the 404 page"
|
||||
>
|
||||
Page Not Found
|
||||
</Translate>
|
||||
</Heading>
|
||||
<p>
|
||||
<Translate
|
||||
id="theme.NotFound.p1"
|
||||
description="The first paragraph of the 404 page">
|
||||
description="The first paragraph of the 404 page"
|
||||
>
|
||||
We could not find what you were looking for.
|
||||
</Translate>
|
||||
</p>
|
||||
<p>
|
||||
<Translate
|
||||
id="theme.NotFound.p2"
|
||||
description="The 2nd paragraph of the 404 page">
|
||||
description="The 2nd paragraph of the 404 page"
|
||||
>
|
||||
Please contact the owner of the site that linked you to the
|
||||
original URL and let them know their link is broken.
|
||||
</Translate>
|
||||
</p>
|
||||
<img src="/design/chirpy.png" alt='Chirpy' />
|
||||
<img src="/design/chirpy.png" alt="Chirpy" />
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
import React from 'react';
|
||||
import {translate} from '@docusaurus/Translate';
|
||||
import {PageMetadata} from '@docusaurus/theme-common';
|
||||
import Layout from '@theme/Layout';
|
||||
import NotFoundContent from '@theme/NotFound/Content';
|
||||
import { translate } from "@docusaurus/Translate";
|
||||
import { PageMetadata } from "@docusaurus/theme-common";
|
||||
import Layout from "@theme/Layout";
|
||||
import NotFoundContent from "@theme/NotFound/Content";
|
||||
export default function Index() {
|
||||
const title = translate({
|
||||
id: 'theme.NotFound.title',
|
||||
message: 'Page Not Found',
|
||||
id: "theme.NotFound.title",
|
||||
message: "Page Not Found",
|
||||
});
|
||||
return (
|
||||
<>
|
||||
|
|
|
@ -1,65 +1,14 @@
|
|||
export interface Showcase {
|
||||
id: string;
|
||||
title: string;
|
||||
summary: string;
|
||||
body: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
|
||||
tags: ShowcaseTag[];
|
||||
nodes?: Node[];
|
||||
materials?: Material[];
|
||||
author?: Author;
|
||||
authorId?: string;
|
||||
}
|
||||
|
||||
export interface ShowcaseTag {
|
||||
id: string;
|
||||
label: string;
|
||||
description: string;
|
||||
color: string;
|
||||
|
||||
showcases?: Showcase[];
|
||||
}
|
||||
|
||||
export interface Node {
|
||||
id: string;
|
||||
latitude: string;
|
||||
longitude: string;
|
||||
|
||||
showcase?: Showcase;
|
||||
showcaseId?: string;
|
||||
}
|
||||
|
||||
export interface Material {
|
||||
id: string;
|
||||
name: string;
|
||||
details: string;
|
||||
image: string;
|
||||
url: string;
|
||||
|
||||
showcases?: Showcase[];
|
||||
}
|
||||
|
||||
export interface Author {
|
||||
id: string;
|
||||
githubUsername: string;
|
||||
bio: string;
|
||||
|
||||
showcase?: Showcase[];
|
||||
}
|
||||
|
||||
export interface DeviceFirmwareResource {
|
||||
id: string;
|
||||
title: string;
|
||||
page_url?: string;
|
||||
zip_url?: string;
|
||||
id: string;
|
||||
title: string;
|
||||
page_url?: string;
|
||||
zip_url?: string;
|
||||
}
|
||||
|
||||
export interface FirmwareReleases {
|
||||
releases: {
|
||||
stable: DeviceFirmwareResource[];
|
||||
alpha: DeviceFirmwareResource[];
|
||||
};
|
||||
pullRequests: DeviceFirmwareResource[];
|
||||
releases: {
|
||||
stable: DeviceFirmwareResource[];
|
||||
alpha: DeviceFirmwareResource[];
|
||||
};
|
||||
pullRequests: DeviceFirmwareResource[];
|
||||
}
|
||||
|
|
|
@ -1,23 +1,23 @@
|
|||
export default function calculateADC() {
|
||||
//const variables
|
||||
const BAT_MILLIVOLTS_FULL = 4.2;
|
||||
const BAT_MILLIVOLTS_EMPTY = 3.27;
|
||||
const BAT_FULL_PERCENT = 1;
|
||||
//variable
|
||||
const batteryChargePercent =
|
||||
parseFloat(
|
||||
(<HTMLInputElement>document.getElementById("batteryChargePercent")).value,
|
||||
) / 100;
|
||||
const operativeAdcMultiplier = parseFloat(
|
||||
(<HTMLInputElement>document.getElementById("operativeAdcMultiplier")).value,
|
||||
);
|
||||
const result =
|
||||
(operativeAdcMultiplier *
|
||||
((BAT_FULL_PERCENT - 1) * BAT_MILLIVOLTS_EMPTY -
|
||||
BAT_FULL_PERCENT * BAT_MILLIVOLTS_FULL)) /
|
||||
((batteryChargePercent - 1) * BAT_MILLIVOLTS_EMPTY -
|
||||
batteryChargePercent * BAT_MILLIVOLTS_FULL);
|
||||
(<HTMLInputElement>(
|
||||
document.getElementById("newOperativeAdcMultiplier")
|
||||
)).value = result.toFixed(4);
|
||||
//const variables
|
||||
const batMillivoltsFull = 4.2;
|
||||
const batMillivoltsEmpty = 3.27;
|
||||
const batFullPercent = 1;
|
||||
//variable
|
||||
const batteryChargePercent =
|
||||
parseFloat(
|
||||
(<HTMLInputElement>document.getElementById("batteryChargePercent")).value,
|
||||
) / 100;
|
||||
const operativeAdcMultiplier = parseFloat(
|
||||
(<HTMLInputElement>document.getElementById("operativeAdcMultiplier")).value,
|
||||
);
|
||||
const result =
|
||||
(operativeAdcMultiplier *
|
||||
((batFullPercent - 1) * batMillivoltsEmpty -
|
||||
batFullPercent * batMillivoltsFull)) /
|
||||
((batteryChargePercent - 1) * batMillivoltsEmpty -
|
||||
batteryChargePercent * batMillivoltsFull);
|
||||
(<HTMLInputElement>(
|
||||
document.getElementById("newOperativeAdcMultiplier")
|
||||
)).value = result.toFixed(4);
|
||||
}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.9 MiB |
993
static/img/hardware/heltek-wsl-v3.ai
Normal file
993
static/img/hardware/heltek-wsl-v3.ai
Normal file
|
@ -0,0 +1,993 @@
|
|||
%PDF-1.5
|
||||
4 0 obj
|
||||
<<
|
||||
/Type /Page
|
||||
/Parent 2 0 R
|
||||
/Contents 5 0 R
|
||||
/PieceInfo <<
|
||||
/Illustrator 6 0 R>>
|
||||
/MediaBox [-0.0000 -0.0000 841.8898 595.2756]
|
||||
/TrimBox [0.0000 0.0000 841.8898 595.2756]
|
||||
/CropBox [-0.0000 -0.0000 841.8898 595.2756]
|
||||
/Resources <<
|
||||
/ProcSet [/PDF]
|
||||
/ExtGState << /GS10 10 0 R >>
|
||||
>>
|
||||
>>
|
||||
endobj
|
||||
6 0 obj
|
||||
<<
|
||||
/Private 7 0 R>>
|
||||
endobj
|
||||
7 0 obj
|
||||
<<
|
||||
/AIMetaData 9 0 R /AIPrivateData1 8 0 R /CreatorVersion 16
|
||||
/ContainerVersion 9
|
||||
/RoundtripVersion 16
|
||||
/NumBlock 1 >>
|
||||
endobj
|
||||
9 0 obj
|
||||
<<
|
||||
/Length 481
|
||||
>>
|
||||
stream
|
||||
%!PS-Adobe-3.0
|
||||
%%Creator:Adobe Illustrator (TM) 16.000000 Exported from CorelDRAW 2021 (64-Bit)
|
||||
%%Title:31.ai
|
||||
%%CreationDate:
|
||||
%%Canvassize:16383
|
||||
%%BoundingBox:0 0 842 595
|
||||
%%DocumentProcessColors: Cyan Magenta Yellow Black
|
||||
%AI3_ColorUsage: Color
|
||||
%AI3_Cropmarks:0 0 842 -595
|
||||
%AI3_TileBox:0 0 842 -595
|
||||
%AI3_TemplateBox:421 -297 421 -297
|
||||
%AI3_DocumentPreview: None
|
||||
%AI5_ArtSize: 842 595
|
||||
%AI5_NumLayers: 1
|
||||
%AI5_FileFormat 2.0
|
||||
%AI9_ColorModel: 1
|
||||
%AI12_CMSettings: 00.MS
|
||||
|
||||
endstream
|
||||
endobj
|
||||
8 0 obj
|
||||
<<
|
||||
/Filter [/ASCIIHexDecode /FlateDecode ]
|
||||
/Length 71245
|
||||
>>
|
||||
stream
|
||||
78daecbd69535c3b923ffcbe23fa3b50606330a6d0be7867b38d8d8df77d83a230d8c562969ee9fb
|
||||
e2f9ec8f32b5a5aaca33f674df8bff11dd33710d3f7452a93c99522aa5cc73b1f3f8d9fce2f6e156
|
||||
7f5e76d9dfff76f1e2f2717ff3f4f0f82a82136b83c1d9c9e931201333cf1fce4e70d365f8bf89d5
|
||||
ff3e3a3c3eed6f4fec1c1fee4f2c1f1ef7072b4f175f4d0826f8c48c51f34b7ba7b381e0f3bdd341
|
||||
ffaae4ddcdbd427feff06065f3b47f1581cd837f6c9e9cecfdd1bfca8d7412b0a5c3b383edbd832f
|
||||
4b87ff7d954db009a7c484f61afeb472d83bdbef1f9c3e3e3eecf54f4e960f0787c727572796ffb9
|
||||
7930f170f34bf8cbe6c49bfe6070f85f134b83cddeb7f0cce29afc84ed5e9c8406a12dfc9cf1e3c3
|
||||
a3fdcde36f27a59ff9d811fcf1f9dea04f59a07feaef1f0dc210e0cf2a0c785e783b917f486d2aab
|
||||
fd7fecf5ffebeac4a3c3833efe4d7f5a3c3e7d0643ce439b48f8a3b3fdf5cd7ff661483c41770217
|
||||
770e8ff7374f2704bea3c5351fc7f3f070bb3fc80db9f8b4fcf059fff434c82d3ccd58f7e1339465
|
||||
ffcbde4190d6e0f00bfcba7ab05d7fc1bf8567ce8efefeb7777fff9bf40bdfcf0e4ffb2781c4a03f
|
||||
e1cdc297e3cd7ff427b8700b8bdb7bfde3f0979385c5e3f0e785e55e7f7b6f30d85c58ddec9d9df6
|
||||
171e9dee0db6fb0b1bb9d9dfffb6f0a23cb219db6c22b985cddede7190cccea0ffdf0b9bb54d24b0
|
||||
89d47b997a1f9f0cc4faf1d93e79b65f9edd8bf4f7629b3dd266afb43940fa81d2616c7c181b1f92
|
||||
c687a5f16164e62c363d8b4dcf6ad340e6ac34dedefcf2a57fbcb01d58ecf7177ae18d2f9c9cf68f
|
||||
073090937e0fb47d61eb6c30e89f2e1c6d1e83108e7617c213fb9b07db5b0390d471780ff0487f7b
|
||||
a17778f4cfe3bd2fbba70bc1ecb6fba09b0b918bd25ff7e0f074bbbfb3b0b8bab07132d83cd90d14
|
||||
327614ec757fefe0acb6cafffeb37fb0b07f360c934787ff3d3cdedee9075a7b077df8797ff3a477
|
||||
36805f7283cd80e7febf9ff54f60a0db87ff75b0d0ffefde60731f7f0c8ab6d7db1c8427ca633b41
|
||||
73f70ec630f2e52cbcf2fefe61982f764eeb6f511ac1a4f78e9ad1c797b298f42efdb3ba7088da72
|
||||
b01df85ae8efe33fa8d441d44837ff12c9e26f158fe0f6de3ff650558aec8aecdf949f768e37e3ab
|
||||
ed9d1d1ff70f7aff448ed1740afff81bd20cc476f6c2d093b284fe178e426f87dba02ef8e2abe56d
|
||||
6d9ef40b9bf84b687aba7b7876121426105a242abb4a7e5e8c7ab25a585c8d225a8bf85aa3be6ba5
|
||||
d55a6cb5115b6d108279f81bb1c58bd8e24543e745fcdb36bcb5308b2f90c7e32bd9dfec1d830184
|
||||
49109b6df6d042a299472b0f6476cf0ebe6c1e9fed0f36cf4e83698689f2db426f333cf8f7bf3d5f
|
||||
fdfbdfd28c8af3d5ea41ef101687ab136116dddb1ccc2f1d0eb6d74e37077bbd87cf2746a130b52d
|
||||
8c69b930e66198e8f9c4f3b7a9bb3057e6ce269e1f9ff59ffff3a8ffbf72d2f030d27bd3ef2ff4e8
|
||||
638f794909ab6790dac54f0b1998b81a7fdd439ddc3cfe67025e3f5c7f1456891ffcf9dac4cc7fef
|
||||
07e3dceecf6f9e0643db0aeff76476e20a365e3c3edefc4bc9fc9b7a21ed7abb41058371a656e92f
|
||||
27edafbf3ddb7f02c9997f6c1e8775ffd1e67e7f7662e1d92958636d0cff39c03f6539d1e657ce41
|
||||
737e41387f7a8f5187aefee3a70457da5ef90b79fb79ce7ef16dfe4f0a75f56433b8c47d989982aa
|
||||
fc140f57fe7725dddbdc1af403bd7f33b99f67efbc8dff4f7ea37f3eff276169edffbf24ef9f93f5
|
||||
5f66d1ffb5b77dbafb533ca5967f115fbb7df06b7f8ab1dcf4caffabcb65f8cbd6e1e9e9e1fe7af0
|
||||
ec378243bf77f06f9b39fff779eb64e7bffe1dd3df7eff74733bccceff0e5a53dbc9effca9f74f5a
|
||||
5f415ffe139f58580b4eebccb7c5b5c7614b1c58eb1f9facee6ff52138b1b337e83fe8ff333d2fc6
|
||||
357db5bbd7db1d692aadc8ad211e32519ce3d47202422ef9e52ced450d9958587cb6bcb6e6f44abf
|
||||
076a097fed743aab67fef1fda54f9d37376fca95858d7bfeda9dcd8bc737969eed3c9c5a97d71e75
|
||||
3ac7af58675add7b7afbeac6ed53bf77e7e1fb3fdcc69bb3dd3bd377d78ffef8e38f4e67f6f34aa7
|
||||
73f9d264a733737fd2e9f5d58d3feaff62371d71fbf8c91a0f3f5c38865f9f2fda0f5f06e1878b4f
|
||||
c27f26dddda5dbfdbbe1a7e95df8abbefdf2c3f7d9f0c3a54bf8ebeae7deda7df8f51afeba24ddb5
|
||||
5bf0eb466cfcfc6def6aece6520f9145f7441e851f662681f8f545f7f8eb4ef869f606fcfafceea5
|
||||
eee295f0d3656832f9f4eec56f8f64f8e9ca2378767579efe4f902fc8a7cea95eed3f993f0c33cc7
|
||||
bf866eee2cf78fbf03f20290f9d5cf37bfcfc00f9be13f5e2f89ddade3faebede746efd75fef2cef
|
||||
7cb8f187796b8e7657b79eb3c93bd757ce16bb72fdd665b9b430ff78f1f9f7938b7756972e8bd04f
|
||||
90f7cc87d5ad0b57dfadec5cba7771e5c199fc8852fb03fa9528feb9c5a9ceae5859930fc5ca8577
|
||||
57d9e797fce91f7f4c1f5d38be6dccfdbd2fe6f9fc9bb762b533bfb4b0bb7f738ebc963ff015876e
|
||||
e0fdbdd849efeff2b7b78897067fc00b0bd2999a0459cf7d2ae0fd30c84b0f3e06f0db5e0627afc2
|
||||
fbd9f814feb2f6b4b26a515d42574b4f9edd72f2fda32ebfbbf4e6edd3c5a7dbb7a6975617a6d41f
|
||||
7fcc74bf7cff38b772f3db8dd5e9c3d797ef2ebd379f97be5dddbe72fbfb9bbd25c27625bb8164c9
|
||||
e0b7a7bf7d5fdc3ffc72062fe9fa9db50d631ef45e2eefddb877756ef5e13abffdfd56cfceadaedf
|
||||
7964e485b3de1f7f2c7cbbffa03377f3f4d826111ddcbfbaf8eccaed83e5bd2fdba776fffdcdee4a
|
||||
ffe4965d7dbb7367e9f6d5475fbf2d3cd8995376ff1d7f11359bf2f3f0dadac9bd8dd52d76e56cf1
|
||||
c19ba99df032bfce2dcdfb27ef56d6b6d72e2d0d6e0fe4d2405fdcb276e164472e1ef7d6f8dc37ff
|
||||
012c68f2c9fdd0f1fae1e2b3b3ceeedcd2aad8b9bbc88fe7e76e2f5fda827db19bef4eaeecccbf97
|
||||
2b4b0f1fde1cfb56518dffe84ccdf2f9ced4426fbf33b97def6ba7b3f24a05b53d5eee746edd3f05
|
||||
3627d3db9abdfc61b233fbe8f5f7cee5abfe32aa79d486d0e40f34ebcecc07f86deacecca1637f98
|
||||
57f383b9db27b35f1cfc691e8d7aba3339fde16a67eacacaa3ce0531b7d5b96883fd4edfd8d09d4b
|
||||
57d9ddceccadc1bbceeceab3c3cee507d7ba9db927934b9d2b2f3fbe04639d7fbffab5d3dd9a9fed
|
||||
2c7cd9bbd161fb8f9f74f889ed77e4d4e9858e3c7b613a7afafafd8eb932f5b163f9a7e38ebbfd50
|
||||
76fc1d75af73f545e763e75aaf77dab931fdca766edebcbfd1b9f5f2c697ceed033ed759ba7a79a5
|
||||
b3fc6eea1374b33a7d7ca173e7f1f7db9d7b178fde77d6368ea63a0fe6cf163beb9b173f751edd9a
|
||||
9bed3c9e366b9d275b8b7b9d676b0f55e7057bfda2f3f2eceb64e7f5e195d5cedb4f37763bef5fbf
|
||||
b09d8f4f06ef3b9f9feb2b9dad974f9f75b65f1f5de8ec6cdf5c876e760f374f3bdfa6d9bdcefed5
|
||||
37df3b871bddbb9defbd57df3ba757c4bdc9cedae6d9e4d4d1d2c3c9e9a5a9e9c999ddd72f26e796
|
||||
6fb1c9f9938b9f27d9c3cd6b93923fdc9fd45faf8609f4d1a599c96b570fde4fdebcb4797df2f6f1
|
||||
9bef93cbbb4f21c83d79e7e30335b9f6616d30b9fefedec6e4c6f64335f974f0e460f2c5e9cbe793
|
||||
6f5820f47e713039f9e959e7d3e4d67ee87ae7da9a98dc7b1168ec4f1d7d983c7aecd6264f2fbd30
|
||||
5393cf8e2f4c4dab5bbb53b37b5bafa6e69f997b535cbe71a19b293d2de7a6dcfee6c9d4f5cfd776
|
||||
a66e3ffdfa766ae5d1fd8da97bcfd89da9f557df6e4c3d7eff444d3dff7a637eeacdd4eca5a90ffe
|
||||
68726a332c5c53fd2fcff6a7be8a075fa70e9e2eef4e9d4c2f7eb930b9716be7c2a52bcb5f2ecc7d
|
||||
bcbb7b815d7bf035747341775eec5ff0ef3f7dbf70f3c151e7c2f20abf74e19e5c9cbff070ee95be
|
||||
f0f4cac98d0bafba57ef5e78bff0f2f185cdab53ef2eec3c7cb07be1dbe793b30b47a777bb173bd7
|
||||
ce6e5c9c7efd68fde2dcd9a5f717f9a3cd838be67471eee2f547d3372f2eb11d3c19b8bbfb64f7e2
|
||||
c30737662f3eb3dddb17df4c9ebebef871f0edfbc5edaf7be6e2d74f9f1f5f3cdae9ed4f77b637d5
|
||||
f4a56fdb4fa6bbd3fb47d3ca4e5e9bbefa98bf9bbebdb738337dd7bc7c30fdf0f5b783e9e7d3576e
|
||||
4cbf7d72776b7a93eda9e92f7dfd2e74337db0f2aa3b7d363ffbead2f4c9abf94bf3fd85d797d4cb
|
||||
0fdd4bd79e5c7b7f69e9c1a1bab4b6f16cfbd2e3f7376f5d7ab5377374e9e3d9eec34b3be6cddca5
|
||||
fdf5b54f974ebfddbe3573e9e68dce4c77c7bf9e31de5c9db9f1d59dceacdeb9f67ae661981d4337
|
||||
33cf0f9e4dcfbc7fbfd99bd9be7fb43e33586266e674e9c1e4eca5a57e6f766179eef1ac5d5fbf39
|
||||
7bebe34977f6eef79593d9c7dd6fdbb3afef2fbf9afd7cd87930bb77f3f9add9ef03a72f5f5cf93e
|
||||
77b93bfd6eeab2f9b0f2fdf2ad7beadbe57bf20244e22e3f993edcbcfce6b0fff1f2d660f3fde56f
|
||||
7b1fde5d3e3dfcf46e6e76f6cb8739e10e3fcd5dbb37b935b7f299edcc3dbab232987bf5f0f5f1dc
|
||||
e6e4c9c5b9af0f5d77ee74f2a9bd32f3696ae98ab8b3f6e8caf5f9c37757564feeec5dd9e89d4c5d
|
||||
79f3e1319c805de97d96ab57f6b7bebd9a9f3c78fe6d7efee2cdb9797b757e717ef1d1f757f30f06
|
||||
3b87f32ff57b39fff9fdab87f3dfba4f77e7cfbebc65ddb9a5770fbb667a6bd0bdbd7b64bb0f5ece
|
||||
bceabe5cbf7ea1bbf9e0c5bdeee0fec16061f2bebcbe30fff429cc9f0b6e7b4a2f2c9fddfbb8b071
|
||||
f5542ebc7d71ffe342d048bdf0fdf1c72d3633b3789dc91753dfd82dbd7987dd3f7d3cc55e7e5979
|
||||
c5b69e48cd0e42c7fce2dacc3ae78f6617f88d67b3bb7c6d933de42f0eade05b7cf9901fdc7b0c73
|
||||
9ab8f87d6f51881b97e6c4cdc3d58178b0fcf18d787db97b576cf79f59f17d7dea929c5d7976208d
|
||||
9afd2c97f5e717f2b15dba2f3ff80bb7e5d7f52f4e4dbeda606ae174794eddb86ea7d5fd377393ea
|
||||
f5e50ba7aaffe6c2893a9117608ed673df2e9f6affca4eeabbcbcb17f58b858d59dd9bffc2f4f72b
|
||||
97adb97c79e99671fcf33d736769e19979fef4d927b335981998effecdb4bdfc5e19eb67b7efd8bb
|
||||
1f1fbcb62f6f8a6f76fbf8f0b23dd9de0acbccc38d57eefabd7b47a11bf7607949b9b737af3d727b
|
||||
0f6e7ff5531bb78517fd078ffdd2f4cb23ff6475f7baffdcbf102cdf5dbf72f5f2de9b2757afde99
|
||||
ec8419ecd6ddab6ffabb4757f79edf58b976e1c1e0f09a5abe7be7dacacaa5936bcf573eac5fdb7e
|
||||
75ffd2b5d34df62a74739dcd4ce9ebb797bfee5d7fbcdb5bbbbee9decf5effbef3f6f38df95b6f96
|
||||
6fdcbcbc3d7be3d1e66eefc6a797171edc38baafe5cd2b771f1cdfbcb1b2f5e1e6a30797d76e7e7a
|
||||
fbd0de3cda3b9abe353fbffcedd6cd47c71f6e6d1cad3fbeb579e7cacaade3a34d0fded4c2c6dd85
|
||||
db8b565ebafd6ce662e7f6f6feb7a3c5cec70fdf16e5e6bbbdc5d5ed375f165f7d79b5b3f8f5d2e6
|
||||
eed2a5ebdfbe2ef92767fb4b0f8ed8f1d2c7a5bb534b47c7bdb9e5eea3cb727951acdf5c7e767a7a
|
||||
7f7967ebeecb950bafcfb657ecc62378372bf737badd950faf7617578e3e3f7cb6ba307d736f75c9
|
||||
5d9e5d7df1beb3b8ba7779ffcd9d4bafbe9edcb9b6b0ebef3cea7f7b71676be3f4e46ee7eaec8dbb
|
||||
7ade7dbcbb36fb68eeee878bbd8777bfcfcd1edf63fec1f2bd95c7c7dfeebdde5dbd796ffff2004e
|
||||
34d7ae3c7f70736d7176f6ebda8b77bde5b5affeeef1fdd933f1e8fecdfed4dcfd67cf773fdcdf7d
|
||||
d9bff96066e3ddc9831b6f3fbe7cf0b4bfe9c3e4b977ba3ee38edfacdff82496d69f5d5abcbcbefb
|
||||
f2ddd787b3bcf3f2e1cdbda5e587cf5fec89875f97ae7542378fe6ec97dd478b66f5dda3577aead1
|
||||
a3fdebef5736ba0fef5cdb58f9c8c4c6bbc9b32b1bdf57bf5d7a2c7637a71eafdd7a7ff6f8d3e9c7
|
||||
d3279d0f3b674fdc9dc3c9271b7ee6e2939d3933fb7466e1317b7a4b7eb54f5fba855b4ff71fbdb8
|
||||
ff6ca13ffd2274f3eceec2d3ad671f37668f9e7726dfcf3d77cf6f5d7ffef8eaccc6f32fa73b5b2f
|
||||
2ef75e4ebd587af7e0ea8bb7cf6e3f7971fcfcdab797fae30dfef2e1eecd872f77a657bfbe9a5d7a
|
||||
a65e2d7ed979f1eaadbb38f9ea78e7e6ea6b73efc3d7d71b7333d75e7ff9f6b017ba7933f7f9827d
|
||||
b3f2e1c5d69b0fef847bdbd9dcdb797b7577fdd6dbe757ae1ebedd5f9d5d7fc7774e2ebf7b20bf7c
|
||||
7cb7fd71ebe6fbd91bbdcefbe58b7b6fdfbfdf3abaf9a1f3a13bfde1daa3ab5b1f5e3c79b6fee1f0
|
||||
f9c07e549b66eae346e7edcec73d7b1946f3a9fbe2c5eaa7b5196e3ff55eefce7d9e556b679f970f
|
||||
f8b7cf1fdf9df6362fac6dbddfbc75fbe5abcdb7b71f3fdb3c5b7bfc64ebdad3c78fb75e6ebf7cbc
|
||||
757c79eb69cf3d3a7dd97b76c2dff50e1fac6d6e9b2b5fbe6e3fe9b1e3edfd97ef66fbea3e83d3f9
|
||||
fee31b6f97fa83e56b4f77e4bdefbd9d8d57afcf76beeddc965fa4906b5f369e4d7ffaf2ede4b0b3
|
||||
2b9f1c5cdb7dbcb0ff7277f0edf8784fbd9fbdb6f7e4c5d5777b078fd62f7d358f7b6b5f9fbd9fdb
|
||||
ff7af465edc6373f3dd8fef67265d17e3bf97a04472f83ebab4fdce0cd19efef4fbedebfb97ffbfa
|
||||
b3fdfd8fe2cefd834b33fed2c1ea25fefea0b7c06e1c5eb1ddd3c3fbf7e4abc3ddad9bd78f04db98
|
||||
3a7afcecd3e7a3c3b9cefdefeef34dfdfdd5dae6e4714776fbc7b7bb1f5e1e7fba6cef9ecc5edc01
|
||||
f3fcff6ea63df4f80ded0aeee7d33e7be1d1e1e9d3b0893ddeee6f272ceeb6ff734af49f53a2ff9c
|
||||
12fde794e83fa744ff3925facf29d17f4e89fe734af49f53a2ff174e89583acc814bba8bc7fdcdc5
|
||||
f0c6fed11f373f0dbfcc99c5e3d3adc3cde3ed091efa7e71b007473b9905e2a0f08985b0ff1b4ccc
|
||||
3c5e7c5aa1a5c3c300ad9d64222bfd9dcdb301756c9ce1a2eb9cb766c23aafba1aaf4423adc7877b
|
||||
07a7d06662e6e9d9a07fdc28421ed1cadec9d160f39f0f378fbfe5bfc47bd513f3f9874aec697ff0
|
||||
fcf069a413093f3e3cd983f1e29f79e649f1c412dc53ee0aabb5ff792a62e4ade6d1a39c7fe847b5
|
||||
dafbac3fb8b7791ab61b6b70ab716de5843e4cfffe1c96582056772fedd6a5e969ccd6e67ffb7be8
|
||||
ecf1ca9dc7c7fd93fee9f2e16010efe1fe6f7ba574d76ef5607be8a61ddc9b4e17a5f15236dec6c3
|
||||
9bda7fffdb044fff0797f9e6f984d6135a4c6839b1bef5f7bfcd602350c3f520f6b3fcff7ce2f5d3
|
||||
bfff8d4d6c84ff74b90a7bbbf69fd79bf0576882ea30d1fef37a11fe1a3b0cbffd13e8dd87ff7cfd
|
||||
fbdf44d770c9271e865fa1319ff8afbfffeddd0736b11d00c6ba9e7b1f98b4b2eb341313fb7fff9b
|
||||
15baabbd94041d0454aaae0cff21a80d0aa6b515017281b694ae817cd7f100f5c2b305554c779d31
|
||||
0c295694abae5126d84ee94489a0bc22b056b929508f725ed0f5b1e309e8d6a8805d941dfde74f11
|
||||
b0b126c8c5052d104274c308390a580654584ed0758a4a782ac80fd04ae1072897413c41744081b9
|
||||
2ed7ca0ca1dc768d113f4699ea32e78650a104a07e2cca875069bb522a1b51d1f52c3cd7a285338a
|
||||
1ae7ba5e881fa3ca749d1243631b8fd25110e98c45a9d4b7863423e80cbc74fa0f6846d55511ba94
|
||||
dc6a7c9115e52c90f40c3b32bc6ba1d351d4688a22a4844f90f53a42c2b804f96029cbe959ce6444
|
||||
35171c1b1aef53432d951b86b475f9d9884aa7bb5c88c20d41954edc602708196b09370839592846
|
||||
b601152c3c5207871067919b2885022d53891574bd45832218215b390ea33c681941c37c124c90b9
|
||||
0871ce0c4282690590e95a16e65fe05c7b30761e5101e307482b97466da55743104a2c3d1bd122dd
|
||||
f50665beeb158b8fc74e000a0ac70837a03dde0685453966b601d5c64739c6c1153523da94a1e5b1
|
||||
fa18b8d939a7694ee82011cf759098f15d66184e73616c61c292145d6f5009fe49d2c760d44a1bf6
|
||||
2334bc8420ca68f422ac2cca0bfb43d488a0be1a2954cec6a394b3ad1f2dc77f95182de84b98a0c3
|
||||
f2155c48c7b8c54926ccdac6e2a29651987a0593d89007c7ce7a0a05d5f63a787dbd38476734742c
|
||||
ad9a20e4ac0fc612fe48facd103c1b966a26bd6c1a06ade3ba214720d26f450b83955c19c6e8787b
|
||||
3f3d23ff59d24706c3d4cbc2e050fa817fed15416189730ca1b054396d6d0351e957340c1e5042ce
|
||||
85c598a1604abf194209daa0fa5e340d75585ac32241c811884abfa299c14aae0c6374bc51fa2fce
|
||||
d15f0a7ea482513416606066061daaa809d62e19a70a4620220b8a269525e4b262937e89058425b0
|
||||
cb833b4a1b06bfd2f0c6a02844faad6861b092abc31819ef395a00e5a65a8009fa2741872a6a9c0a
|
||||
0a66a90550884abfa2496509b9acd8a45f6201619282254ed386d6059ec3ca4bc811884abfa299c1
|
||||
4aae0e6364bce76f013a8c55eb610bd0b6ebac6e2c20f805d27b4b15ac42541604cd2a5bc915c5ae
|
||||
fd520b50be2ba46e2c4005ebe1dc53720422fd56b43058c995618c8ef73c2d8070432c40eba027ba
|
||||
b1802041c6102a0a46202205826695ade48a62d77ea905e8e0a4b7687060ba9ce19babe42a44fbad
|
||||
6861b090abc31819eff95b40d8f007befc9005080f8eb3a0aa2365f0f860435715ac42541604cd2a
|
||||
5bc915c5aefd520b10c17aa4a4766182531596f5c6020844faad6861b0922bc3181def795a00e186
|
||||
5880b0414f14a3aa132418768b8d0510884881a059652bb9a2d8b55f6a0142766d8b9ab079170cdf
|
||||
5c255721da6f450b83855c1dc6c878cfdd02b4b7814d3e6c014c7419243410d561101b338d055488
|
||||
ca82a059652bb9acd8a45f6201c145ecaab0c3a40d8353e599a51640a1da2f413383845c1ec698f1
|
||||
9ea305506eaa0568ef839e88c602c2264730848a8211884abfa2496509b9acd8a45f620110b9772d
|
||||
1ab60fc1a515a2215721227d82260609b93c8c31e33d7f0b08db720cdf3616a0adeaf2b0b9a1aa13
|
||||
7c6ae395a40a56212a0b826695ade48a62d77ea90598603d12ce6248c3603dcc084a8e40a4df8a16
|
||||
062bb9328cd1f19ea705446ed89005581ef4a44175d8e4483ca4aa0a46202afd8a6695ade48a62d7
|
||||
7ea90518dbf5ca3716604c6080351640202afd8a66062bb9328cd1f19ebf05281ed87472c80294e9
|
||||
8ab07fa5aa137c6aeb45630115a2b2206856d94aae2876ed975a800cd6235c630132584f5a5e3339
|
||||
02917e2b5a18ace4ea3046c67b9e1640b82116a064d7b5a80e9b1c995ccbac6004a2d2af6856d94a
|
||||
ae2876ed975a800aa3518ec682b474e0d2d2581085a8f42b5a182ce4ea3046c67bfe16c05560d30c
|
||||
5b00775d690c75a0359c007ad6584085a82c089a55b6922b8a5dfba516c03c1c853416c00c2ceb9a
|
||||
922310e9b7a285c14aae0c6374bce76901841b62015c073d69501d3639ca2354148c40440a04cd2a
|
||||
5bc915c5aefd520be0a2cb95692c004e61bc692c8040b4df8a16060bb93a8c91f19ebb05a8300aae
|
||||
d4502c48017f46516f59059fdae3195151300211595034a92c2197159bf44b2c4039386857d42e94
|
||||
75b0ac530ba010e9b7a285c14aae0c6374bce76801949b6a012ae8106b511536393ab99649c12844
|
||||
a440d0a4b2845c566cd22fb100e5545728a59b86025c5ad790ab10edb7a285c142ae0e6364bce76f
|
||||
01da0536c5b005049f3af8d58d0504478f39d3584085a82c089a55b6922b8a5dfba516a025dc4c68
|
||||
2c403358d61b720422fd56b43058c995618c8ef73c2d8070432cc0c095a40655789b00a1a26004a2
|
||||
d2af6856d94aae2876ed975a80365da94463015a814bdb580081a8f42b9a19ace4ca3046c77bfe16
|
||||
2083de2836140b52c1a73686d3fda20a8e1e778a865a08446541d0acb2955c51ecda2fb500017794
|
||||
18b50b059769bc69c81188f45bd1c2602557873132def3b480c8cdb0054811f484d1f30025655030
|
||||
d6580081a8f42b9a55b6922b8a5dfba51620822faf5863014182c1a56d2c804054fa15cd0c567275
|
||||
1823e33d7f0b60416fa41f8a050526bb567bba1356c1d1134ed28d2681a82c089a55b6922b8a5dfb
|
||||
251610e6f0f0b3a37621e1beafd79c90a350ed97a0994142ae0c6374bce76901841b62014c75658b
|
||||
e2cd4ee7e881138588f4099a55b6922b8a5dfba516c0e0ae9be70405097ad75cb2a010957e450b83
|
||||
855c1dc6c878cfdd0282460536ed9005488ba3a0162083fe49c7e8144b202a0b826695ade48a62d7
|
||||
7ea905d8603ddc3416109c2ae31b83a210e9b7a285c14aae0c6374bce76801949b6a01701b57a5cb
|
||||
1c0995d60605b3341644212205826695ade48a62d77e8905040004dc58800d3cbb08157215a2fd56
|
||||
b43058c8d5618c8cf7fc2d4005bd915a0f5940f0a9bdd68eaa4e70f4f0222d51b00a51591034ab6c
|
||||
255714bbf64b2d4005ebe19ada850c4e95c51b85951c8148bf152d0c56726518a3e33d4f0b20dc10
|
||||
0b502ee84973770024c89ca63b610a51e95734ab6c255714bbf64b2d40055f5e6ad53494c1a56d2e
|
||||
595088f44bd0cc60255786313adef3b7001ef446ca610b10320c573616101cbd30ae46c12a446541
|
||||
d0acb2955c51ecda2fb5001eac87cbc60282531556f5861c8148bf152d0c56726518a3e33d4f0b20
|
||||
dc100b102c0c543616103639412d1b0b2010957e45b3ca567245b16bbfd40278f0e5a56c2c806b70
|
||||
696934944254fa15cd0c56726518a3e33d770b10811317186b2d4078dd0d732727a8088e9eb17159
|
||||
480a4620220b8a269525e4b262937e8905884047734eed42042261596fc81188f45bd1c260255787
|
||||
3132de73b480c4cd9005082f829e706a0122302b1ca71640212afd8a269525e4b262937e890508c8
|
||||
116a5101d9208e530ba010957e453383955c1dc6c878cfdf024cd01be1872dc0d8aed0acb180e053
|
||||
5b2be93e8040541604cd2a5bc915c5aefd520bd0c17a58b365165ac3b2de58008148bf152d0c5672
|
||||
6518a3e33d4f0b20dc100b302aa61f12d5099b1c693d8d0551884881a059652bb9a2d8b55f6a0126
|
||||
30d8a242fbae728cee032844a55fd1c2602157873132def3b700a9214772d802a4ef06f7b1b180e0
|
||||
53879d0e0db71388ca82a059652bb9a2d8b55f6a0132580f6bb20684b0314f8e902310e9b7a285c1
|
||||
4aae0c6374bce76901841b6201328c4ad8c602e0d281b58d0510884881a059652bb9a2d8b55f6a01
|
||||
32f8f22d2a240797d635e42a44fbad6861b090abc31819eff95b000b7a13ac75c80238ef2a651455
|
||||
9de0537bcb68a88540541604cd2a5bc915c5aefd520b6090e1d4241270efc3b22e68349442b55f82
|
||||
16062bb9328cd1f19ea705106e8805301ff4a4b94e8039a2b6b97e4f212afd8a6695ade48a62d77e
|
||||
a905b0e0cbb7a86090dd675443ae42a45f8266062bb9328cd1f19ebb0580a609a186a2a12801a5a8
|
||||
05f0e0e831e3a80510886a2241b3ca567245b16bbfc402b8850ca7266b805b0ec1d5c6020844faad
|
||||
6861b0922bc3181def395a00e5a65a00d47fe02d8a634fae6552300a51e95734a92c2197159bf44b
|
||||
2c80dbe0cb0bc59b8690dda7a81744212afd8a66062bb9328cd1f1160b78f19b640babb081d7c688
|
||||
365bb8a0350958853f3238f326100b3b7d21449b2d0c07328a714fb285e1ac24ec5939c9da2d5093
|
||||
2d4c1ae624e04a8e40a4df8a16062bb9328cd1f1fe16d9c20a2e93412245932d5cd09a040cc78e46
|
||||
b45023fd8a9ab009082b23210773b315346bb7404db630699893802b390251e917b43058c995618c
|
||||
8ef737ca16a61650d37b0b5a93808b821188c882a2496509b9acd8a45f620135bdb7362c49c0951c
|
||||
8148bf152d0c5672751823e3fd2db285a905d4f4de82d624e0a260046aa45fd1a4b2845c566c2afd
|
||||
6a0135bdb7362c49c0951c81a8f40b5a18ace4ea3046c6fb1b650b371650d27babea9424e0aa6015
|
||||
a2b2206856d94aae2876ed975a4049efad0d4b1270254720d26f450b83955c19c6e8787f8b6ce1c6
|
||||
024a7a6f559d92045c15ac42540a04cd2a5bc915c526d2271650d27b49c39c044cc85588f65bd0ca
|
||||
602157873132dedf285bb8b18092de5b55a724015705ab10950541b3ca567245b16bbfd4024a7a6f
|
||||
6d5892802b3902917e2b5a18ace4ca3046c7fb5b640b371650d27babea9424e0aa6015a252206856
|
||||
d94aae2836913eb18092de4b1ae6246042ae42b4df8256060bb93a8c91f1fe46d9c28d0594f4deaa
|
||||
3a2509b82a5885a82c089a55b692cb8a4dfa251650d37b6bc392045cc851a8f64bd0cc2021978731
|
||||
66bcbf45b630b5809ade5b55a724015705ab5023fd8a269525e4b26253e9570ba8e9bda4614e0226
|
||||
e42a44a45fd1cc202197873166bcbf51b630b5809ade5b55a724015705ab10950541b3ca567245b1
|
||||
6bbfd4024a7a2f699893802b3902917e2b5a18ace4ca3046c7fb5b640b371650d27babea9424e0aa
|
||||
60156aa45fd1acb2955c51ecda2fb58092de4b1ae624e04a8e4054fa052d0c56726518a3e3fd8db2
|
||||
851b0b28e9bd55754a127055b00a51591034ab6c255714bbf64b2da0a4f7d6862509b8922310e9b7
|
||||
a285c14aae0e6364bcbf45b670630125bdb7aa4e4902ae0a56a146fa15cd2a5bc915c526d2271650
|
||||
d27b6bc392045cc911884abfa095c142ae0e6364bcbf51b670630125bdb7aa4e4902ae0a56212a0b
|
||||
826695ade48a62d77ea90594f4dedab0240157720422fd56b43058c995618c8ef7b7c8166e2ca0a4
|
||||
f756d52949c055c12a44a540d0acb2955c516c227d620125bd9734cc49c0845c8568bf05ad0c1672
|
||||
751823e3fd8db285a905d4f4de82d624e0a2600422b2a0685259422e2b36e99758404defad0d4b12
|
||||
70254720d26f450b83955c19c6e8787f8b6c616a0135bdb7a03509b8281881a814089a549690cb8a
|
||||
4da55f2da0a6f7928639099890ab10edb7a095c142ae0e6364bcbf51b670630125bdb7aa4e4902ae
|
||||
0a56212a0b826695ade48a62d77ea90594f45ed230270157720422fd56b43058c995618c8ef7b7c8
|
||||
166e2ca0a4f756d52949c055c12ad448bfa259652bb9a2d844fac4024a7a2f699893802b390251e9
|
||||
17b43058c995618c8ef737ca166e2ca0a4f756d52949c055c12a446541d0acb2955c51ecda2fb580
|
||||
92de5b1b9624e04a8e40a4df8a16062bb93a8c91f1fe16d9c28d0594f4deaa3a2509b82a58851ae9
|
||||
5734ab6c255714bbf64b2da0a4f7d6862509b8922310957e410b83955c1dc6c8787fa36ce1c6024a
|
||||
7a6f559d92045c15ac42541604cd2a5bc915c5aefd120ba8e9bd05ad49c0851c856abf04cd0c1272
|
||||
6518a3e3fd2db2851b0b28e9bd55754a127055b00a51e91334ab6c2557149b489f584049ef2d684d
|
||||
022ee42844a55fd0ca602157873132dedf285b985a404def2d684d02ae0a56212a0b826695ade48a
|
||||
62d77ea90594f4dedab0240157720422fd56b43058c995618c8ef7b7c816a61650d37b0b5a93808b
|
||||
8211884a81a059652bb9a2d844fad5026a7a2f6998938009b90ad17e0b5a192ce4ea3046c6fb1b65
|
||||
0b371650d27babea9424e0aa6015a2b2206856d94aae2876ed975a4049efad0d4b1270254720d26f
|
||||
450b83955c19c6e8787f8b6ce1c6024a7a6f559d92045c15ac428df42b9a55b6922b8a4da44f2ca0
|
||||
a4f7928639099890ab10e9b7a285c14aae0c6374bcbf51b670630125bdb7aa4e4902ae0a56212a0b
|
||||
826695ade48a62d77ea90594f45ed230270157720422fd56b43058c995618c8ef7b7c8166e2ca0a4
|
||||
f756d52949c055c12ad448bfa259652bb9a2d844fac4024a7a2f699893802b390251e917b43058c9
|
||||
95618c8ef737ca16a61650d37b0b5a93808b821188c882a2496509b9acd8a45f620135bdb7362c49
|
||||
c0951c8148bf152d0c5672751823e3fd2db285a905d4f4de82d624e0a260046aa45fd1a4b2845c56
|
||||
6cd22fb1809ade5b1b9624e04a8e4054fa052d0c5672751823e3fd8db2851b0b28e9bd55754a1270
|
||||
55b00a51591034ab6c255714bbf64b2da0a4f7d6862509b8922310e9b7a285c14aae0c6374bcbf45
|
||||
b670630125bdb7aa4e4902ae0a56212a05826695ade48a6213e9130b28e9bdb5614902aee40844a5
|
||||
5fd0ca602157873132dedf285bb8b18092de5b55a724015705ab10950541b3ca567245b16bbfd402
|
||||
4a7a6f6d5892802b3902917e2b5a18ace4ca3046c7fb5b640b371650d27babea9424e0aa6015a252
|
||||
206856d94aae2836913eb18092de4b1ae6246042ae42b4df8256060bb93a8c91f1fe46d9c28d0594
|
||||
f4deaa3a2509b82a5885a82c089a55b6922b8a5dfba51650d27b0b5a93800b390ad57e095a18ace4
|
||||
ca3046c7fb5b640b371650d27babea9424e0aa60156aa45fd1acb2955c516c227d620125bd9734cc
|
||||
49c0845c8548bf152d0c56726518a3e3fd8db285a905d4f4de82d624e0a26004a29a48d0acb2955c
|
||||
51ecda2fb1809ade4b1ae624e04a8e40a4df8a16062bb9328cd1f1fe16d9c2d4026a7a6f416b1270
|
||||
51300235d2af685259422e2b36957eb5809ade4b1ae624e04a8e4054fa052d0c56726518a3e3a5d9
|
||||
c2e79b30cc599093899fb9f1e1a7a069f032940f5b97f8e18384ae37a895f1baeb7a43613c4a286c
|
||||
8d0ef42fd33af806bd5585a1a47505854f662bc8b445e655576afc06fb58b450581f4b77fd1c6d0b
|
||||
e28e2a569f23a32c68339ee039313132ca8236a31ca5bb9e75b819e8b8a1fc39af33cc728e555d8c
|
||||
030d9e1fe3c61174bd41c3de48f330d0c1302a78d84af2e0ad59e310925d6f6c8494c13a9c1902c3
|
||||
e770ff1e3f8f96d1414485c00fe694c72b9ba59306426e7a63c7b37eeecb64588ebcc40d065c7b85
|
||||
3d252a93eb728f474f191d443465c36514a60bc3596a18c6c91a8875c362a471ec0595de42144544
|
||||
8a14e51a1fcf9d480fc1aeb0de566e0a0414831728159c49157410e7246d60b35c1f2f43ac9d3410
|
||||
72d31b2b8bf39fcfac82d87b19cc7e83068f4484bd609eb9820f667f88660aeb63e99ef37ca63864
|
||||
7f37a3ac281d8fb45debcd8f513aca51bae73f9f593d626b3021c5ebe644eb082a7195b5713ea368
|
||||
d87a499cbcb41209b25c44286c992d81d27c26199e606534cd678c615a5779bcb2593a6920e4a637
|
||||
763ceb6d8994f3c90ce6504001fc65b8472094495fd2965dc9d112323a88a8758eb6351af2bd6019
|
||||
c46b0812f39f2b64214b357d69b9a0706f5984a968308c5ac8a9209d40a920172620c24d867a0de7
|
||||
19058ac19f37da33fa7880848593b0da49032137bdf86c4233e78316cd43ac9d14418cca71cc8ec2
|
||||
bba01fe11f1bb6250c52a6feb48c633809c3e95e8377127a85b71a9606a1a16a414107a91e419cdf
|
||||
320a89ee4cebf4b88f59ed05328173c378ce884fa883b3ffb8505114d2f283ff403a71901f0512ab
|
||||
dc64a8d7709ed141cc180f7e96a18f0bb8fccb2ded8440891ba458d0ccf9a041cb106b274510a372
|
||||
ec8d5de4fee7176bc3220bab820a32618160985c7ff6c5eaa1170bb39590384419e6ade8e5191534
|
||||
806b4550ac1481d7b040c33533a681c292161c85525222a206a284328cba92330244025f112ffd66
|
||||
28a5a12bf4fa6a4311a639062e5f255721da2f413383955c19c6e878c798d538f9fe5ba4cfc64a1f
|
||||
041336bae83981f483df6c3d1cbc14d4c09ec13a9c5fe044ce8a0622522028873bdb6a8290831c4a
|
||||
131630d26f86520906a3396b1a0637cfc03d4042ae42b4df8a16060bb93a8c91f1d28dfaf9145380
|
||||
4c3b01976ea5822186fd0a5a40705f34e47e1574bd41c34a1c5e3c8b68a1301e2514ceed720454f4
|
||||
9170931eef10caa0bafbf192add49aa2eb0d1af480c104b7de50188f120ae7770524ec0ab915ed28
|
||||
c33f50e080b73c12948ea752188ffe06a314419f8434a61d255c585012f76984478292f1080de976
|
||||
5cff100d3d3819234aa4b7f1682b91f3ac4610160dac4469a196127a281585131405b1c7c130ea03
|
||||
3ca18dcb612af0d4a1fe1140cac361778152ad008945210a8a1483682c2808793cb8efce8ba6130a
|
||||
a9923b9fd1c2f9a04561dd537aa276029096464f546e0a841433e7051d4434c7d1cae35568a59311
|
||||
398e5920ffb2dd04834224315656df6a45e95b6d511438404c41525d792d5052455bd8c4356f350c
|
||||
5f09a187deaa87d457288356df6a80349643ac6fb58114a90912d1e6ad12340bbc74525f4be186be
|
||||
d5ca397dab758805a5424b9d8c91636fec6efc2f335717e69df43d78b868cde2878e0b2ac28ceb3c
|
||||
c72d184555d7386d2682779e6a46d437e36cd7303dfc62e1b4801b35f4626d1095e09e3e1e1c1287
|
||||
a5766a27044adc20c58c16ce07c3287758f62477525f6ce1a631d7c27963ae6588f5f14668b19351
|
||||
399e6b51121336bff1db86703f23ac3b5896076e0dc5cf662674108bf5488f1f05caa86150f440a7
|
||||
8661e7640924c24fd6f3b8f9af2887ebf22c9902459d4573cd9d081eac27ec18272a3705ea51ce0b
|
||||
3a484565b002407d1c2eff582369270d84dc20c58266ce07142d43ac9d14418c9163d926fee402cb
|
||||
c362c165dc3789786894ce0025e38aa0eb0d8a7b5719cf292a85f128a1b0f3cb4c414609d4f76c99
|
||||
ca68cb94b170422b87bb1f8b120aff07a66cd8429a614965b465cae2253031dcfd78b452d8f9e908
|
||||
280f7ae1b10827ba585ee1e69043128a138ea0eb0daac3b4e15c124ba1301e251476c6460d7f3071
|
||||
40e16ce3e1daabb0909f68a207ca6cbaaa5bd041bc7861f0ee7e41c14c847400393059df42508c29
|
||||
5d5d29285c48d73aae07140d56092718b513b8a6ceb96413959b02f528e70585386c98452d04e22a
|
||||
0ad5a939bcc9da0985123778349ed1c2f9a045d3106b27451063e4d81bd55baec26cd5fe135f021c
|
||||
c144c142d954eff24b604250145f4278d3025cfb82c2a516e1e172bb084acd245e29aa50b06d1903
|
||||
cd15955810250e90a0e1756861e544ed0444e6bd8f2f217253a01ee5bca020320f3115dc5c671444
|
||||
c6aca29d102873d38b2f30a285f3418ba621d64e8a20c6c831be849f9d693dd46e4517c381f55b91
|
||||
df83b790bd57d0f516e5e091e1b68952188f560a3bbfcc9497615727cd1053196d990ad2e15000a1
|
||||
edfe0768a5f0cb4c49383e34714daadd177488a9b06f319a0d773f0ea5147e9d290e375accd0eb2b
|
||||
e87acbaa855bf07cb8fbb128a1b0f37373bf602afce2ff059da214c6a33fd6a91f2d481eeba28a96
|
||||
291ef62f02169186244587543a51188f364cfdec4219fa92daba28693c50d9a7432de8900082c7ce
|
||||
d3795fa1301ea51476c65c287afa23fdfa29371a16d6d098047838dc679238136ab87d16bf77224c
|
||||
d7c2cf151dc43bca41b72441013210a346c8828b4a21d315f053badf9c50b8580b8bd46018353251
|
||||
4c9dc820bff0fc04e12643bd86f38ce25ae1ba56714e1f879a5e1013259d341072d38bcf2634733e
|
||||
68d13cc4da4911c4a81c03c5939f9ed985085a86f5602013cc331de72b0195fbf1342aa3eb0d0abc
|
||||
e93461540ae35142e167a706f2307c2f408d3095d0f531accab1dd8fa095c2ce2f4b4a821324f410
|
||||
53195d1f6555da71dd8fa084c2ceff7cb3ef87736ad0588b214b23bbc1892cdf70d216d526a3eb0d
|
||||
aa05b86f11ad14c6a384c24fbf4dd955b8d36b98120eae320d335551da7da5301efd1f987250ec90
|
||||
41068902f7de1a1d992232e1614173e96d5692091dea3e380481c761f98d4509859d9f8e42e1d5f3
|
||||
741320d8b3d0e93b5050b5517a82ae372814ce290b78a1301e25147e5af561eb21fc1053415db996
|
||||
7a88a98ad2ee2b85f168cbd4afabbb869c15ad87d43da3ed8b91c10556520f29f6789450f87575a7
|
||||
4c11c5264c5594765f298c477fc8148f6cb4ff0ca93b7efb40c82175cf68db111e6a9be1e9e20768
|
||||
a5b033f6b4f347ce29dcbbc6e2afb0de1a28c3945fa282dd7e41d3b6d8e3116c41216a25f1dc0a20
|
||||
fc23852012ac595c652beae329c1a041257c850936dab513c884522e7eb62e7193a15ec379460711
|
||||
1558d0aba01052711eee73974e0894b9e9c5d84b4613e783164d43249d64418c9163efe7fd5e67bb
|
||||
4ea1cf28831f6844da688749834b47d0f5060dce873746c7b051a1301e2514767e320463195c28c3
|
||||
11895833274587c2c64c117410516be0d24341e1163dc762b2a0d11244dc424e25a95714aebf7111
|
||||
77d6043590230797f04b27125220f0a360859b0cf51ace330a14e1ca81c4e06d793c404a43a1abda
|
||||
09811237bdf86c4233e78361340eb17652053122c756339efee825fc1faf21c2cd49892fdd6ab8a0
|
||||
9bbc10c8f8c753c58cae37a80a02d0dc65b54914c6a384c2c92f858cc33ecc62cd6161f16c3cb106
|
||||
e9c778ac96d1f5060dfe8513e9127ba5301e2514767e7e73673003ad610ab6719eb121a62ada745f
|
||||
288c475ba65efc5fe4a5e1369ae443f2ca682b2fcdc34bb37a48323f402b855f90173390b1df30c5
|
||||
8276702787982228edbe52188f364cbdf8d17ef8df78e121963c81a9c54a2886eef37e9885a580a0
|
||||
02abe5293482f0a21404252b64e0834a4ec69d6f452199cbcb0942ce88ae72f00dcfda6f867a694f
|
||||
1268d3863c6c998de4941c8148bf15ad0c1672751823e38dfbd63f57be496ccc262f43a8d0376704
|
||||
85ad9b88d153b837e2c2b449211c67f427081ad65b8b318442ce80e9693541facd103e1b5674a57d
|
||||
d390c17d34df90ab10edb7a285c142ae0e6364bc51be2ffe222d5661cfc5951cd2e28c12e5c4c2f0
|
||||
c234109c16a6ef001354c0c77a0cd5e2e04d71090721b5df0cb55a5c1a56e52ce40844fa256861b0
|
||||
90abc31819ef5fa5c59091c0b51fd2e28c12e584ab9192b5108e530e6971d89849c82da2e4e0e61b
|
||||
b3549b32d46a716d5894b392ab10edb7a285c14aae0c6364bc7f851633c808c7c337a88ec0d3d15f
|
||||
d829086d298ad7282cde030e32335ee9060a4b9cd03ae7b627144278dae809428e9b203ce52648bf
|
||||
19eac5cda8e4f1d9d210ee6ae0cdf042ae42b45f8266062bb9328cd1f1feb95a1cfb4316f0d2a1cb
|
||||
4e85c26f431514f3ff1d54a4c5289e142d84e314f91035a3c177e5b85e1572613fa2a53013a4df0c
|
||||
f5e2b921c3a439d2d006270b7ce84a8e40a45f8266062bb9328cd1f1162d2eaec5bf2a653122e520
|
||||
13ebe04b1f12ca8bc281ef7eac9dc10d5e02b1508754c62d5d45e11a288bfe10f8dedec4bc56b81a
|
||||
128f329412f0c9083f84ea80b278474bc4de02faeccf189786335191bec7cdb98be352323894c613
|
||||
34c55798c50b5370920afcb5a804efc6c8c4eb8bf3cbc493b1363e6edbc26ecd0913ebdb06aeb9e5
|
||||
045d6f50f8b2af8bd7550985f128a1706ed77acbf55bf02bb949a70df06d4acc212ce87a836a08e1
|
||||
33d95ee0fd014a286c8d5d27fe94332cb86f12fce2a133ac8cb667581925875078178acb21c83131
|
||||
7c86e564789b7af80ccb414698b1f40c2b401aca09116e32d49e6165b43dc32a8fd743a8d2098112
|
||||
37ed1956e67c308cc621d64e8a2046e5f87f3dc30a7b09059756da93998cb627337057b89cd7140a
|
||||
e35142e1d7cfb0f023c06c84a984ae8f61558ced7e04ad147efd0c2bcc0b5ab9e133ac8c0e3165e1
|
||||
aecaf069d5789450d81993a8f9af859a464c10eaa3288b3e395c120efce6e392b0ade4041d44d43a
|
||||
bcc49c517086c23aa9221424dc4270901baf111394870d1b8f013d8a9ab0c180dd44ed04aaa46830
|
||||
98ca4d867a0de7194dc163af312e9251806241dad209851237291c9dd0ccf9a045d3104927591063
|
||||
e4d8fb5168ed875119b80e8637abc2800d7848fb0d0a5f36e22cdeb0842b4adefe18cd14d6c7d2fd
|
||||
959b2f3fcf94603cc8521b820e52b4db61f034a320222f54ba71eb21679242c1ed823b9bc9fd4e28
|
||||
5c6091317994a261a76f149f209d6436093719eafdcbc240f9b261611494be0b07d9bc31ada00a83
|
||||
c3d511d9a0dcc1274d34150685aa30084a8441d1240cd249669370d30863643ca327e77fd6c4a34d
|
||||
3098781a075f6b51b88721285e8994b16444836ac8df058829dc7239c884e52e40580ec41008cb5a
|
||||
04655171a54ee820a24a18491f0f10c3cf1bd64e1a08b94914139a391fb4a8853b87728274122009
|
||||
1f0f27dc64082856ce339a469d86581e2742cb9d8ccaf197271ef87e91d436666b3a388cc1f20e90
|
||||
86c20c41d71b144e9c8d8d68a5301e25147ed6d6fe6f4cd9e025b9243f82daf8c1742838a1f1d311
|
||||
b0f6e3a7b4b8b25da71b08df0887437649507c23d0a771f471c266ee8440899bdebf4f1851be7c48
|
||||
18191d7a43907c90d5b3a2ac6b98f254186147a80daa671146865a6164b41546799cb0993b2150e2
|
||||
a637763cffe3959d7ff3dc63209e60b21659f0b5f71bd4f3b0bec7fbc1140d7b5d16066ce00e3396
|
||||
7d06c842e13780c2f4c008d48b492d61c151041da4ef52e3d7a90a0a9034de914e2894b8e9c56713
|
||||
9a391f0ca3024aee904e2cca5d4e106e3284693285f38c0e229a8698d15668d8c91839feeadc63ea
|
||||
e5efb06a19e958f948378fee7042d71b14422f5ea0eb4c288c4709859f34b7ff23530e6ad2c5f585
|
||||
a2beeb948c594ad18f9461d9b550a105be271eec461008df0814a1c204f88ce21b09be6bdc4dd4c7
|
||||
2b9ba5930a256e7aff3e6164f9eeffe85d5014363fce0f09c3066705f3feab30a0d096f19e0a2343
|
||||
ad3032da0aa33e5ed92c9d542871d3fb91befc354e0f246d6a85d90fd9f4f763fe61d86cd8a169c2
|
||||
42357fdb4c1390c16330af01a789b0cc5208a689189e20a8839a4171b7d5a2c288483175e2f06b0e
|
||||
6a827093a15ec3794607110d3b58451f87b9c8624d9ad24903d9b4db2268e67cd0a27988b5933a5f
|
||||
8ec8f157271e0db117fc9ebbc4748f587291a0e1271e3424aa35eb0acded0fd14c617d2cdd9fb7b5
|
||||
5f620abc543cc52b28be630ff7a328aa216dc8c954a1066be450484354ca45ada9285447498b0b41
|
||||
831d0b0549afa593cc26e12643bd7f5518a3f2ddfff1bb80f3339c4fa830bceaaa38a51461c07d7d
|
||||
ab341506818830084a8441d02c8cda491146e5860a63acbed089e7cff67be073eddc681ed34d197c
|
||||
aa1024aa214b466a82c248636d794650803c130952460c431ebec3d48bcf2614f2e24ccc06a3a884
|
||||
83603f413a0950704f012adc64a8d7709e51a028a11ea633f4f10089948d9b3b2150e2a6179f4d68
|
||||
e67c308cc621d64e8a2046e5f8cbd34ff0a91dc7836f4cd98f378209cab16c141e366885d5727e8c
|
||||
660aeb63e9fe82c5fd0a531a8ad545a92614dfb14955b00baac34ed5f028aca00082ab067250ff27
|
||||
694d4555584c547c23040d9309dc10209d6436093719eafdabc288f25543c2a868f32e207b3baa27
|
||||
11065c3e1631d73c0b03ee42b8c8671606818830084a8441d02c8cda491146e5860a63743c7f99df
|
||||
83fe1a7a1e74e209d615a482f750c8c463e0c28af582a00079c625b1ca16ca130f41c9c443d13427
|
||||
904ef2cc41b821130fe19c4c3c06c2650a73c1cae358745d0bda0981eac4435032f1b4681c62eda4
|
||||
0862548ebfbce1827b235cf856ad094ad43abccfa032e6c72851a431747f618ff12b4c0905c130d1
|
||||
da9a113a3e575103b7b8b992c4d628546d8da2d5d6289a6c8d7492d924dc105bfbd784312adffd1f
|
||||
be0b38c9f64a0d09230c4e8b06855d8f72ba1106818830084a8441d02c8cda491146e5860a63acbe
|
||||
0cf93d3fb56642fd53fcd890082b8071b10adb18544bd85d62622914f63461bf0badb4c6637c2814
|
||||
69787202c2ce2332acc28460706d17dd80c0b30a8e860cccd070de80b565145cd8606a6219e653c8
|
||||
d8c583aa8caec7393fcc823652f44c4607c27a870c866d287c2052c3c574e6d3ed5de79d458af099
|
||||
1216af3ac2b50a111b4a1f6f976aa8a461909c37225d1af536ec6a9763bfb1a65fbc341ae61aadf0
|
||||
4609de54115d16669a71108e646c43133d1c388d860415583fb88dacc0e70e747493155e91966970
|
||||
508b06565d2121300877fa74f41c4590554c0580ef31c46b683abc1cc67d4a51c1e824f42b3d5e9d
|
||||
835bfa5004650cd48b3c8f3484f715f31ae093f0509d072eb54459d17e312ecf79bc63170617c7eb
|
||||
9de7f1369df4497c61194b372c1924afa4772499a3e87a741b59ace30295ca052a4d78eb9ca58b92
|
||||
dee8f4e644cc8b092252c9590ece64d04399a40067531abfde8df7f4a160253763217c764c435046
|
||||
3cd30129c0754bd072610d1fee176a0fe6640ace612b03d931f8e1d460d7e1273025816749a8cf41
|
||||
c374fc6885c6def0142dbc431e7cb489b16638022dfff4f17f30d69c44147eb226854af0f35636bd
|
||||
3a0e35c8d6636125c99c1f4683c38377f7e0ee6398b3f04c5d4351788b0adba0b840cb68ccc2aab8
|
||||
97b7305f29338c4201734c458732a670936b3d72a605ae0d1405f396f9f6bc84c21f890253d20fa3
|
||||
61f85826b18c787dac1c7efe0e85b670fd13d35ba810a14831c309898a2b6c9199f12342840f1158
|
||||
33c4aac37302368c9a785dbd1dc0280fbf30000fe5b49d1c1a8087228362b8230f3315be2dfa6643
|
||||
db60ebc3efdb43e9d87c6b370f165639e971c96f5003df6518d22388603ac5467a1be1f7e7070b05
|
||||
d89c51436fcbe07a2d86de16f81d61c931c368b046fc2c77c32a5c6783457008c5d2e1ac556ea847
|
||||
ac62e9bb066550edd8b7ca6de086689c4729caf093a343ca6d20a74d7a338c3a9811452bae3172f8
|
||||
05214266189654150a4e4572a9d6c06aacdf129665c6159e749bb068aa9804189c022958aa98eb6d
|
||||
ba3417267a87b57195c03a7250131cee3661315b05f7251393c1f23956bdcd56a1e1a2090b10c4ea
|
||||
8d2050daa6a8e81e9686e06d2a9d8c5f5aac4c0c1fbdc0c91d8edab431b984b1f0329b9ec4aad498
|
||||
d026e31ccd612d81565ce0dca7a0323863f959a9e3ca0cf79a4377d0098be611fc19abb1247558cc
|
||||
e2d21ae4e3984efddab0fce73bf261981c37515ad9b48248d8dfc07885f0e98ebc94a9c639b859cc
|
||||
24650dfb741e0bffc65c2789b5d73516fed571aac9103e0b2a6b78d310928bf0b2229083632a7cbf
|
||||
5ca69c3fed783c490943d22e67115a8725aaa1b836aa07eca56170000966530e42180f87650a1441
|
||||
9ae8dec14d7b9d34c6c1522aa36c0c7c500718f4788d50e027c1f1addbfc7ea1bd16a974b2013394
|
||||
f92e3e78e5e03760f56f8094e20ea5c099a050d2365666b1d4102e21d97cb51f0be1819ca5b7b15f
|
||||
cd79923e64ef472708ee096a8baf8969c7e3e024783150075b2a8cbb41095723ca863a688d8f1a23
|
||||
e10b7f008539464727c1f9b4194f45f5a0f831b32e6b8cc3a31bb43970c3f0593c49064d0dfd0a84
|
||||
6c9cb5830d0a38c4ca45be454985533aa91614a5444843b16a18aff4d1681294ca4c2b1eeda6340c
|
||||
ccbbbc0c8731c36b034d443f09eebe8a645d587c3abafa41f7e1c334007963d2308237c926c6cc31
|
||||
d1b1b9fcd3d13fa84b87633190116b53a00d8c567a82a2030017e371fa31a17fee6c8ef3a5484083
|
||||
1a486ce7695f61e3c56c08a91a99d3f22a0a5e00264537146c2c02378ab6fcfe10dd897f901a1711
|
||||
03d9a9398e68839de12c00951d8473398ec820f3a5b65d1f4b2192befcb37b45283c28b82063de8f
|
||||
9515358fb33b918401cf07f3b10d94f534c5250cee904b5b2f131386118d13005cb535105f064899
|
||||
240606db4984984ba96d41c17c2e0b8cf53310d530d14472a8ab064fe2e2b39ea3bb11f6774cd954
|
||||
0018fcec286bf8ae2f6c228dcc9ebe012d640aab4cb258a23643a9caa4321848a20d31073a928362
|
||||
885062926b9e9e0d7347f4f44dface0132e815160486cdab4bc330307d01e4e35e093f85ab74ae97
|
||||
c93cba48f0135e4b803f3393f2f694e702211dbd4603d5f963491f0d7b5be3c5f09b8249d78fbc3f
|
||||
fcfa908f149ccb6fcac2fd1496df9f80929961abe5b28119d8310024e0ba7b1c759044e6dc978450
|
||||
035fd00448f96c700cd6741c752c7d10a0b01b955962324ec26841b01102b58a41810039883bc2cb
|
||||
0b73b62750d2109b46521a063744e74e0c9c4de056c3e2320e23e7b1181d6e8d7c7ea561230c6f0a
|
||||
cab7c8f4027c984111f29627650dcc250d611007496f99b1d40956c38be213388c00e1678e31e952
|
||||
6a9dfbe56916084b2f4355029f3baaa18662840aa120a194fdaaa5d379bc4356fa2b9b1b0c56d0a9
|
||||
6a3feea2641a0a99c0602797cc2730a263954b68cb4534d316c5c28dad92590b392fc30a69e1a32c
|
||||
71a494022600ba617484dff55f5b35a05482c8a9b002cea4f6131a6f1e83fd082c4a0cab309eb419
|
||||
08da04a54046639cd2604d3e9bef0938fc9417449c1cc767a146400e4271b842049071224ddc585e
|
||||
3a9d16a748176a0f04d9e0569c8dcfb268d4b0d7942ccead61fde62ad54786dd804ef9ef0e68c301
|
||||
7258b9936963a6a28642aa3e27a4e7e4450dd5eae32a591b42f9a26836f815188d90753cb16265bc
|
||||
33ae9d82c0507a5dc18b0a3312666ae4f14a9878010af3b98ab252e014e5672d4fab84848f0e0314
|
||||
f49de5550af41cbe37ea649af939441cd339387371e983db27e1111c86e109b2f0b634de8ee0d9ae
|
||||
81a95e3ce7f726a3062e7802846f864c13f0794bcd87e7133cbb676d43f0de638a35dc61c44b20b0
|
||||
2ac83c8ff1b4e2a06ed8c4a057c119c36ad59aa5854485990a21e9e2f404d1ad98fa483515d60311
|
||||
2b5de37413e7132ee2dd95217dee8dd5f241f42a205f82e79c6fc1e38dd0381edc1fe03c856c6295
|
||||
ebf40ea494f1c28348f9f8062ec6d92c9eb09149d33cd7e96a0313f94dc5b5122a7e7a3ebca8c28d
|
||||
60cd146d087720e24602c8c12e92be3c34b5a44aa07c36cdcb1a02780005fd490c86095fa286709d
|
||||
d74a0911e4acfef1ce36983bdce5d298a28627d4b0fefb04591d9d1719f734e95927d0ed878506b8
|
||||
c1867843032081d3bc13b97ea6c18f86d9fc2c732acda00aa22fc0b389691030e143941020ce8d26
|
||||
509215fa70a42108356e860c5081d82f5cc7324ae7f03763f91da5ef3018f82217b7d890f1a8af61
|
||||
a285a4a831bad1fb357fd1f9bc61a68b890b0e0373c33e7240bd50797a973ca141fd9cb3c36d55fe
|
||||
14448342a015d345e962127890165fda10ca923f01459995ca01ac54ca85b6f590a4cc86972e285e
|
||||
cb951ee201ae11da917d4568eb85cb0b9a8b69a863a4f38b4b175e0164c31b1e0f396d9a0d6d2bbc
|
||||
8e418c21c6c2db377a0485431633b42a636c2ec50729caf3515d432170e6a2073e84b6fcfe10dd89
|
||||
7f082e031fdaf0781f6fb0b51b1e0f0b2cd7431b9e510abfb6e181d362e6b46d15184269d2c9a131
|
||||
435b1d4f96897f026dabed52548f281a84fe582ce4d44838c84771364c01362c4c0ea323fcfe4aa4
|
||||
148feff9d06039faa77e98d5744370640061f997c38219a1fb6b7a0e9d05cf81b72e1aa24e73e2a2
|
||||
614c960b455c34382765690eab2e5a3c3dc5084c76d1000a5b7f475c3403d9443e5692a92e1aa05a
|
||||
09455c34035f937491c1e4a20164d3f4505d34f8dca0544611170d3e37c894e4c4f302c8c5a304e2
|
||||
a24158d7a5f3d7d210aecbc5f93eb9681054e65ef0d64503d4ea2885e4a201e413cfc945c303762b
|
||||
7deba2e1b3c9514d2e1a46ae5ddec5a38b86a1689f9d93eca201aabc55c445c361c4a3a2eca201c4
|
||||
45f6bcb28b0652905668e2a219cc3e948c785e20e7b06d34ad8b06efc8f9ac88a961dd3e24170d5e
|
||||
b94de3ad2e5ad40d27898b067a151c0e415c34348018d2262e1ad5d4e4a20114d656475cb431fadc
|
||||
1babe5d14503cea530aa75d1e2788c272e1a36f44c13170d20138379c445437d654210170da0f8b9
|
||||
aae27981b46babeca201aa4af99fd2d073c7898b965e9e685d34546c912338e8a2c1bb4f5774b28b
|
||||
06903656b62e1a9e6a243f30b968a05d79939c5c34846c144175d10015d239e2a261436e3c71d150
|
||||
339971ad8b06a8f29a11170da0d0ce12cf0b4696c346d545c3af8bfa6c76a9a186eb0596b8680049
|
||||
9b27a3eca2c19bab75ded04503480969888b3646377ecd458378b28cb76fe8a42fe0c44d0cedf7f1
|
||||
fc436a9bc518f3a9e1cb9a324d06b42d5cbeb16c1895b0780faf7081aec7cffbb62844017472d102
|
||||
37f1e37e02824272a42d54ab1cf15846c7f6f3aba10c24b9069f4d325c4bf0c84bc2ad3783ac42f2
|
||||
a7f3d89184c30c15eba80fa1d6a4eafe4cc7a47428a72c941a873ad4d0e092b9e4fd0285e0d4d831
|
||||
a8c2f5d443643a963a010a3246298751bca520d1518b7e2ed44a0d6dd91854e3c721f288d7c7cae1
|
||||
1784a8f0008ec7af06181b6b20405156174f63022ae193a5f8594078103d2570f1c25e66022019b3
|
||||
e1188b47440079ac1e089063d1c0e1938261cad06940029f850fb461fa277c1bdd85a5072a224b19
|
||||
bf6091207c165635fc2a706d08515b9d1a4a5042804c2cbecb302923f56b20fb4b4454c11a065060
|
||||
9ec561e0fb47486188cf4340217ea72ca259364e61bfe0bafb046908a5620fd1bff63053c6fc32e0
|
||||
c6397477e1e35370be03505a930364e0dbc830b2b024a756cac74c3240357e64125009bb6d108c89
|
||||
27dcf0792bf85a368a2fdea60075523ef10c1988b8367aa830cadc04bc4c196fc0c2317df84f80c2
|
||||
bbc6ba4722d62e8cb25210f08ae6004732612400f1b8fd851d920b6f0ba118d1804fb4c8981d8c28
|
||||
2aa1c03c2dabb1a18c9d847d94d7c221e424bafbb0b5f2b16a207023e28519f8b0179c4c03e463a0
|
||||
1eee5c84a1e3301ccf86adc02bc8e38d07130e22952854d87560f4076e66381655cd6b49a124e73c
|
||||
559486267bc20e44cf41ceb0194697267017a41ac7abc3eb8fc7530e8f6541f17d2e0fe4a18614b2
|
||||
e2e1f3a6228a8fc1fcb79c74c363b005ef63a8386904d4c6bab1f0d107a8d3831aa330973f503450
|
||||
6a0b79762e4d4e12724db3c6c49d9fc36b8e1235063f41859015366a8c57da12089f1570c6aa9a86
|
||||
1c7cc634380faf186b47c74832f4abb296a34d25d4c04a0f90d01825f01804e209c20d4a189982b0
|
||||
687a36ac8b498f829ec44e94c04d1708467399fa454580c428a97d9e4d78dc1507d4c1d7c36118dc
|
||||
e00b0933310f5a86224037247e90c5462f0e845aa76c6f59b4eaf88928507ce990679b1d920039c6
|
||||
d278a17649d472fc5c2ff00cc1349dad0bcea35111248a1e12b6844bb398878b27c9aaf16bdc0005
|
||||
2f257dc885475941bda968995818dbe4672d17a9269780a3ce48cea5099573d436170b2823146665
|
||||
933535f62bb100b3b33838ab3191896185188e2288471212afa1e419103435f6abe0bccca202863d
|
||||
7d5a83944311e0ac6d0894de9164718ace0d83095b859f08835a16b09ae24c847b35e0cefb58c307
|
||||
e609ad6442191c29c242e5703f8b65c9e00472ccdaf56be7d1329e65f2210f029c1913cd84f80a16
|
||||
b4394e21091d000aa7d49213143ff2ccf3e3023652f8e9b3589303a62e959644abb37ac2570e7dd8
|
||||
0241e67c9873789a6b74580f24969346b5812933ddcfc7cfa6c5eb0360a1708317cbfa788c6e047b
|
||||
6270700b108f5743c17852813e44459c55e0ed8715096bf2689c45c10024ac5670fac17c5e22543c
|
||||
f50254a46920700fab28f09cb24d20ae05172a0112f114139626c17d19af409e610d830018403c6e
|
||||
24f0db9bc873d80fc533556fe34d6b7c16ca13c775171729e8043eb12dd2726ae1ce0a246d0b15ed
|
||||
2941f0ac8149984982ae473495d0a7bed4a846fc10dd8944988e934e7215f753872cafa3cec76fde
|
||||
8102a57b7a194d0ac4555c4d138a3a154b9be0d4e34081e0ea2e5e3e815067fa343b0a45b3d48f82
|
||||
4b4c20bdbc5e03a7da20a4e257cfbc8c5e3a3eabe01e0f4f4a00a79698406c7d5eeb2d2a01403241
|
||||
caa41503508347cc307343f53c80b4c398b84fd7b3d00ee2cd1a580864ac8f8a3cfbec5ce30a8a83
|
||||
33791109930c8f22902ac995a7cd29a03ac90aea46a1b171b003495e00c83978409640bdb16fead7
|
||||
028d904aa9854fce6f986c708f2f83e3a0f14bd9385dbb989609a881cfe2e15cc5e0f81c2087f7c8
|
||||
00b2704749c2f4e0f12be82c7d0e11187578494a2567172e604126a6e02a6d112cac6300e1a25421
|
||||
7cd6c72f47d186e07a799bc841663ca461865e52abb0f4c7673de46ec4ef77c1790e787a308ff03c
|
||||
64b47184e286de270f0d9f4d9f8c88eb185c07c66c7d6792752a286385fdc61b4598daac0acf3e5e
|
||||
2381c512e6a8380c973c5b6193089cc223b80ce1b3e02e3add348443b0bcc90a6b1f4348c9dc4a0b
|
||||
8617dd50ceca250370366d7120e9d5dab4cbf390fe0adc88f48a255cd460081919a5005723d3fc06
|
||||
8a65f12c129c12389902483891fc3f09a75a08a569808313eef2b3c2e4c99bb3302502c4e36936f8
|
||||
565a58ecd7c69b34e8fcc5b80b8a4b67a7da43d80320266482ac4f1aa39c67044ada960eea6ac330
|
||||
eda6c50a22863033c0da568c47a6f807a8743a6b2e2e3f98438c8fe334803cc30512c6865c60c890
|
||||
d6713e072d8f1f0005d429cde8e400e503254bcb9f65d223a4e349290c133c3de42638c6e822e126
|
||||
c2c04ed4c14dd2bc387b089103373cae4cb0e606bf3d8fc459cde8920d7fb622ade2c9845dcea5c9
|
||||
507eebf1465a690877af5dfcea1c2ca208c1654b74761d5c6789f74f00f546a7c1059e4163824269
|
||||
99e647c5d194e008284fb7caf2d42f1e71a44d84077f05c81961f3fecd647b4dd3ad8e25919763bf
|
||||
8c47e3d450acc0e3b35647b5cc9b44e8819bb48aabf4613489d6125f31ee0da121f4c6d2a480371e
|
||||
118aa1e13075309fdc674071078c730cec0d819cc16fb9c364e4b474711856bae412a66251301293
|
||||
a21c32de008d1399a17e27ce137056d8baa2300330a59b86101730a92153b0c70eea22e25785e048
|
||||
483393f54aa0f4811b01c941b17ea54f932f87bb7d6356879fcff980baac5ee7d80807734c355cb1
|
||||
4c47eb8ac03283fbfb6154a6c95b06cb0f0b3140c1494e4c7a08ce2bd83be08d6e107f7004f085aa
|
||||
f80966956679d8c0287842b21ce5900885318becd2391543cd0aca94789f363ff87d77c52073264e
|
||||
97700c1364ad207d33de93f5507c20de8e06347d1b1e5559596c688d4a33a8856f092114ef8181d2
|
||||
9aa848882a47e799448ea7d908828ad8af53264f5b328d1782fc5293f90da020384966411899d1c6
|
||||
b6d325a02cf9e7a5a1cc67e53013808d03c4659eb9d186f159bc9b90265127906791aa53e12c18de
|
||||
5b84184ec8e0714156d2727cbf4ae438028763d4f4d6b5cb9e4e70b024be621e2ffce3d7cfadc297
|
||||
c919cb7b0a134b51413f5806226e4920fa026c8b38f5e4990ca5102f8392290fe41a6630d534846c
|
||||
ae3c376a0895293854d41843840959ab24050f85afd2ea2261f301908b7b281017183442e5fd3a19
|
||||
bfc484287e9d19a460606dc492c652a72dbe84d801402ade7ef7f84545999f0d0e74dacf5b6e2532
|
||||
e8240676407921610f20dce5468782b1a4a970cb22ef70f06bd5008958731edc9bd82f4825c701f3
|
||||
655054ad78d50f6dd447d5b29ca72d7eb04c8e908a45ddc146b529d6c5bdd764cb0befc8c72a3510
|
||||
e484b818400e4cb4ce1ecb63e7949f0f0a2bfcb84e14560d0a2b38675192b54161408d8a6b490a0a
|
||||
2b0ef18f321a88ce293c0715ae0d0a2b01c10c27485018a0609334d61bb6cb61f1d6ac0d0a2b28f1
|
||||
cff12376b5215e2e652428ac20f5035e76131406d46170a70485152484786b485038427159ab4161
|
||||
44e3017e0e0a03396fbc234161806cd28f1a1406540b2148505889e2dfe4a0300c23bc39de068515
|
||||
e638194182c20ace7562ca510e0aab78666cdaa030485fa8e250c39e035e1b8b077d79bd57702228
|
||||
b86a83c20a0ec4e31d981c1406f570224fd318144688657f2e0785010d93a4271e229063a238ab10
|
||||
140648d9ec83e6a030a05ea0af9b83c2c0a08eb7d972501875325eeb23416118af8c478739280c82
|
||||
91f15034c77a41af74bcda4c82c22067c3861a6ab86e6c4950384cc6619e8d2b460d0a2b4c168acf
|
||||
a6a03040961b4682c208a5307bf5885137645ee8725018f5d795850e82c200316704090a23cf3127
|
||||
9b04855163e2f9640e0a83c6a878353dc77a510acef036280ce20a5b0e8a8250bde09e0485015269
|
||||
df5783c268fe4632121486d7e462698e1c1456785a1c15bf068523aa39090a23399b37101814c6f7
|
||||
ebf3a9440e0a03ea98f62428acf08c337fd41b83c26834d69936280cb2f23a7fbb1b83c2f8d6e31e
|
||||
2a07850172316d81048541178c8cba9f82c2f08a85349c0485013296993628ac2033281d1ea5a030
|
||||
4052384382c208c50b4624288ca81696048523b9ec4d635018fb6579b79f83c2a8a9b1925c0e0ac3
|
||||
30a4cfc159dc502a4cc5e3be0d0a474dcd8e292e97203e693c270e369db5ab278e4a143f645f1a42
|
||||
adf7745e9882c260e8025e5613148619813bc5495018269898915457c8d1b5eb173c71c8b53356b5
|
||||
411e055974e940b806790075789bac04791414484ae24f411e80c2cbb66d900750af72f01e833c4a
|
||||
e24ce649ec46417103e9541be401d458c6684305578af2628f411e808cc88b660ef228f804a7ca0b
|
||||
1f0679008adf9329411e84549cf26b900751691d09f220b958913a0779b05f9617a01ce441069d12
|
||||
24c8138761684407c71bef9593200f082668ad6a1ac29aca2409f280448d35b60df2a09c9df66d90
|
||||
071e4fe1f81ce4519812ab3c09f200e46c94420df2c04824f38e047900c23a1835c88350bce64682
|
||||
3c88326d489007c949ef489007a0b0c7506d9007c555c23718e4014898bcdac4cd08a462c66facd0
|
||||
5d8b844421df36841320e9e82648c2716ddec8e4200fa061e8922ee1a0f88c1bbaf9020b499107b2
|
||||
a44988f51adf067914e4743a4123c00049e30c09f200644d3e82cc411e0559a23aef6530c8a3b0a6
|
||||
480eb6609007b851f1660b09f2a071c6ecd41ce441f5e031b894373298cc2ad4d08e07dfbae0b421
|
||||
24d97267499007be70a354def1e4204f5815c3e49cc35518e401286c552dd920026498f46d900751
|
||||
116f11a4200f74e24cdec8609007589152b836c8030d4589e8609007207cd7c4e90356d2f96a0df2
|
||||
28287ac2b921411e80643afa4c411e801467aa0df2200a096535c8039d7891d7200cf2202bb809a2
|
||||
411e1849d01849823c71225396ae18304f7821879616980162e9dfda300c0977a525c803eaa26c3e
|
||||
facc411ed036cd72c809833ca0bc61a3a5499067cceaf00b4b0bd47ec6740a9cb6e1a2f77e42a54f
|
||||
2ebce4cec74f2581cfa5dc286a9c4f673bc2c5da074821461687d020e7e4bf391bbff6a174b9b035
|
||||
845a9623368582c1f4693106d5d60c71a6f1e6a21e83fa726c01235e1f2b875fd898c2cd5565cdd0
|
||||
c6d440b2553e072e1bd380ea581da56c4ce11bb765431d37a616420eca0c6d4ca152091605a91b53
|
||||
28088d8652f79b50d11c6f64361b5338e1b2da360d2198e49a8d299c7ce25ad76c4c2d4e66866e4c
|
||||
a186aff6966e4c1112c31b5340cbaa1d37a6166271dcd08d69800cb3c31b53a824e3e22c9037a656
|
||||
95b9226f4ce124316d51c8c6d4624ccfd38da985bdaa3674636af1a4500e6d4c211391734637a670
|
||||
1d38dd92ca7314dc3976920f6d4c0d1eb81bba3135586fc7d28d69fc28a61bda98021a97ceb2aac1
|
||||
2d58279b8d295c9f8dfb6bba31854bd1ce351b53033f9866630a3ac9f3f941d998c2786d5e34e2c6
|
||||
14ceac45bc5e94f79b16227f714b4636a620fd58a8af36d4304a4d37a690afc9b41ada98c2dd8098
|
||||
655836a69004665db331853cc6142620ab38e886cfc7c265631a50a159b331058d491798f2c61478
|
||||
8eb7bce9c614342616572a1b532bd35ea6ee37410af1808e6e4ca10a11cf8e4b6a08478db2d9985a
|
||||
384e13c31b53e3f30754cac6344039bc9c37a600a5e368b23145d4361b53202773a8366e4c6d8ade
|
||||
b51b5338918e8568cac6d4f27c29be6c4ce17bb68aa9a18d295e1d71826e4cf1ade7707adc98c207
|
||||
c61517431b530b37d798a71b53bc24e29a8d292882146a68638a596996d18d29d44f8ac183b23185
|
||||
f44b26f9d0c61450ae14dd980239cb9b8d2924696285a766630a3751f0d27cdd98e29d13c9e9c614
|
||||
d22f85b4431b53d4d47ccc1337a6700941c60d62760ac8ac4dbc07b89dc15cb33135f831674737a6
|
||||
3013e136a1d99862c102d36c4ce17abf13cdc67474edfa05ef014f46f9d04d2505c66cf3f18b0435
|
||||
01d3842353ed4c7b7f4981775c6e5416d4633d8d1475c20fba228a675e6ab8ad838b132328a44f45
|
||||
0b825077fc8438b4b53acb3d1f53015da72d1f46616329d2c2a5442c100dfc5a397cab798c1c7e21
|
||||
731e12a5d4f0752f0dd17d2b444b1250275c5a37c2963fa6abc1b993607981817230614397b3dd60
|
||||
8b09550934e8a4f3d940e1de2994d00354e7837f2ccb8214c13550f9e01f6add00451d0bb9c00609
|
||||
8e32a0df3017a6dd9f833bd8bdc8a3747903c8602ad20c7344d3293887a41780522a66debb00371c
|
||||
2ec42bbaf5591f2ba15f102f14afd1d969cac79888fae17b561abee6c7991d451dd6d72bc7981ab2
|
||||
4062f5f07c8c099015c2b7c7981ace12bc74e418530b4c0771e41853434c34967720c79850d74f33
|
||||
eec9312614000c4bbf26c798009964c0f518138a07b2b45ca4634c80443ce3cac79808a52bb0f518
|
||||
33a25c919d7424c73539c6c47e9d65ed312632c88d243b781886639a9e5902c4e3a9280908801474
|
||||
4c79ac0de1388539728ca905a63bd9f618135061b827c79800b198f4958f31118ab535c931a68e75
|
||||
cf7c7b8c09ef93c51a19f91813a05403381f63c2fb354ce8f618135e7170a71d39c684aead36f442
|
||||
86c6aa7142b79b7a9060baa2541b861fa431e4181320af356b8f31c33219f74ff51813145d4aadc9
|
||||
312642f1660e39c64434dd544ec7980085e5cc92634ce8c1bbe834d4634c40c3ac28c8312640a15f
|
||||
458e31359e3030de1e6302aaca7d0e3cc6046dcb77ced33166948ab5ed3126aa564c6ccac79828d4
|
||||
78169e8f314189bcc9170cf23126a096714fd6428094379c1c6302845bb7e61873cc9cf28b19d80a
|
||||
c3c1e99841e6e2215046356639c1ae00268bf5888a74c701e3a4b11a6a729c612e86bba35000374e
|
||||
3f785dd1a482410ab2368523db07801857f46e95c650a19643e68891c606054896131d0ec12c2882
|
||||
ee5c76afad887e2996465739c626552ab6ce5dbe8766b0320a94f74b590350f72317cf857da24c11
|
||||
4e03e946d0af75f9b21b878d20f0ec634c3143a910ad88d5906a43193702911c14f9c0e2eb2adf79
|
||||
353e95d850b0f715f9ca3c567f8222b631b7d7c3c608c961de689abd2d4f3515b0f0aeccf93c5ac5
|
||||
02b8825b45a24bd8afc12f5190e85264306ee1537409df6f2297dc3e7c47560e5d210259f9927a15
|
||||
1bca546f283aa17097184addea949614a63d9bcafd40ccc96706b9821a1212f74ac9cabcc6778417
|
||||
d8d222e473212a2cd59bb7b4168286b138723e52d4709b1cfa0d5e688a96061b17b5c4ae4b0e9b75
|
||||
d82f04f425bdc306e335e5b65a991c3112e77cd350941b7616aa63b1586838d6880477c36539c331
|
||||
b74b515a0fc7c2f08ee2c1430c5fabf87e872c7379acbda65a03509830c514601eb6d190b19aa14d
|
||||
abbe063f14a07cf189c51919ab53739d201472323bedf2894b98eb39ca222c82869cade0570598b0
|
||||
ed210c8847c4cf0fd6861c8260f9e6828237055517798efb309baa6f2b916e44e27c0889405877da
|
||||
963b58822728d61e05f557a63c6bcabd1323a1b20d90933986e2a088056a35b72a5fc96785e77cb3
|
||||
3eedfd708a727903a1a58fe355e98e6982f214e544d310a6a8341fc192019e99c44fc38b7c54936a
|
||||
9a4151c6587300d61d9cece165a66bea1049c22f988cbcdf5f2c650209bc3ea70416f7134b95b0a1
|
||||
94490db50f95b6a3a851ae713f3199b19c9ea2fb09998c299847dc4f2cf5ed05753fb52c777ab3fb
|
||||
89196766d8fd84a44299b750d1fdd436b245dc4f2c5128d990fba9a1dc5bde7e44f753bb5c4ab3b8
|
||||
9f1ab6fd9a0db99f803aa3a9fb89e48ca3ee27e4bfc53a9ad4fd0406356fdc4f882e2b4e7d4da872
|
||||
e8bdd243eb1d646069ee9b8650984f7bea7e6a8877f961f753431e797686a3fb09b16e9713e7a2fb
|
||||
09502cbb4bdd4fc825333997acb89f9ac56f8713f733bc62556281d1fdd4606518e5a4ee27643ef9
|
||||
7ca614dd4f48c5f3dcd08913be682aad199a61e10b2fa239538217e2e20df2e27e42e697676ac8fd
|
||||
84ca112c5ff38bee27d4a34bf70bb2fb09503a3925ee27a0b1e040713fb1c29d70d4fd841a7af183
|
||||
c1d4fd34b8361aea7e1a08693247dd4f486be35a0fb99f1a4b7569ea7e42ee9ccb7789a3fb895229
|
||||
97ccb2fb89071739961fdd4ffc4c6cbe711bdd4fc8a0f47ad8fdc4afcce62b60d1fd0405945c53f7
|
||||
13128aad5243eee7e89cf20bfb618957ff6092813b631078dc8ff592748c0c657490ca754bfc6258
|
||||
46a11e90c3abf990e01dd86e20acc79f2aa55554e1f7fe6cfe64574231f51a3f48573a819c654809
|
||||
26dc64a8d7709ed141f4c50dd6aeaa8f03b3e9bbbeb9930a656ed25e2ba199f341839621d64e8a20
|
||||
46e5d81bbf07f8e1278d4c2a3921b196b288d5d41586a82441d7231a2c05505c1bffffe2ae6dd592
|
||||
2cabbe17d43fe44b3d36acfbe5b14d5a508e285e401091f27465ab9cec96aad6a6ffde1863ccb962
|
||||
45ec7d24d36e954a8aaa91b123d67dcdeb984d35bc80b218562e3493411a4248136f717a55616941
|
||||
d23235cf0c4913c62b4a34886a48861e3fc1b54b55119207bcaa195b81a991c3a0d64c723ccea648
|
||||
9a4e0c26eb2cf3104b14262946b3d454b47c9905f98d442eb4ed41b09e5162c5ebc8958962144daf
|
||||
8384de56898ac23c6d3610b100801a89bfd10d1eea800ea1650aaac730fa6fbb0ae7a13634e95e71
|
||||
1cd3689fa97871bf650411048d732a697db74b42dfe7a43633eddcd1ac7cff629bd82a71e5596d5a
|
||||
0a9c10848a662ac305a4133991bf87fd0be2cde691d269192e8ce8d4493178ad63c46ae6fdcfa028
|
||||
5fe010c43f1a9fafcc5ca5a9301e6e821678ca144bae45ffa644ce82333f4b0fc32da2f2c3ceab8c
|
||||
99aad40f980a8b0831ca1d14dd17642be4906fdafe604154de34282308986b7d70ade3bbd584ba03
|
||||
8d22602810cc58ed04d59c75966078594c04c1585a0bc806363ebe024699606bae244abb70aa755b
|
||||
c213e1ea80aa2d9a026ecee8bfcdf4877042c03b0d28c908bba60d10eda598dfe9d48e8f7bf9e53d
|
||||
f493d4a74e4b173a9e20f87c165a198a7f7d49b6d4fa2b8a907f1e08602dc734bdacc27ced114d41
|
||||
cd40baa15549c1e620a1fd03aa6065866f84badea048893baa37606441f5642dcbca00bfa324825d
|
||||
3d7e793a0eefa29fec9e675e3f9a3cbbc9d22cda43a3ada291aa2a195278029459f7079c078cb4cf
|
||||
b02f042bb603d146da11047d5603023ff7640437a29124f60e154c21148717cc81bf84f73a4ab640
|
||||
ad60b944263bf33e918436b174f9144eb2b824a5cc7834a0013199bcd40b0f28cc73805c0e5a1fba
|
||||
e31664e4d3ad3332f17cb040e74f97d74163e5b2bf7c1729c3745aad0692049a1125ab1b80a296c6
|
||||
d65fa0c94761c4a0df46725471f81ae472904a91f982e35ceb22ae3e74279f107110838c78444134
|
||||
a490105c69043ebf1f8dc2995225765c42381f3f52ba413d261157274516e2e48607fea3da5ca70e
|
||||
4af84b821eec530747c2d9390d9a7663a4e964dbc8202f764a1c0aa80646c9233c776b36feed18ed
|
||||
84cd304c7f14c9f7ec7e2a46e4ddb3d40df312cf23116c485a93fbd909ceb811d2e5c100d1d51e8c
|
||||
a4b6652d9b66a764cdae87c0941dec1aee2cc404a2855aedfae8607d2344124bf4f7e8d8faed21f5
|
||||
4c0d4c43d9df2a16091bd42995c88de53c0a86dfcc08fa4b762a76a4094845d0ed6a8bfdc9fefdf8
|
||||
7457fb768fc62386057708dd67d1a1a075839206c3340a5d4b08c1c40a0254122f3eeaf929bbe0dc
|
||||
43f1c509fd808cde3dda320c349781195eb15d0e193bf66414c7f620c303a6bdae7137e1eae062c5
|
||||
777b0bbe65872261d1c091c5421e94148d6e20c15d7cf1cdfbebca1c51fa2c11e1489b0e5ea71502
|
||||
0bdb985a5d4da162d8c5f8d6477d37a762f2ed0c4d9d13251da05e878e992aff9643d6df50cab83c
|
||||
1811cd7a7d1d8311ecc64921ae251c25a8a18193cb1f1934cd8e990117c293f97d7d3aeb6febf41f
|
||||
d9efe708d7fb6743970038baeb8da9d88d5f7891c3ded2b35d4a23c745d2de552619f6bdcced6c31
|
||||
1312201066c3aa00adf40df212006df4cb83609b769124659b96639cb27db7fa6f97fbbf58310040
|
||||
79749763c35455804cd21ff677582952a23a46208c15fd364e6d67f805b296e168c12eeca3f1ebe6
|
||||
a8cab4c419495338aa2de8b6836241210fcbc1ba61908d95c23bb60721fab5e8472eab11306cbb09
|
||||
22b7a6ed70ee6b36900c399acc64a770cba37d7832bfaf4f67dd09a8510888ca0f82814732c2f963
|
||||
b7b46ab777ae32d4125dab74502b473c5c613c28add4501c3af610c560ace5a89af795314092a9aa
|
||||
72075844ab04db30038cf3a0936ff4992ee85524f391ceb7ed411c41523951908155e3117d974c96
|
||||
ab38633e5a59b290ecba65d813b8f08f0561e74da07207888138147e8a9994f046661af160c21bc9
|
||||
77df5cfea9081c053415b2ef90f57792976b7bb0e074b30727b8b22b03f6249a20d7715a9b710532
|
||||
7cb0d0a831482bde259a6025c2624328494204bf71afce34de59e541cacf104d7eeeae679688ab0b
|
||||
df8dbaaa9be26f5e35bfa315bb5bc360037146f6b9dfa298a331fbedbaed38c1eaf5414467b98a34
|
||||
c9cccdb0cd6837ff8c6ef01a7006856d7b034ac9cfa318b9b08793bdc96a3ffdb7b14dbb8b52eafa
|
||||
2dab25694d827f08df2da45f5e02dbab8a2224c9128770972acb02809ebfe55d2aece4acec37f1f1
|
||||
1818633b3a1f847c534d4f99934350614b09fa4205e5c04795f61b69d8e571886c9aa354fc3e99b0
|
||||
9e3fd9991f9fee57bbe64961944c37eec999e47966b8168f60207431361dd770f266f5ba2a391e76
|
||||
826eb5dd3b2a5c653b88639a1a8b9c82cd5f460d150ecf4c3b64c39396a1c81e4491d59e76930536
|
||||
09d9942854cd9ed445342b54bf78205e7484da30f80bd713cd8b8014ad85e56f71b24473b1735dae
|
||||
c66e91f4dc3a250735656457cf82e59300ad416f84a04882ff2c2a1a4205f212977f74198d901f51
|
||||
b6d6d78370194d5baf8d966b6c1245cf97a0fc193b666290021815a9cb693309394ad07832bfaf4f
|
||||
67ddce7550f9b7de6f4a5e9f0a5cdc943c06efa5b82b7908151d31dc943c90d69b2ae44a1e2a1064
|
||||
d770a4e4114aeda6f474e6f4f45d3b4264e26934a40ec518446dbe4dd9ea480c0f79d7ca06824297
|
||||
32cfcd072affd0efbb7415d1d81e64d04cb8bcae58aef8e5bbb09e8a8c613570f0fa997b3746b5ba
|
||||
7e97fe02d5b65b4ade204156d895bc41e34abd2979039b2db65dc91b6856cebb9247ea14e98c9b12
|
||||
809e484d5e4ade60b5ddb42b79684a5f028c2b7920cdb00de54adec045d4eaaee40d2b437b55f280
|
||||
9a39d295bc01fbd928bb92070e0e96eabb2879607c89baed5cc923e146bbd8bd06185a63bbdd3a28
|
||||
cd906abe3c08ab6a0cbb92877a2d4346da4dc963886a8bbb928700da10caaee4b1ee862c2e9b9207
|
||||
54eaf952f240bc567c50a5e4e10b723bec4a5e1f1e8cba943c34d06cbcaee43deedf8f4f77f5cbda
|
||||
ee2a387551f280d69c77250f25691446bb943cd4f3e821df94bc0119d4c51a2979a88d115bde7537
|
||||
6c3b66c75f94bc912ceaf8f2206b426f4adec8cbaeb7297903dce7ae0d4ac9c372e87dee4a1e21df
|
||||
604bc9032a3a97a5e4e175a649ba9287ef96196e4a1e1a683d71ad0cdd08adecba1bfa2ba29a5dc9
|
||||
1bcc0599970711f92f2164bd2e5858c845c91be4389dbb92c7c97401464adee3fcbe3e9df5f3f457
|
||||
89848b920754848f4bc9c31b24bc2e250fcd8ca3df943cf4c7ecbfaee46139cc1e77dd0dbb34cc79
|
||||
53f2508f456c0ee7831901ac7357f23053f52205da94f6eeaa9f94bc81b4aa3476250f5072f96029
|
||||
79404de270250faf933abe943c7c37c82ab42979ac1c5ccbaee4a1244d9e6dd7dd50ce46b6865dc9
|
||||
c372c8eefeb00741d514f3aee40da624f59b92870989bded4a1ea6adf7bc2b798ff3fb75f114196c
|
||||
2b9d9e585054a3562108ef108f24420247c162c8e00d150d37949d10c10c2458b8467608a6df2e1a
|
||||
b113adac69c015baa34d8117db476092439ef5d61a875e2f2d77146f0cd071563948fe9cdc3d2a66
|
||||
eb1fd9206b0ddfb8506ff9db15f52e9e1f5903f1388eaf8f3ee4775c971909ee2a29079f75908c96
|
||||
238a5d94bca1a0038ac1a3893359cec46817b101982f7a410bf27f8bca8092e9814ce2f049a880eb
|
||||
f62cc80c4a7f78ef43cb5ebebc5ba45b508933c65c4451b7c390c0a0973291d4b83e9f55e303911a
|
||||
b09603aabd580154860b003a8ed768058ca3621d40069f14b68af80d2439026a62aaac0c7f981fe0
|
||||
7c4ef60583f0dbccacfecb83286bac7472906fc37f9a518b95bce6684ac70dcddf46143ab26ac5f4
|
||||
c28a3fbe5a370aa27244fd9ead2c6c4dc6c28d3aaeaab005af1d4e31fe968212a04822467c8104f1
|
||||
892ebb1afdbb870e948546d82dd066990351a49685a6001db766de20eb6fa4e9e67c10a4fdb15881
|
||||
db89f82f403daa363c32c387c81433aad8b1bff471db82c470557dc74e614043fc7b80e21034a98b
|
||||
2fc84750bc29e783b0fc70d6e136841502227b5415041e728a7ba4202f4e1d86cbb1cbccff0d2af3
|
||||
3b11360ac86870e9e98f360aa0a8d377037c4245bf6d0cc1a4440512477c4111ac509220f0d8778b
|
||||
4ac729353ff0c1a034768839e826ba5145a8e390cd7a88a35c1e8ce603e6ebc04a09c8ea69903ec1
|
||||
e80b31fa2a6708ee801e34a894bc09751c639c4cd546c365822c53cc5c826b9a69bed47373597bae
|
||||
f9a7d93fec1b913ab1c832ae18408391352cc53c6259fb46c50f32a276c0077c34fb500882200622
|
||||
7360548ad9211bfd2e0a97f341c846d38a5957a4cc42e469cc1cc3776b352a4b548856a99dd5c0cc
|
||||
1c22eb4647b03a20e3a7b8cc3a5403768e3601ae18f02e336215c60304a2d168c8ac33acb6ee448c
|
||||
b99ad88ac2d0b527b53928ec0d760c249a725de9ae6020410dda3708ab0f564a7ea2fa3435491507
|
||||
832682830c50139d91ef6afbae0d0c58f571c3d0d019b5bb20a68313124f293e1c4127c9f8e2d166
|
||||
c6b9e230eab9a9cd4adae3019a93b559492b954a72f5956ac9e995345acdce18dd2688e3c61c217d
|
||||
416bd2a157adaba264e6f3415a17ed1e8908b841984f569c5e85d14d855e8fb643550a568f1ed912
|
||||
802cd9156dc6e43fb9599465b7493d7ffd9ed4f373fc6dfc10f8cfdfff1ebff873fcebdfbefd0616
|
||||
9d6313fdc5f1bfc8a98c1f7ef7ed37fff08fe1c32f5542c30289c82b568c2d0dc67d2a8a8ebe89df
|
||||
2831e076a1e0ec097295a529ebd20671567276be1f43b15892bdf144711742a522d91ab3b959ae82
|
||||
f9a690029862b0a0d74bcb1d3d367f428dc24423a5a36f4011c34371dc51d532a60eee9fde206fe3
|
||||
f19d0df5febc5d50ef78425671a4b9c387270d06d9eed0ebd3313f5afed39749b6e84aa9c54cdb01
|
||||
d6a9cf42b33905114e2131072d2acb16b4a355367e306554a54da2a9a3b4fa046da36d5f7b79da86
|
||||
af4b6c49b0ee0477b84f78533e3b1acc4213a14e004a4aba24ffcca13401aaac8f0ae57b1451bd00
|
||||
9dc1830222049304cb9069cb30c0774193c96db2f1f5a4df82f877980f6522519a2c2b66afee8861
|
||||
6d84e6907a6b107f0b7e76ba0cd783e4f74ef65d861a32dc5706104699ebb261c4eff070878ecb17
|
||||
109952cc7872348a509fc30d2f12f088b27234ed54e8c9e20890e1fb9092f9dd1982a9b0e158fcfa
|
||||
2d4c48c58cd7038982ccaccf0a61a2a5fef8ee1846e1bc20f6176cb4395f1e3c96b32a286035c028
|
||||
0728cc6a6ecf9e878d1597a37b4de187e6b4f560d113e4a904d4ac294c84493ebf89a734c3ae8ec5
|
||||
c107a3f9299115cd397a5857af4f579bcc0868661cc55da2482ffb6ca80d2db2b8bbba982d042dab
|
||||
4a177b5db2f95d07d2f86c7862f0b0a604719bd1d035593822b90a30b4a17b481421fe76e076bf3e
|
||||
8808eed42eaf9bcbdeb97f171198795e1a08f9b716ef060e3840a159cf4238973063fea5bb43d2e5
|
||||
eb94e14adb7e08fa6e0db6139dd59e39326619420b9a3a57c592861c95cc2d0bbec65837c897d22c
|
||||
f9f260579dc1fd7588b70ee1fe5d9869fd5cb006c264edc1af09c5119fccef6946f8e2b30ab1c816
|
||||
2bbb1db8ac2021731a4a1f54290d08dd561ea0a354b5a16695b4a1c8b08abae57032432707d42cf4
|
||||
010ab9315683d73646772320693f93cd38ad408c633933252c1737bd81bf90bf45025bb7f80a5a99
|
||||
98ff65467f96d70b82a21f9321cef5db926a73db3d6a22e075e482e27c219a02dfed7669e0d03321
|
||||
1a6d1ed3d096f95d6aa1d1e32141f31e402e96cc8a1441a401a112035396378b94e96105da40f627
|
||||
ab38e81574cb17520107ff6e5c1ee30ce6705a39c8fba64067da4d9080926cab908d8abfc56591c6
|
||||
f54ad3776430df51da0aed3468b0a0be69ee7b0c66d9ea70cb32872b4ddb6f71a26e18388e95ff8d
|
||||
b3c85c91cc0288ee22eb504000591012c8bab0e34905d4bbdd04152e44fb6db2685bbadf70ec33bc
|
||||
7b19e68f83987949b68d0ce26f71df8dbca1b8dec19560012fdba5ffb80fde453fd9ab4bb76bba41
|
||||
2efaacc656331b1b6a43574bdc9f65ca425fa708c2c899e896834194a65f3519cd9cdc7083e4cc07
|
||||
c7f0504f967f24b785ee0a68a85ed70d8bad795c67a77a060aad1c0c2a48222464b2d510e184fdd6
|
||||
0de0e4d4d16f63f2588c820aeb4cbcb210271281746f73677e3e9ddc580eec5c3fe3b7ba0d416a6e
|
||||
268f56892904e34fe2a69e516baaacdddfbbad9e2ad78c433eddf1f2e0cbd3997af9ea5312f6bb68
|
||||
318041766e18c540df20421426275af59a800a9cd92e8d9c22860e1123c98e9b0ebd1ca6c7a2fd04
|
||||
59cd156550430789b45e16210633ad2c110c36c6265fdf26abe5482b79bb3c48e1c9cec389803240
|
||||
cd42dfc042d1750e47c810c96358a1f3012ab11bd410d002a8056ff31ca2baa0bd72b86c9a21ef03
|
||||
1a23ba7bb34dbd6e4c77bc0f4482d86fc7f26964c496bf093d369dc94801b706a1ec924703c16466
|
||||
1dd6e6290155967fa23d7b381be60c5024b10ea08630a6ccaaa173dfd71f658f15ffece53c04aabb
|
||||
8241f6286d8371addd44cc069b1aa0d87bf3301dbbdf8096625113f4d5128a9e11925032959022b3
|
||||
6893e85dad494889f338db048b4184a5d405de3e6157881075a6f5d74f5cae9038ed8c8b607b0194
|
||||
141ce9a22d96561727c02603730df611f707c10c5fbb6b442c0483256d191450b8ac620c88e5cd0b
|
||||
0d6266ca02a89093833b97795c0d510f9990a70436a01ec167be5a3e38cffbade8bb65cee6ee1433
|
||||
b81c680f1ecf9ca03fb181c3234c02f2ccd50df70a0d370d82a73ee5e6c159105668aeaf7ee9b0f8
|
||||
5be4c164508e56112822153b59f45f448dd16d1b421680f517d00cd5248643322e3ebf243895f287
|
||||
d5f82674d862353d860b41f1db500971a1016ae11209622740897e8554049c71791477fa16c819f4
|
||||
50c49236c87a12c5a1773e188cfb80afc3bae361b4eead56ad8647445eb2bf7140880294a3773980
|
||||
d5f1c919faf1e9c96af5bb303c0aa48074d1ad7e173ade5cec4fb4a7469069ba9f3077eecf284603
|
||||
b90e2da88f5dcc73f8d2e1210735349b4cd55992085d0c0e0d78eeac8b598a3033a770f9452b4dae
|
||||
b32b355b37b1f7953dd3fcb729455bee33071b9ee42a521cf6ba5a92c7c35a88041b58dd81da58d5
|
||||
3032b2d7c31c50cc0210d9fd4ec8fadba3c7fbda834c31b693f5584182f21806e59ab32fa596c6b2
|
||||
a2405060d5fa159d8bb80d2ed6165c6d2dde662cecb5911bc71945c352f780c0a6ef4eddff980daf
|
||||
96f938eb5f590b0cc4420ab6c1301e8a89dc5771e9e62400b0931d0ec3129fa0648a972260b70009
|
||||
8b5a7c820617575ab55ac0292ff3ca0dede5e1bd4deca78f68f33369b50c6fb0b3e18ae61ce7d6e3
|
||||
97a7e3f0159587e1de882d5e9542da8d151eb02b85f47bc47647b19ddc117e6830aa8a8230ca19d2
|
||||
fd592b3978439190556c1fb6115659e8da7abc3d8bcd6be93b3b0a47cbbc2b3d99e2ff5de981d5bd
|
||||
b891ac072b1697c90b36efcf3e8cced7d90779535b0212a4e1a4e1059a1f86b738c7d103da47dede
|
||||
f0f2f4bdefa29f64a80dfdaefa4b8cf0e0f16979d5fce08ce18e82a5a0de46e2c97bbf720f57165e
|
||||
b49386febdcf868a5810172b4a33bfa81074501af80d75e399bde1e5e97bbf624fd4293df53a5a2c
|
||||
f59acb6d7a1aad3af909aa95b7e92719f9242222b9a3ca39f6ebd8de1044fa7f47656d816882e855
|
||||
7f438f4fd09eda6d6e9ef4ed2b57b422f0db6d45835c73d6fbe0b03868184fd09cc76ded3ebef75d
|
||||
f493d5f134c3c93647783cc7725bbbf8a072666ee828e1661c78f2deaf5cd19d0586fbed56623caf
|
||||
7b04d679dee14275e1f38292c7f9724fe00dc1230a7734f7126ef70f62c062aa4fd0d2d2ed0d0399
|
||||
b5293c41b3a7bfac9631b64cf6b02b9a830b1feb567a1c87af5c68705328d3d017cf6715cd73d3c4
|
||||
6698040fe4f20fc93049fa56b76bcecc727888f60f66820cc1c4e1c99c680b1e0c206c03d4578861
|
||||
ca2c9b0967b2e782956675cf41b6b12c98944301b5b97292114f98c924556dc1e7a964993c8f83cb
|
||||
c40c3b0d00253b0a3a24ce21a8baaadfa6b719c6518fc84c0c81e1ebb22bf1f030e0bba317136462
|
||||
32251e0d8cc59717ac468092943e320c3555131ce1347894aa0a682017f150f9ac9a8a706d673b95
|
||||
1bd6045ba7d0d5429ad9d5e6667235ec804dfd1d32a743043cda62d034f56e048b25019a5d8dcc30
|
||||
1802ead9cf7d6922ac6a91a33b194cbe656baa4bcc2dabbf73797598d7a151892bf4d10cb11898bc
|
||||
f24b71cd706dd4d6dd4600a51eccd7d315e4d9ca2a0d69ae329c24818b083995d90512a495b2a062
|
||||
eabbe462255583c4cafd6c7adc11efa29fbc2666752319884b3f1b6a2735485cea54113b70ed7876
|
||||
3251db565914c28e021ac96fab0c43123a1ac892971521135665cce986a194edc1a6f848acc76085
|
||||
27c5f7adcc2d2ba90cb29be15ec6c67ac22c5ae961c9b947874a717bbf79d38906bb021aebb0f275
|
||||
cd7d054886e65110dcae162da419684fd9a4f963b7ab1268a9c52f2b048b028a22cdc0b88e36bc8a
|
||||
a818d389b21638c87c47c9db04a82869dba1d7a733f5f21e6a131b65ebc3fe6ae7c4c6e59e73bfb7
|
||||
ce4b570e88be7963c7fe2ce7ab7b8a4ff4f9aa2398bab1a283665e5e3626f05ae9d19a8ac72b0f41
|
||||
b92c768992d6595b45e64cc30f4c1ea0242cc1d5ed695bac65f7eeb569d19f443d8326abcd609048
|
||||
732511e9e81681190d3fd9a25640a55c3cc7b32143958b222ec30f0e174dbf5f7a3959615fac00f3
|
||||
0a23541cd14124102f699b802c6ea7b641af4f67eaeba40954929ce6f83bc51ca04346ab2d1c02c5
|
||||
24e718f58ee6e5c13e97054a2ce615ad7d412d73ef3c769eb4e16b8a1842b7bfb8a32c2c2794d4af
|
||||
67164b8759aacc0d6d615ea5e60233f6eced114da9d9ddc680267b43999ee5b0a3661ca341afcdf5
|
||||
86e28ea40b3af22da60475cd6275a7f605edf7e17a320e2f1e11f587c642d103bec742455057a800
|
||||
34dc3245b9c24fd0085e0ee694a55ce4830764e573180f248f03505a190fb4c0af593ee07516af8b
|
||||
726238889f40f82d8cc191c18d8ebe00451f191b1941b797a9f447842daa64c08e269ec6687964e5
|
||||
4d4e760c9400da15fd9b2f67a48a9159a738153a0a31157af636b42124264d35c1a4a0137d034a03
|
||||
5ddb50408d01cb80680c3cfa0e4e717b63ee328203ad2cef0bf438c5061f1c8de7196aa4e0731154
|
||||
d9b2eca16a055c12fc2d2abd51b2eb24af4c7cb0c8e0824cead2ef50ad6dfdd65196c30e7c302b42
|
||||
86ba197f0beb1c6df9282352953dc93617de689de275647fa7385198627edcc2808c9b0479a3a082
|
||||
fda8b16af268f422e659fe560450285101d701c78a64cd805aafd5bf9b7588757a87f460d7d02338
|
||||
0c46548e1519fea042852e5939269a5dc736cb2f7aa385d25c504489d18fda293b67cd32990f0d4d
|
||||
484ed472e059dbe1133b8eaac8a27a3c65d0f2a89856a09d053ed8459c6e809a228f90040bed1650
|
||||
89d37a4d79df7e6b299a18b1795c9211dcdd62d1ea34d626425572a643fc2d22b65aded0972bbaf5
|
||||
fa711fbc8b7ebabe2489a7f8b31a5b4401e3a80d5d0e7d4739c6f24203aa516b28640a59cc598fb6
|
||||
d8a2db5699ca1b061f2cacdd06a8204f0e106bed11cad117398c2ac15674f455d9645245be743a6e
|
||||
e52be4746f5734772e3648e9be932272c7d91449674ced95c2003447b519590a5c2ac828e2a6ee8c
|
||||
102f1a8248b51150b22903b7ba8c6940c3d08389657db5cf39ddd309c81cba4db7a12f4f67ea1df1
|
||||
e3bd133231cbdcd6e56cca56c4719c6599c5e29f0ab6005a547d121540a06701b21af228a984cc40
|
||||
1ee583e728f668f13ddaa1a345a139724d74c58a132a501c23f24894caef107f3bc45eba3f88d227
|
||||
d3a00cff45e465a69dcd9876ed30e4512869b4336338f141ab9286f0d25eeb0d4a5572f0150db5e8
|
||||
b7461cd1e9169f847af123aee7bebedb72b0dd59a735b0a4e40745e710406bd7b953c44867fd9db2
|
||||
80e0ac406e3a20ab10caa335140d9fb25c497031edb788bfd09eceb0da174e48946307c1b0105122
|
||||
c9e7b5b471a2165bdaec7bb5ed086b0b96c7945104741b7db60b448686e867b0a32c5d16f8919882
|
||||
5f61a508ca4cf1e05dd7148405b489faadf12c2d7cd08a85802f029e2aae3e05ac3556078ddedf19
|
||||
9a3d18b41d3bb21379910f311c61f8a26c0e0ed91c25f170ad07219d489ce7dd7e2c584095a2095b
|
||||
17940b12e929a9b66f23120001296f4e26c6d00915669bf0f849ca05e1dae8bad858b5d276172e0d
|
||||
ad18f087d6ae1563073452b2baad189556c3f193525b2ba6ae5304c70da0aa680c945e93f0314471
|
||||
7f42b633dbea893d08db941f68f59093b5ab6d3d0715a1b3d1efaacd8a2ea3cc284f04692e9052e0
|
||||
32bf42a9cfe9bf3dd1022d5aafd3491f4144ab59576a14a06139636860940b12273d02fdd90d45ea
|
||||
e03ed0ce04dd4bf78b03d9d436eb59954e7a52dd446e7439c7798a4ecd7a56e00488278cb9323231
|
||||
2ddb9e4bb88a30c5418e299256600832754b93a146b713215342f35d0dd7052033eb7726e45ca1aa
|
||||
6039fbed891e4334f96095d20ac292c0951a452e4888fab5b5790edda85d29b05cd276a0a2b44db7
|
||||
852f422f54b35abb1abe04972646b0ad34ad29344b059dda32aa38b4e6885ad2f920b48761825a6b
|
||||
411bbd2bf4b783e9ba673f11624ede13d468c301731c594543c00ce32777d7c72f4e8d8c3405f770
|
||||
530d3674bb65914a96ff1b74572360345384fe73f4f206189cc27c1fdd84b5c7f6eaa6ff4255e80f
|
||||
4fc7b9a9a04cb9a29f094a5f0a1212135c059d99478ebe091d2ad0e268427eba4ac040de4134d906
|
||||
25288996d472a258dfa357bd71473b6eeced23191261291fb6d638f47a69b9a37823792652d87f2e
|
||||
d6e0bc7fe402b135affaada1def2b70bbaba787e640dc4e3381e6ffce7dbac928708e1c8c7c10bee
|
||||
82f9bf35ab15d152ac34017b4652edae44218be5591c65aa5257d183134da0de884c37549448bb40
|
||||
59294618b11345002a8a67be5dd1017d297dd83ec208598cd8d91a875e2f2d779473e03c8ee7cf0b
|
||||
09defbfe910db2d6705617ea2d7fbba2dec5f3236b201ec751b3fa1f5f35b11d85825943e1984998
|
||||
c7d3ff347b2e3544ba77cb0d657d414c2c842615ca749409684139b750808e9f6c10443553d93714
|
||||
063c448d6eaf8b4cc83c46fbfcae439c2c2454d4b43f08d2ec1edbfeba13dabf7ba2ab81e7eb5637
|
||||
1efbfb645b3d1bdf3fcae88767a3cfdc660825080de7e8c324c7145e4713ab17d268263a807981b6
|
||||
51d850c4fb2295697b5d9200ba7fd720fe16c164e435381f4460364b229caf3ba1fdbb27ba1a78be
|
||||
6e75e3a1bf1afdbfe39fffaf3b2bb22c8d326d21eb66339b0e0ba45be8cb05c57f21590128d92a48
|
||||
c7e0288c20155172657f165051722daad622936f8710d92f82aa0d1d55f1fe6f77b422a86cfb0872
|
||||
031117bbb5c6a1d74bcb1dbdf40741b20dcc3897fe2cf4d29f859e0d42186340b6c1156a59298a1b
|
||||
0a093fe772ed0f729323bc7bdb4720bbc335bbb5c6a14b7f167aed0f0b53c9cd79cef073749fe127
|
||||
a7f13b3e8e3ffe42cca807c13227e4a62b749a44d2fbb35c9aa36f424720d984a3917e3996f182fe
|
||||
030ac11d625e4873cbbca1585c48327fbba319cee9ed235c6fd06cced638f47a69b9a36f423302f9
|
||||
b79f23352cc4cb472e105b636f34d45bfe7645bd8be747d6403c8ee39353feff7e56b547d2bcceea
|
||||
422fb3bad0735a14717d1cee57a85a72cc86c2d41f46b9ce2ad0d66d0aed23093edd32b6595dd065
|
||||
56177a99d5f3e76b5ace8f5c20b6e632ababe56f77545d3c3fb206e2711cf7dbe34b3d3f43a51961
|
||||
99421a8699b003930616fa7241b3b119be5dd1284325a121de1e58a2718845b2f01b115175871824
|
||||
f9c4a292e0df40cd745acf8b5e073ffcac843a79fe01913fc58cc451a527c15d0a5b1eedc62a1a4a
|
||||
7e9522e374625d880599717a447173ac07115a3fbabf6e0aaaaaac8eefb636dd03336814005a22ad
|
||||
d81955fbecb791b60d78604a3306aa9e6d412298392cb62a90e145c54dbbeed4cc09e510cee33cd7
|
||||
6f85ee73929878d3de45c1c512edf0d950b89b5a93a151a2504646f194a52191ca8d1350d3b2791e
|
||||
d279143a463103671836b4399ba5a132cf3a9139252d9ba7486bc14b45ee3d74663475b18a8791ae
|
||||
37d318616eb65b12a34dc718d08e04503aac44a244ca91225763ea756c90ad90a43ab0eb41fa6686
|
||||
411d3908742455b2f3e0bb28fa636e8462ba130adb263d1882846706cdc15b85483431ec2053c10e
|
||||
8988d89a60a3c07a93802293aa397c85ab1a1557922d748a8aafda8f9339d99a102ca5738bae69db
|
||||
20100be7f5dbdb5efe720a2c9aa1e8d0c4875976f4b3997e45d24342200517d03438ba2feed4641a
|
||||
54a8267a93f0229aca44c294c98618ddcc5662b70727f20769792bd2480bbc9532efd5d9e706bdca
|
||||
92948c0f6c3d98bc1e3d5e07bd35662769e4b6cdb608d186946d0167d8a3220956831d5313b52caf
|
||||
50b58ced2b9a8b3dd852b5818960fe8ca45b1a3e4fa535ff2d49d66c7f4f3590d941841a4f4c8c63
|
||||
509b69e40dde5f2bb34d9b7991ed72a8341aec2ad94cb0734121ba9362a288c5b4259278ae304fb6
|
||||
0aa2998da65fd554866db7b4e426c9d159399546e02c67014362a9a83498dd760854ba63fdf64429
|
||||
a5d003a3e2cb305cc72a0796626d01a5dca79be7b34ad0c1dc89b04efab454491447d51cea461699
|
||||
5962cce272524c556d0703cb345b6d53b15c18457b324783ea333b64e33c98e3b93dc81251d69400
|
||||
aed19841e1105ccf6b7d4904b10b45286a35610ba5ce390487ec2d71a092e215c3174008f4d1d606
|
||||
dd4b406316d915d0c42c96445e39b879b2872e018ab4c5679258db771908e02b66061bea869f000a
|
||||
aa039d9af8a0380a74522cc876a689b6e78341b4c99a3968bb1c67d970188b9297b3a0e762da6ecc
|
||||
f45023f398470779f472be415479dc05b8d03186dc87c72c341b186880fc6e49b60093b116a38129
|
||||
56b70c448e55902f8150879f0efd650a1ad77308e6ddce8c41b5559e1073cb8daef01a58f4232130
|
||||
966836e02215052ad0de868942ac24cb85d0b2ddb92546497cc518d3d028dfd5e04fc9760de7cca3
|
||||
83b573d27ec46fd026306d6896838baf0bcd0eb60e3a388a8a16df84b80a3f3d51ad2e060f7182c0
|
||||
84dca43cecee4bc8418f947eb2dd72359a33086b522c85f85ca7848b2cc311f7db15a776aff5760d
|
||||
674f10dceeebe9e544f19199e4872b64b640eba6e5d6caf72db635c81853a7491acdaed2929afc70
|
||||
b7bbeb6b1c1cc727187acdae21d7ebf305dde52a643e8b3bf31d1461b039b82b63cc36df47511959
|
||||
652af00651d5be83d23795e7ed0defa05441d61b1454fc1e6a3d7e793a0e2f5f55d6f0388941405d
|
||||
6e0379a2fb9055dce4ad6fe89b1b59ca3ee8118c6b7d9a6933803a085067ce7492235ebb0aac9fc9
|
||||
6daf24ac04d4451188eb841a1332a7245ee1b41e16540506b196fc82e2f15ac1ad17ec0ccf6005ba
|
||||
42b39bfeb6a1286ad7021f346a4d968b87f286ba7d6227a50fd5ee59d6fd9c763e546496a3734d17
|
||||
328e0c64f06054c47fcd096f2a968e074574414100541b80aa6d2126a5e87587b469670d992eedbb
|
||||
b11693672238cf00b16c87443a301971acba64bfac4409fe96c26dbe2d9e6ac5106e68562ebd642e
|
||||
50789a89eb383afd64cb66e2ca3262e0b6a2ff140c7aa64a44f89a6d96c10332bd8b48e900d47a34
|
||||
69eab82112a152a24953b998785c498564bf4dd4b42a18d2fc232919c45f9c102d09d3b8c816fa72
|
||||
45b75e3fee8377d14f9797f0cec97438a0b195a4180bb5a1abac25be508c715401622c36446e711b
|
||||
553f63b25f59aa6569e1ac8780a1dfce380d8a080bc74486564c2499c97ce3d88531f9228ff6601a
|
||||
fee031dae106c5e81be444e1904580606520a2eda482aa3d6ccaf4a78ef11ddee611dc881ea0b103
|
||||
aa69da5e1d903a39045d22675bc67ba021b888c9d82c1a574502e94732c779b6b641d7e9decfeec7
|
||||
993a83c88e3f2f7ff2ed37dffdfccfea3ffde2d7bf7cf9fef73ffcf8b39f1dc0777ff5fdaf7ef8db
|
||||
1fbfffd7b71f7efcf69b5ffdf4fd7ffef0e1fb5ffffa37bffdfeb73ffcfbf1571f7ef5e30f3ffdf6
|
||||
373ffef0e1a77ff9cdef80e047eb07df7df78bbffcd36fbff9f69bff02ce1ef160>
|
||||
|
||||
endstream
|
||||
endobj
|
||||
5 0 obj
|
||||
<<
|
||||
/Filter [/ASCII85Decode /FlateDecode ]
|
||||
/Length 47
|
||||
>>
|
||||
stream
|
||||
GhOt'1B7FZ"#S^CKb'rAF*Y=gh1H.G'[hnb\H#CN$X!~>
|
||||
|
||||
endstream
|
||||
endobj
|
||||
2 0 obj
|
||||
<<
|
||||
/Type /Pages
|
||||
/Kids [4 0 R]
|
||||
/Count 1
|
||||
>>
|
||||
endobj
|
||||
1 0 obj
|
||||
<<
|
||||
/Type /Catalog
|
||||
/Pages 2 0 R
|
||||
/OCProperties<< /D<< /Name (DefaultOC)/Order[]/ON[]/OFF[]/RBGroups[]>>/OCGs[]>>
|
||||
>>
|
||||
endobj
|
||||
3 0 obj
|
||||
<<
|
||||
/CreationDate (D:20230225224503+02'00')
|
||||
/ModDate (D:20230225224503+02'00')
|
||||
/Producer <feff0043006f00720065006c002000500044004600200045006e00670069006e0065002000560065007200730069006f006e002000320033002e0030002e0030002e003300360033>
|
||||
/Creator <feff0043006f00720065006c004400520041005700200032003000320031>
|
||||
/Title <>
|
||||
>>
|
||||
endobj
|
||||
10 0 obj
|
||||
<<
|
||||
/Type /ExtGState
|
||||
/RI /RelativeColorimetric
|
||||
>>
|
||||
endobj
|
||||
xref
|
||||
0 11
|
||||
0000000000 65535 f
|
||||
0000072613 00000 n
|
||||
0000072549 00000 n
|
||||
0000072749 00000 n
|
||||
0000000010 00000 n
|
||||
0000072404 00000 n
|
||||
0000000322 00000 n
|
||||
0000000362 00000 n
|
||||
0000001057 00000 n
|
||||
0000000517 00000 n
|
||||
0000073093 00000 n
|
||||
trailer
|
||||
<<
|
||||
/Size 11
|
||||
/Root 1 0 R
|
||||
/Info 3 0 R
|
||||
/ID [<ce756927c1f0a6c2fad94d0107eb46d5><ce756927c1f0a6c2fad94d0107eb46d5>]
|
||||
>>
|
||||
startxref
|
||||
73164
|
||||
%%EOF
|
1
static/img/hardware/heltek-wsl-v3.svg
Normal file
1
static/img/hardware/heltek-wsl-v3.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 41 KiB |
396
static/img/hardware/t-echo.ai
Normal file
396
static/img/hardware/t-echo.ai
Normal file
|
@ -0,0 +1,396 @@
|
|||
%PDF-1.5
|
||||
4 0 obj
|
||||
<<
|
||||
/Type /Page
|
||||
/Parent 2 0 R
|
||||
/Contents 5 0 R
|
||||
/PieceInfo <<
|
||||
/Illustrator 6 0 R>>
|
||||
/MediaBox [-0.0000 -0.0000 841.8898 595.2756]
|
||||
/TrimBox [0.0000 0.0000 841.8898 595.2756]
|
||||
/CropBox [-0.0000 -0.0000 841.8898 595.2756]
|
||||
/Resources <<
|
||||
/ProcSet [/PDF]
|
||||
/ExtGState << /GS10 10 0 R >>
|
||||
>>
|
||||
>>
|
||||
endobj
|
||||
6 0 obj
|
||||
<<
|
||||
/Private 7 0 R>>
|
||||
endobj
|
||||
7 0 obj
|
||||
<<
|
||||
/AIMetaData 9 0 R /AIPrivateData1 8 0 R /CreatorVersion 16
|
||||
/ContainerVersion 9
|
||||
/RoundtripVersion 16
|
||||
/NumBlock 1 >>
|
||||
endobj
|
||||
9 0 obj
|
||||
<<
|
||||
/Length 481
|
||||
>>
|
||||
stream
|
||||
%!PS-Adobe-3.0
|
||||
%%Creator:Adobe Illustrator (TM) 16.000000 Exported from CorelDRAW 2021 (64-Bit)
|
||||
%%Title:37.ai
|
||||
%%CreationDate:
|
||||
%%Canvassize:16383
|
||||
%%BoundingBox:0 0 842 595
|
||||
%%DocumentProcessColors: Cyan Magenta Yellow Black
|
||||
%AI3_ColorUsage: Color
|
||||
%AI3_Cropmarks:0 0 842 -595
|
||||
%AI3_TileBox:0 0 842 -595
|
||||
%AI3_TemplateBox:421 -297 421 -297
|
||||
%AI3_DocumentPreview: None
|
||||
%AI5_ArtSize: 842 595
|
||||
%AI5_NumLayers: 1
|
||||
%AI5_FileFormat 2.0
|
||||
%AI9_ColorModel: 1
|
||||
%AI12_CMSettings: 00.MS
|
||||
|
||||
endstream
|
||||
endobj
|
||||
8 0 obj
|
||||
<<
|
||||
/Filter [/ASCIIHexDecode /FlateDecode ]
|
||||
/Length 22237
|
||||
>>
|
||||
stream
|
||||
78daed7d697322b9b2f6f78ee8ff40818d8d31502a95a42aef6cb6b1f1beefc650186c36b3ccd21f
|
||||
ee6f7f33a55a449bbea7e78d59ee89983927c6f094a44ce5a64c49c5cc1bc767997ca3ffe26568d6
|
||||
fcfa657ebe38f46ae3fe704582b14aa733198d8788c416cf0f5231c2b3a6fc2756fe6dd01f8ebd46
|
||||
ac39ec7763c5fed0eb944ef35731cbb4486c91db99427b9c8201cfdbe38eb74245b6d60ec76ff77b
|
||||
a5dad85b9140adf74b6d346a7ff35608a70e45acd09ff41aedde6ba1ffdb8a1933638e6dc598cbf0
|
||||
51a95f9f74bddef878d8af7ba351b1dfe90f472bb1e2efb55eeca0f60a4f6ab11bafd3e9ff1a2b74
|
||||
6af577e893afd027d9ee62040da02d7e0ef0617fd0ad0ddf47219d8c22840fcfdb1d4f67417fe475
|
||||
071d98023eb661c219cb15b1e083df2662d5fba5edfdba123becf73cf98c3de587e3339c7230b598
|
||||
8f1f4ebad5daef1e4e89f8d03670b1dd1f766be398257594afb86a3e07fd86d7091a12eba97870e6
|
||||
8dc72037e86d9ad98333294befb5dd036975faaff8b5dc6b445fe433e833197cfd72f7f50b75731f
|
||||
93fed81bc1101d2fe6f2dcebb0f68b17239693cb37dade109e8c72f9213cce15eb5ea3dde9d472e5
|
||||
5a7d32f67287e376a7e1e58e82665fbfe42ec22e35d5a62687cbd5eaed2148a6d9f17ecbd5a2366a
|
||||
809a1cbd1e8ceec99e3098a7fa7a5a5f2fecdb56e3b7559bb6d6a61db6e9c9f161a4be6adc578dfb
|
||||
5ae37ed8b8af9899a8a613d574123585612661e346edf5d51be61ac0a2e7e5eaa0f1dc68ec0d3b38
|
||||
919157476bcfbd4c3a1d6f9c1bd4862884412b073dbab55ee3a583921a821eb08bd7c8d5fb83df87
|
||||
edd7d638076ed7f0d036738a8b905eb6d71f37bc662e5fce1d8d3ab5510b4608b001f86bb7dd9b44
|
||||
ad82bfbf7bbd5c77f23dac75fdfe6f7fd8687a3056bbe7e1e76e6d549f74f04bd0a0067840ff63e2
|
||||
8d70a28dfeafbd9cf75bbd53ebca8f6068ed7aad033dc26e4db0dc766f0623af1350b9d7ed43bc68
|
||||
8ea36f4a1ae0d2edc1d4ec9552f2beddf97fcab9beb4965e03f8ca795df9471a35885a8e1b7c51c3
|
||||
ca6f11aec046fb97b634955076a1ec6fc24fcd614da9b63e190ebd5efd77c9b1749d907ff94d8e09
|
||||
8335db3075df58807e6e00d4fa0d3417a9f8c8f35e6a232f64537e81a6e3567f3202838181f29ac9
|
||||
96b5cf796527e590c5b2125145e19529f3ad84ad2aaad5916a75a40d184cff48b5b8502d2ea6c6b9
|
||||
50cf1aa83588e239adbb5249b7561fa203401094cd6a75e921cacd9597c330ad49efb5369c743bb5
|
||||
c9185c1302e57bae5e838e5fbf9c97bf7ef123aa8c57e55ebd8f8bc34a0ca2e0f0c5eb640afd4e23
|
||||
a67d866096d39fe5f47618cc49ecfcd61f12e2613060ec7c38f1ce7f1f783fa00681afd639388ff9
|
||||
7f2515ff732e78f6b3a3bb6af4608980d510a430ff940b80d88afada9636561bfeee03d707d54388
|
||||
fa3f78bc1a5bfcad0bced6f032b53138ce0be86b948a2dcbc6f9e1b0f6b70ef32751d1dad55b6052
|
||||
e06c7e2bffc968faebff79b6ff8221177fa90d611d3fac75bd542c773646ef8a1ae3bf7af2512027
|
||||
bdf9f23f60397f40387f394565432bbffc94e0c2b6cb7f236f3fcfd91fd4e6ff66502ba31aa4b81e
|
||||
462630959fe261f93f1b69bbf6d2f160bc3f79b89f67ef9f76febf58a37f3dffa34ebbeefd37c9fb
|
||||
e764fdb779f4afedc6b8f5533cf92dff26be5a1ee6a93fc558d074f9bf75b984272ffdf1b8dfad42
|
||||
a67e04097abbf7a745ceff1cb746cd5fff8cf0d7f5c6b50644e73f63ac44c3cf3b7f4aff5aeb6599
|
||||
9b3f9158ae0249ebe27bbe720c252eb0e60d47e5ee8b879b0dcd76c7dbf77ef7fb5bb39a5eb5daf5
|
||||
d6a7a65458416bdcdf8885c9b1df32865b2881720a6d6521b15cfeac58a938ace4d5d12cf1a96118
|
||||
e5897bbc5778326e3636682977b4ebae6ed7e687eb85b3e641a24a570f0d6378651a497bf7746be5
|
||||
686becb6b70feebf39473793d67672a73af8f6ed9b61a49e4b86b1b410378cc5bdb8c3aae5a36fd1
|
||||
3f8a8c616d0d4f2a043ecc0df1eb795e3cbc76e0c3fc09fc2beeec14b6bc1df8946ce153b675f9f0
|
||||
91820f0b0bf26bf9b95ed9c3afabf26b813aab9bf8f548353ebfadaf28320b7589e49d133a800f8b
|
||||
711c7c2def1cbf35e1536a1dbf9eef2c64f3cbf069099bc44f77e6df0f297c5a3ec4bee5627b749e
|
||||
c3af924f56ca9e6646f02143e45320b35df4861f885c2092293f6f7c2ce2871afccb6505abf5328c
|
||||
be6e9d73d68dbe6e179b0febdff82d1fb4ca2fe7667c7bad34c96769757389167299e3fcf9c7687e
|
||||
bb5c58b2800ec87bf1a1fc32b772576a2eecce97f627f4514aed1bd2a552fce97cc26859a50a3db0
|
||||
4a73772be6f32539fdf62d39981b6e71bed77ee5e7999b5bab6c640ab9567723ada9e59b54319041
|
||||
fd5d347dfd2dbddf4a3c6cf00d1506d249c451d6e9a710dc83492eec3f02f8de0ec0f80aeae7e809
|
||||
9e544e235685341720553839db74e8fd6196ec146e6e4ff3a78dcd64a19c4bd8dfbe2d665f3f1ed3
|
||||
a58df7f572b27fbdb453b8e7cf85f795c6f2d6c74dbba0b11d0d7b2487d526df48be7fe4bbfdd709
|
||||
2a696dbb72c4f97efdb2d85edf5d49970faa64eb63b32ed2e5eaf621a77393fab76fb9f7bd7d23bd
|
||||
311e0a5f44bdbd95fcd9f256afd87e6d8c45f77e235bf2469ba27cdbdc2e6cad1cbebde7f69b695b
|
||||
74efc885b26c9d9f83d5ca68f7a8fc622e4ff2fb37892628f32d5dc8b82777a54aa3b250e86c7568
|
||||
a1c3e65f84c88d9a343fac5748fadd7d400f8a9fec01e16a3f7f36315ae942d96aeee4c93093de2a
|
||||
2ebc605dec64b2f15233734f4b8583838d995a9566fccd48a448c648e4ea5d23ded87d338cd2950d
|
||||
663b2c1ac6e6de18d98cfbda4a2d3dc48dd4e1f587b1b4e22e493357d6004dbe49b736161ff05b62
|
||||
7bb1ef98dff855a693de1aa55e1d7c94914e9d34e2c9871523b15c3a34e6acf48b312fc07f93eb47
|
||||
cc585831778cc5cdce9d912a9ff58da5fdd5ac913e89178ce5cbc74b74d6cc7df9cdc8be645246ee
|
||||
b5bd6e98dde313838c8467d0c478cea0930b6eb0e4da9ec197138f86204f43c3d93aa086bb6def1a
|
||||
2b17c6a3b15aaf8f8df5e495303636f68e8ccdcbf55763ab47d2466165a96414ef124f48a69c1cce
|
||||
19dbc71f5bc6eefce0dea81c0d12c67e669237aab5f927e370339d328e93bc629cbce4dbc659e5c0
|
||||
362ecceb0be372f21637aefbcb65e3f669bd65dc5f5f08e3f1a4736f3c9fb365e3e5f2f4cc685c0f
|
||||
e68c6663a38a645afddad8784f9abb4677e5e6c3e81f65778c8ffad587315eb676e346a536892706
|
||||
858378b29048c6175bd717f17471d38c6746f3cf71f3a0b61aa7e4a01b676f2b10400f1716e3ab2b
|
||||
bdfbf8c6426d2dbe35bcf988175ba7b8691ddf7edcb7e395874a275ebddf3d8a1f350eecf869e7a4
|
||||
17bf185f9ec76f4c18e83edf89c79fce8ca7f84b174837572b56bc7d016374138387f8e0d8a9c4c7
|
||||
0b173c113f1bce2592f6662b916abf5c2532677c3741e88d0364122c49d309a75b1b25d69e579b89
|
||||
add3b7db44e970ef28b17b666e27aa57efeb89e3fb133b71feb69e49dc24520b890777104fd460e1
|
||||
4a78af67ddc49bb5ff96e89d165b895132ff3a173fda6cce2d2c175fe7d28f3bad397375ff0dc8cc
|
||||
31e3a23be7de3f7dcc6dec0f8cb962892cccedd27c66ee207dc5e64e9747eb7357d9959db9fbdce5
|
||||
f15c6d257137d73cd86fcdbd3f8f267383f14e76de589daccf27af0fabf3e9c9c2fd3c39acf5e6f9
|
||||
389f9e5f3b4c6ecc17cca6dce9df699db4e60ff6d753f36722bb357f131f5fcf3f76de3fe61b6f6d
|
||||
3efff6f47c3c3f68d6bb49a351b3930bef8d936436d91d246d115f4dae1c93bbe4563bbf98dce197
|
||||
fbc983ebf75ef23cb9bc9ebc3dd97949d6ccb69d7cf5d81d9049f64a57d9e42493ba5a488eae320b
|
||||
192f77bd605f3e6417564f56ef170afb7d7ba17274d65838bedfd85cb86a2f0e161e27ad838526bf
|
||||
492f74ab95a785f1fbd6e6e2c2c6bab1986dbad78bdce52b8beb6fce78b1bcbd7abd7800d111c82c
|
||||
9ef7ce928bf7f7b5fa62636f505dec144cbe382eecc7530b05af9eca15d3c72951ad6ea4361f47d9
|
||||
d4ce4769943acebe3752d77bc5abd473dfd84fb537ce37531f1d872dcd973ed24bd9e45d62893f94
|
||||
3e963677edf7a55d3a873b714b27c97e6de9a6ef3d2ebd746af74befed87bba571ffe92e9d4abd3e
|
||||
a42da7ff945edd8dbfa44bcf66337db85ceaa4af0eae87e95a7c349f7e3b70b2e971fc542c2f3e25
|
||||
0acbd676e570792dd3bf5b2e8fb6dbcb47f55162f9e6e1184fb496ebcfb4bcdc7d79bfcac47be7ef
|
||||
99ccfc463a235632f94cfef0e32ab3df69f63397ec9e669eefaf0e32efd9d35666f27a6b66d385bb
|
||||
832c4fbe74b25bad81c8ee5f2e5e652fab6b73d9dafec56eb6b3d7ebe4e27b742d97393dc5f89973
|
||||
1a09962b4e761f73472b639abbbdd87bcc8145b2dcc7f1e38bb9b8985f33e945e2dddc64b56d736f
|
||||
7c9c302f5f4b57e6cb0965660f0893f9ca629590c3548eac9fa55aa452330fc8455f58e48514fba4
|
||||
b77b8c31cd9aff68e72d6b7d216d6df4cb1d6bbff878635d2f6577ac867726ac8f6a6281a64a673d
|
||||
caedd4332db2e70b7a2c0a7bf4c19ddba26fd557c78e5f1d99766e5c4cdbeb6b2269efdda4e3f6f5
|
||||
d2dcd8f66ee646f688ce618c66e9f7a53173af449ced148bf3ec22779462f5ccabc93e9697045f5a
|
||||
2a6c72873ceff2ed42ee8c9f9f9e3df197ce62877fb83749b1746f73e1a61adb62e771ff5a5c6e58
|
||||
efa231ec2f8951e305969983a32b676d777700649cfd62c1766e37560f9df6fed69b9b38dab25ccb
|
||||
db3f760bc9cb817b526eadb9cfde1c78beb3b6bcb2d4be395959d98e1b10c13677566ebcd660a57d
|
||||
be5e5a9ddbeff457ede2cef66aa9b4305a3d2f3d54571b577b0babe39a790564d6ccc5045bdb2abe
|
||||
b5d78e5bf5ca5acdb94fad7d346f9fd7339b37c5f58da5466afdb0d6aaaf3f5dceedaf0ff618dd58
|
||||
ded91f6eac975e1e360ef7972a1b4fb7076263d01e24373399e2fbe6c6e1f061f368503ddeac6d2f
|
||||
973687839a8bd954ee6827b795177461eb6c71ded86a74df0779e3f1e13d4f6b77ed7cb971f39abf
|
||||
7abd6ae6df166aadc2c2dafb5bc13d99740bfb037358782cec240a83613d5dcc1e2ed162deaa6e14
|
||||
cfc6e3bd62f365e7b234773d6994c4d121eaa6b47794cd961eae5af9d2e0f9e0ac9c4b6eb4cb0567
|
||||
2955beb837f2e5f652f7667be1ea6db4bd9a6bb9db87defbc5f6cbd178b463aca4d67758c679dca9
|
||||
a40ed33b0ff3f5839d8f746ab86bbafbc5ddd2f1f07df7ba55ded8ed2e75f084b2b27cbebf51c9a7
|
||||
526f958bbb7ab1f2e6ee0cf75213eb706fc34ba4f7cece5b0f7bad4b6f637ff1e86eb4bf7efb78b9
|
||||
7fead55c089eed7175d119de54d79fac42f56c21bf546d5ddebd1da4887179b0d12e140fce2fdad6
|
||||
c15b61d500328769f1da3accf3f2dde1154b1c1e76d7ee4b47d983edd5a3d2a3691dddc527cb471f
|
||||
e5f78563ab554b1c5736ef27c74fe3c7f189f1d09c9c38dbfdf8c991bb387fd24cf3d4e962eed83c
|
||||
dda46fe2f4d2c96d9e760f2ff6ce725ef202c89cede44e5fce1e8f528373237e9f3e77ce37d7ce8f
|
||||
57168fce5fc7cd978ba5fa65e2a270b7bf72717bb67572313c5f7dbf648febe4f2a0b57170d94c96
|
||||
dfae528533fb2affdabcb8ba75e6e357c3e646f99aef3ebc5d1fa51757af5fdf0fea40e626fd3c27
|
||||
6e4a0f172f370f7796736bd4dacddb955675f3f67c79a57fdb2da7aa77a4395abadba7af8f778dc7
|
||||
978dfbd47addb82fceb76fefef5f061b0fc64336f9b07ab8f2f2707172567de89f77c4a35de389c7
|
||||
23e3b6f9d8164b389ba7ecc545f9a9b248c453fdba957e4ed995c973b147de9f1fefc6f5da5ce5e5
|
||||
beb6b9757955bbdd3a3eab4d2ac7272faba7c7c72f978dcbe397e1d2cb69dd391c5fd6cf46e4aede
|
||||
dfafd41a7cf9f5ad715237878deee55dcab3f74c3c6df78ed76f0b5ea7b87adaa4bb1ff5e6d1d5f5
|
||||
a4f9dedca2afd4a295d7a3b3e4d3ebfba86fb4e8496fb5759ceb5eb63aefc361dbbe4fadb64f2e56
|
||||
eedabdc3eac21b3fae57deceeed3ddb7c16b65fddd4d761aef97a5bc781fbd0df0e8a5b3563e713a
|
||||
3713e275e3d7dd8deed6da59b7fb686deff51616dd855e7981dcf7ea3973bdbf2cb2e3fede2ebdea
|
||||
b75e36d606967994181c9f3d3d0ffa6963efc379de601f57955a7c68d0ac37dcca3e5c0e9f96c4ce
|
||||
2835df44f7fc9f0dbf869e5dd096643defd7d9b9c3fef8148ad861c36bf898aab6ff3d25faf794e8
|
||||
df53a27f4f89fe3d25faf794e8df53a27f4f89fe3d25faf794e8bfe194c8f40f73f0d26d7ee8d5f2
|
||||
a0b15fbc59f1e97b652ee687e3977e6dd88811a07dd16be3d14ec08296a090580eeabf4e6cf1387f
|
||||
1a41857e1fa0ca2818a4e4356b938e9ed8389c5859c771058f09c7b5b34c5e7196631df7dbbd31b6
|
||||
892d9e4e3ade70ca10821995daa341a7f6fb416df81e3c51f7a46399e04334d8a9d739ef9faa71d4
|
||||
c0c7fd511be72b1f9380279bf82ce1bde3ac2518737f7e14eb935683d94b39ff308f9ab6de33afb3
|
||||
5b1b43b951c15b8a95d248efac3f3fc72516078baa97e9d2658ad28cd2e63f3d0762c7a5ede3a137
|
||||
f2c6c57ea7a3eed5fea75ac9bf6b57ee35bebb6987f7a0fd8bcff292b5bc8d276f5e7ffd1223feff
|
||||
f0325f86c4188b312bc668acfaf2f5cba26c84665805b14fe4ff49ecfaf4eb17337604ffca3aa8ec
|
||||
e93fd7357c8a4da42dc4a6ff5ce7f1a9a206df7ec7f1f6f05f6f5fbf58594e28891dc057b44912fb
|
||||
f5eb97bb0733d6f8fac52660130e3096b11c372b5c8bc7ba5fbf3053644ddb261ada0194f02c716c
|
||||
a1a1cca259cea9bab00ec6650a0da226cfda84f0581dfa8628b348965268d89942a999b505a1b188
|
||||
08a322ebda2e8c1872134230a26df12c13b6a3a1557d3e3a4aa99d7508187e8402756ab12c17a091
|
||||
08a5c4c91297bb1a431a14700ed423947298a523d48811ca449642ff584484da6ed6e10e1009b909
|
||||
211c91912cb829d31b72374ba898821c9eb55c87685011afdcdb59d701ceb486ae9315b690448015
|
||||
93d83a4419409c4aba110afa82f9997226218a8a2510cd62363c26b6ed6aea9f613d30e2cb677326
|
||||
36b162d37ffe1a736656d6e56814160355988e2bcd99b8c0a6aba3d52954b859e680843adfa32e37
|
||||
5d30490734031280599a60e4d24a9d2c7365ab0042936460ce8c991ada5128845da2a11a9b019169
|
||||
4872539f399faa14f03f22dd197294d225602ab84859d4cd9a14a8a3237233eb5a26fb0e9d399fd9
|
||||
faf927cd08bc8c58826acc0713754c677a4a110a2e2fc0d182d9db82da3f00a744f299d63fa8e288
|
||||
1bc18119532e07b61059c620a848d0e5e0f89c66416b8e44208a3bb16872025c833b16c6a5cfa00d
|
||||
0a76b8051d1d96b56150ad2384101723e554c700b4859d35816d409c2c87101a8b580d10ece86204
|
||||
b6dc088cf4130cf51929a21a6996ba84458c45cd02e63f23d8d18448496d5b13054463ee324713d7
|
||||
27a916a58a2fe4ffff9e85df9c5634ae0a108f7021e1e093a670a4a681754758b68676543a405d6e
|
||||
69282322cb6d0b973541b384e1fb6711e4e09a078b072efc218ad2a3988876a65048015c8b98b188
|
||||
0883f5917061c7226e42a8ae731ea21db5c40bc6b986520b527082812924a2410137386288869c77
|
||||
a6d0608a1191501033e458ffecbe7f91564d5962e85a05c3b4189a3f75409c5428ff7570548b6928
|
||||
ae4b305701e58086da2eb89debe0fc5c0bdc0d320a1d1259079ac9752944d1e198eba8952e449969
|
||||
67a95ce94222cc84e8e6426217711342759df310451d080be200c69910a55ca00e84462482426e70
|
||||
c4100d39ef4ca3fe142322a12066c8718656b95298fee7afd1aa03e60b19a5e2d965dc565119a60f
|
||||
d9a686a20e207b804cd6d5501bba4384a24a10101d9906d9a685422452ab11eaca68ab46d45058a7
|
||||
21338c45449849417690cb46dc84505de73c443b4ad70272770da5d09da187464474c8e746da4988
|
||||
069c7774349c62442414c40c39fe7dbe3aa3f48259b92a5b84a41df27fa9558aa1cab234b43a8d72
|
||||
4cf5a51ca751e6e0da0310736536819502734d0959e0701a5457d41dc25d0ded28d4b64ca277d7d8
|
||||
0c884c41929bfaccf954ffc64868116e4e4917344ca56c5c286b40f62a85835189e96a6847a5704c
|
||||
65a501ca702787724bd53fdc22f614047519e60d727d0b500ab92d65b65f454428e8c884981811a1
|
||||
8c4145258904dc84505de73c44a56660bd82e443436de84e4c556dfa4474c8e7468e18a021e79d69
|
||||
d49f62442414c40c39cef099597afb6b7c06bcdb3665450c45994b6db55dc1c0922c5343ab532844
|
||||
0a46a1dcad4e8d301bd546f8c722036818d63bf1739b32580e983a8aa9ac69338e2a836589e1a60c
|
||||
14ea8c52a96b0bdbfb396f88c2324d4ce2aa112314f21ed3c411311552252c5888c59537b842d677
|
||||
41558be937a4f7a62a710254567d98193b8ed65d9fa24f44877c6eea3365f10f6a06f343e20847db
|
||||
68e962460a51904da1d56914ac0b1c52ae541a0ab92605fb44938341a5f141f83521e1c571b86bda
|
||||
1a245753485498ed6a68c75f6399da120aba6b6c064434c8e7a63e733eb32befff5dc0b312a19f12
|
||||
b0f5a92ce128732293529e1596231d9c726493581a4a390a4d4649cc4f2cdc6ad3205033e4152a0d
|
||||
0c5128be20fd83cc221a0e327bca394221dd00927b7290385ac4d51b325837e5be46345c04e97435
|
||||
3460301a2e9ac6a7f9fee194e4cf933ea6cf8238df499f61a2a5f61c0314632b755d5dfa3a144941
|
||||
43037169c30542d5e86ad2b75d06c532860dad21f04ca5bd06c369904657477d06b5e18269cc986f
|
||||
3d28ccff790fc0aad56290784f7940884686cd2c88b510b27588e0ee38e5d31e20d312d736350fc0
|
||||
bacac10d138d6e004d7940d43034ec68380dd2e84668c860345c348d4ff3fd3fe101baf423930dd1
|
||||
c8b0c3c9699026051df5c5a50d170855a3ab493f3259ad6160d8e1703a14d1d5d080416db8601a33
|
||||
e6ab7bc064769ec71d489b4cc80ba1d04035d816a45a546e8210174b12b931aca1946485f04f6828
|
||||
4c1eab881fa258d4c02744254fb2869b8d06d4aa337900b4f99313c08d1d479ed20484ba53a84e88
|
||||
0ac88365263e1bd559fd3cee1f60cac68303cbfc4eaa11aacb0f976f4b96b63f4035a66ca0a562f2
|
||||
6c549fd6671efec004200030eaa24a40392e6491720290235a827e4f08c200213260eb28647f0ec1
|
||||
5d5f6a412fc7fe1ed52780e72c60433f44f51120077229f944cd44d17d42e53e20d366519d39b73f
|
||||
20184190154b31c53865523018a76d79721aa0d56914cf537dcdc28ae83059e8cd4641043626763e
|
||||
ca6dee0b86714cbf71417588df90db900d2264aa8d318a1b3ea65a8385059f03513b8442b811b8ef
|
||||
22e5819003710ce7e3e2faac448fbbe775354ba0861b54e006a6455dd910ea08c787046ef20a10ba
|
||||
15b422b82521fb9aead052a10c7f178d83310bd7f5215cbd1002c37134a8ae246699d4996a28b0d6
|
||||
0de862f4b73987523898061754f10c0ba38573972834c6be905543644508222e731c79fce1584aa2
|
||||
56d6b255d444d43265390f3ec8e56fb971149fdc47a4b06c41c12421db52fe0b06c24cbf2f946544
|
||||
6e605950a2bb2e9eb110ac146cdf72399d86049ab5da30d05088ffc4a2928849e5de208645e22ac8
|
||||
326d53418439564017f203d917a68967d70871dfe750bf5cf10c8b8fad20e84fc2f9da8a2e4c9353
|
||||
251860d4559025771f396e0bc9b3698b6041ae562740996d73854205847d617542e304087c85499e
|
||||
a17ab11d57419c0a5f471ce62ed37740291e4321e4704115646274419503fd20789b4484b611ae1d
|
||||
60e5ca884c3368c85199084108151ae4db24642a5c6f88f62ceb5d09b936939063bacca78090ef47
|
||||
50bbbb0a85659b4b3f72614e3ecfb8772add920b5f04845b4c16d51a0ada0273535e0dc66849b601
|
||||
25102ee48896b089824c4b288783f06d2939bbb665069e49b8b45fd409d4e6d20db9c90208cf3d10
|
||||
0283111a2425e8021197eb0db93c0ef3fbba96ada4ef9a94fbdcd9ae6fe5d26a7df3903b4da839ce
|
||||
85cfb3201824d0339dc000091366e099dc6544a132c74388624892c64b6cee1b115522b0518724b0
|
||||
36c1981fc26d1b932680386e194aa7011b9a8670ab45550312b5a8ef86c2a48aaec9e4b20ace0aba
|
||||
641272e536057ab5104c04962ab8b0fc886012a204231ca14207e4bd4c5a1b638468902f67c7a6ae
|
||||
de50e05e8f5c2311c2f08890cd1c3f9b02f735034b1582fa99172c3ba63404392509c90b61da2a84
|
||||
902d84b2b64f6b935ad8967e3619c41313953280645d62f967503a6a32070f21c01af014556a8512
|
||||
3ce505c864ca8f6dbc37a31c1e8a338799be52c1aa4c79a2cab8b24d58d320d15587ac8eeb1b8809
|
||||
6997eacbb008f14d8ecb34182058fc986f85b815028281b525f01c62f90e0f28949dbe03b884aab3
|
||||
14f06ea25bbf83619ff0efdcc4b1b2ccb5ada9861894399f1a0e96484b265d53744157965cd62206
|
||||
21f638963d350ddcf45614b4f90a341b8beb82c10b254c265ca1f800a23637bf93b3c0fb468ce80a
|
||||
11f24e02d5d5360549fdfa7d0354e062a0fa06c339b889e74ed175312c88a06fc020844ca87362da
|
||||
3428c6784c32a2f9a28bd9d4975528188a418d9198263e80403d962e677444d7df248814826e62e2
|
||||
8e40a4b6d0eb22fdeaee191942d430349768b8d0aea6e886061831189a69348dd09ea7e61b1a7e24
|
||||
98c83d02f1697ea4c95973b840219a5b066afbecbff5995edd9161010f7de595866977d75008788e
|
||||
3c0a06953aa69f89bbdc541013322d0336e51c24295c6182a44950c9a68309972f4766ca59c34a1e
|
||||
c64762abeb06c826e72a6f84e5c4254a3c3246cb94ce7289ba3a62ba6a384c7f1d1ea8c5b295c06d
|
||||
3ca2a6527f100c999e4a6ae6a0e59c0ee66fce54cee910756b401f0eb35a617d47174f5359903d2b
|
||||
06f1f052a50be13400823cd8fe6ebe7835478829c108dcdf55e96f203ec1b136b6be93b3bcb0c2a7
|
||||
1482bb6ac212bada344877f70805cbb571c9d78603ab9726acd1a5eaaa8dcfb3cf20062e47ae6ce1
|
||||
3430e21161ebf38568c985f0e9868201d4c47b379af8206962b8f86b72c63c4a701e84555f219883
|
||||
6179a7a92d4ce922fdeab95f640851c3d05ca2e142bb9aa21b1a60c46068a6e134227bd6e71b197e
|
||||
2898c83d42f1697ea4c95973b840219a5b066afbecbf75b5de5ffc8135df05fd11794bc4c23ac72f
|
||||
683514446f62a20e90cde48e2b4096bc44eae20d0bc79f3848d6bf6102b18ab87e431992110a723b
|
||||
c86a4dbc75e04282e5503ff314b806ca4b6053a823d429147487fcd24f2b4daecef8e4a096cbbf47
|
||||
e52de4604de74495e22ec3849efe18d54700ebb0a4c1cc46b128e1104f036aaa7a09d08e42417144
|
||||
4311822cd7af22a09ae412e22ad146c8511782a504a8e33b8089577d11824c3f2837282e3a2e1aa6
|
||||
e31b2694c75cf545f7347d7f92f78fa53204f1fb024f54694d98bec629649b81d620710d4c9df85a
|
||||
8b4c83cb72f2b3b5d467da50b0c244b3061f71fdeb2f204aa6ce750214ef890875460e10c7c20121
|
||||
82d786a478e4bd1239458a5bc034705d82f79c705331100f545eee1444b0aee641df00c53d4bac5c
|
||||
713833d03571b08641ba82faf9a9e0b6ba0f197183a8c3d5fe8c645be5859841c81171724ae0f010
|
||||
d6045df701e42b8baa5d9ba821044e4eaca9e1306a52a2d1957d5d55cb4bd4326d641b829bc3fc34
|
||||
d336e505b008d2a510a1525c764c1b4e0ad5f477976d124adf89ee6832b5cd16aa09a7c1dc29657e
|
||||
d27a71a62d547d23c18b9f2c28bbd1ccfc0824f0168444a92da78847fdd40ff9a690bad7dd4a42c5
|
||||
29bf8e1ae2b10925c1709898a3f2ec608314029008144d4de2ef47581657b7424d4b1a279a373aa7
|
||||
0ee9a28d50589d84dfd072836a5ae0e57049d7a2fe2a6059fef9bbe2c68f66b2d4f6a30e4433d32f
|
||||
9d1d531d05c0e4821583513665603e1444033b889a7e43146a40da1f4e4adfd2e8fa8ae67ec18359
|
||||
8c8c240ed6c97e69431ca9fb08d2a510a1525cca8a83e150a842c46668bd38d316aa61243185ed0b
|
||||
9c3a5c2823e1b85fe86aa88cbd248288ef7f6610fc2977d5ee00a2aeed7b07c5941b21c683958be2
|
||||
cd7819a4fde288e02a6e067d851d6cb958c2563a70ac60388b30d5d7e1e1228a9b7a7e5f97587e5f
|
||||
933345d7a5b62f1e57f83123821cc7bf5231850abcb0a986137ee2222cdba7abe22b7a3873c3be8e
|
||||
1d6cb431375c831d3f72329babbeb03efb1498199803488105ab08e4598a2e73823d309bfb7d9969
|
||||
f991c5663609e56c994143dbb27c1db93e83361a865c485d9768507d7a81f6d14f8bb9d47a75a685
|
||||
74c26ce862e68d6d080c3c36fd075322503cee1fcbeb992e5aba7f8e2bafc5381a5ad551db84c482
|
||||
aa4b2ed4b6705f9afd10259027e20e7555a7361bd5a935ffe8046c82464ec4f40442747a02048b7e
|
||||
ee7ecfd46c341ae18f33058b9b3cc299662a40a799b2fcf2625a7eb3513cc813c1159e90da6c54a3
|
||||
f6c72760335c4298ba41e460583735747a0214eb05d3fa0eb53132da8a2966fb5babb68de984ad6e
|
||||
da32c847702596e33253e0f1bddc3a94ddd15b6050ca3038c8c90304b5ab4c56e40b699690a840e7
|
||||
c38690cae29e2a40b8863beae81f62926c05ab24a4b1eaca41c823907384f8de4a189e99f99c6b73
|
||||
879ad3359def84fc033492d34f8b5ee61dc83d87aa0a6f5ca1e899bcb44e35b43a8542690a8994ef
|
||||
7b549531dfa120513c71cd60bd6be2b90f5429b060ab86f8320824dbc8ba90d598dccf27feb57740
|
||||
2d8e17bde4191a054122045596844cbcd54c74080f2b847f374343619126b6ea6b13351986f7d689
|
||||
62054f7b327838232827aa2ff0ec4a95e3c913953c035b802184ef6ee1ed243025c7c56a1b2142fc
|
||||
3706c148a0e8c686ccc5695279850d9262142dbee0030bb7342acbc44df21092774270ef8239530d
|
||||
e591a10886b3f146159efb983e2bf292aa7f170522b8ed33485cbc51254f1e1c350d132f10501884
|
||||
e29564395f6e7233304822df8246c1100be481907c9c91a74750654f41f89e92e3047d7d549e4ae2
|
||||
ab251c6b1ecc0f506d1c5f7245baae3c409167a6425d2e47d4a6d23d40ebae8daf613247a5e0d236
|
||||
a07ce7f25a8c2bd35f5b302c9b78305f22f704d1ae642208a93e16eb44411c5f4a440784accd5436
|
||||
695ad454ce8b3bbd52476880f8df9492568d0717d2d5f0ba3e5e7845c8b17115950c725711b1f175
|
||||
090931ff5614726312db54a8e9588e64db96f5963cde6284f9177c38f1056331ff2e1c789eb02d25
|
||||
41c79457861cbc4dcc94493b8eeb4e41e8899608fa06a8c06cd3910d09b75da539ae842a3093f10d
|
||||
5fe07f0bcbe719ca1ed9d7c611999c9c6bab2080251a772544e57d59757c49fdbb7f308ecd7d3b32
|
||||
319d94e2c3f36e696d5c04e14f5e669027a94e60e51027a89c2f27b8018c44887fa48810c7434bf4
|
||||
10cae48b15015457518a09e94a6143888026322f21d7e2184d18eeed704597812a555fb4054a15cf
|
||||
c496d184e2ad597fbe2614ea12b2888218f8a8c58288c0e59508142a450e10a2f214598a9e9069c8
|
||||
c1a33e11f4f5513c33e49241608b5b7e6023786e8f744d53ca0a0f2ab9ff8a08a0b62d5d18e3225e
|
||||
0e40c8c5ad2e69a650465319896c8bfaf62c4048d2caa3881ea0d59971fe0727583f5a2898e9df93
|
||||
c22d432e88bf50007bb2880e51340817f3b28c3c37e060b1d2014cdc9d93c701b63a0dc230c09599
|
||||
e0ae3e12d2a28ae340d0364d1d7221685b16ff2efcb8b89384f111a31967fe8b3aa02a157e2c075f
|
||||
c951e58c6505ce63cb370cb068936fb6c9a8e2c8080c659263323fdc12695f2ebe7b6c3ac1f53d53
|
||||
16cacc4443950d516f442848d8d227704d37b906f946acd683a821ae1ab6bc8588c3a9a509e31f6e
|
||||
0f4bba18da7d83b018f519142665d2984c5be61db84904f257cb1a958b01a6ecccbf7288eb9f29b3
|
||||
20fcfd0dcc30b455125ffaa1eed40a8b72361df1dd72eae04e866baae5943109093c75532b3be566
|
||||
a049d4a9ef0096528863ab731e69d72a057028fe52812d9dd694e72f682e0ea1e172caa9f4143c8f
|
||||
6296a596534706e5c8d43ed9647da6a5aa7205af73bbaee53364e3b4baead549e6525343912721af
|
||||
85e07eb67c6d00d5422d69210efe2200e3c1145d59f94959e0ad32396ba64c18ac0f6a351d02d112
|
||||
fff6838ee20619be8989c3e15ca5a61c5386397418f5a219eea3335f3c0cb316ae744f05a7321e0a
|
||||
229317b010c839b96f864c87fcdf5470e4b684d610932fb99ce036866da9fbdb50965a0a22aebadd
|
||||
22e3bfdc609175ab2d2f7a737fd71e8b47c7b695bb83ee7c83132e09d74ad771989aafc0bd56b98c
|
||||
59965066c8e48f4d68101a73903184289a21fea4060ec71dcb3743811bf9728d96f7a350473696c1
|
||||
3ecf446548a84cbc98822eeb3a32bb8a54fec936a21dffc93ff53e72f4b62dc8d606fb93066b5978
|
||||
0c4c3554be998bab20d351b9372298ec8e5bf7a8560dc2db5fead02b42214e4084e06e30628042c2
|
||||
86a94a44045f94929bf611372134f5f670885667cee7ef7c6fe587d2b5e54f85b8d6b47443744aba
|
||||
21aa8907774d70a5d721dcd6f153f410c5d7e20994fcd3d2956ff1524cfa432208093c688cb809a1
|
||||
29e9866875e67caaff7f17f7ff3c196befbf6b168cbf6d414d796b51b360a676857594c94d3bb9b3
|
||||
1658b00e45161ca1ba05eba86fc11191d030236e740b8e38d72d78c67cfe410bd678d42c589b8f66
|
||||
c1dac40354134f60c13a14597084ea16aca3be05474442c38cb8d12d58fbad03cd8267cce707164c
|
||||
94dca6fffc39efcc0a36f59eb97c7b9ed8b28ac76b832aefc574cdb6998ee20b0c26913b1e0cafa4
|
||||
c1baaa4198bc10e6bffc10a11c0fd0b161381c6e54c98b5111dd00f2b77c998317efb486b0aa990e
|
||||
d386d3a188ae86060c6ac305d39831df4faf9efc7dd2c7f73bd56faa4c4b1f6f379842973ec1fb4d
|
||||
322b0da51f41baf43534947e385c20548dae267d7c6d85c9db475a43bc3a2dabda68b808d2b51ea2
|
||||
917984c34546f469be75ed5751aa05ff47d5cabd86fcb5b44c067f71edb8f6ea9d0f6bed0efec6da
|
||||
eb08ffc3d2b55eaf3fae8dbd013c8abd0ebdd1b83ff462a356ff5744b053d8617ebe7cb48d3fe8f6
|
||||
ff0045d18953>
|
||||
|
||||
endstream
|
||||
endobj
|
||||
5 0 obj
|
||||
<<
|
||||
/Filter [/ASCII85Decode /FlateDecode ]
|
||||
/Length 47
|
||||
>>
|
||||
stream
|
||||
GhOt'1B7FZ"#S^CKb'rAF*Y=gh1H.G'[hnb\H#CN$X!~>
|
||||
|
||||
endstream
|
||||
endobj
|
||||
2 0 obj
|
||||
<<
|
||||
/Type /Pages
|
||||
/Kids [4 0 R]
|
||||
/Count 1
|
||||
>>
|
||||
endobj
|
||||
1 0 obj
|
||||
<<
|
||||
/Type /Catalog
|
||||
/Pages 2 0 R
|
||||
/OCProperties<< /D<< /Name (DefaultOC)/Order[]/ON[]/OFF[]/RBGroups[]>>/OCGs[]>>
|
||||
>>
|
||||
endobj
|
||||
3 0 obj
|
||||
<<
|
||||
/CreationDate (D:20230305004459+02'00')
|
||||
/ModDate (D:20230305004459+02'00')
|
||||
/Producer <feff0043006f00720065006c002000500044004600200045006e00670069006e0065002000560065007200730069006f006e002000320033002e0030002e0030002e003300360033>
|
||||
/Creator <feff0043006f00720065006c004400520041005700200032003000320031>
|
||||
/Title <>
|
||||
>>
|
||||
endobj
|
||||
10 0 obj
|
||||
<<
|
||||
/Type /ExtGState
|
||||
/RI /RelativeColorimetric
|
||||
>>
|
||||
endobj
|
||||
xref
|
||||
0 11
|
||||
0000000000 65535 f
|
||||
0000023605 00000 n
|
||||
0000023541 00000 n
|
||||
0000023741 00000 n
|
||||
0000000010 00000 n
|
||||
0000023396 00000 n
|
||||
0000000322 00000 n
|
||||
0000000362 00000 n
|
||||
0000001057 00000 n
|
||||
0000000517 00000 n
|
||||
0000024085 00000 n
|
||||
trailer
|
||||
<<
|
||||
/Size 11
|
||||
/Root 1 0 R
|
||||
/Info 3 0 R
|
||||
/ID [<32077a6c7ca46fcc62fb9162556ab9bb><32077a6c7ca46fcc62fb9162556ab9bb>]
|
||||
>>
|
||||
startxref
|
||||
24156
|
||||
%%EOF
|
Binary file not shown.
Before Width: | Height: | Size: 12 MiB |
1
static/img/hardware/t-echo.svg
Normal file
1
static/img/hardware/t-echo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 8 KiB |
Loading…
Reference in a new issue