9 Getting Data from the Web
The internet in general and the World Wide Web specifically serves as a vast source of data suitable for answering a wide range of research questions. In this lesson we cover several common methods for acquiring this data.
9.1 Learning Objectives
After this lesson, you should be able to:
- Understand the behind how URLs are formatted
- Explain and read hypertext markup language (HTML)
- View the HTML source of a web page
- Use Firefox or Chrome’s web developer tools to locate tags within a web page
- With the
httr
package, query an API - Understand how fields in the URL can be adjusted to customize API queries
- With the
rvest
package:- Read HTML into R
- Extract HTML tables as data frames
- With the
xml2
package:- Use XPath to extract specific elements of a page
9.2 How the Web Works
The discipline of Data Science was, in a large part, ushered into being by the increasing availability of information available on the World Wide Web or through other internet sources. Prior to the popularization of the internet as a publishing and communications platform, the majority of scientific research involved controlled studies in which researchers would collect their own data through various direct means of data collection (surveys, medical testing, etc.) in order to test a stated hypothesis.
The vast amount of information available on the internet disrupted this centuries long dominance. Today, the dominant form of scientific research involves using data collected or produced by others for reasons having little or nothing to do with the research question being investigated by scholar. Users who post items about their favorite political candidate are not, for example, doing this so that sociologists can better under how politics function in America. However, their Tweets are being used in that and many other unforeseen capacities.
Because the internet provides such a rich trove of information for study, understanding how to effectively get, process, and prepare information from the internet for scientific research is a crucial skill for any data scientist. And in order to understand these workflows, the data scientist must first understand how the internet itself functions.
9.2.1 Client-Server Architecture
The base architecture and functioning of the internet is quite simple:
- A content producer puts information on a computer called the server for others to retrieve;
- A user uses their local computer, called the client, to request the information from the sever;
- The server delivers the information to the client.
Each of the above detailed steps is accomplished using a technically complex but conceptually simple set of computer protocols. The technical details are beyond the scope of this course. We are here concerned with their conceptual architecture.
9.2.1.1 Communication Between Clients and Servers
Anytime a computer connects to any network, that computer is assigned a unique identifier known as an internet protocol (IP) address that uniquely identifies that computer on the network. IP addresses have the form x.x.x.x
, where each x
can be any integer from 0 to 255. For example, 169.237.102.141
is the current IP address of the computer that hosts the DataLab website. IP addresses are sometimes pre-designated for particular computers. A pre-designated IP address is known as static IP address. In other cases IP addresses are dynamically assigned from a range of available IP Address using a system known as the Dynamic Host Configuration Protocol (DHCP). Servers are typically assigned static IP addresses and clients are typically assigned dynamic IP addresses.
As humans, we are used to accessing websites via a domain name (which we’ll discuss shortly), but you can also contact any server on the internet by simply typing the IP address into your browser address bar where you would normally enter the URL. For example, you can simply click on https://169.237.102.141 to access the DataLab website. (note: your browser may give you a security warning if you try to access a server directly using an IP address. For the link above, it is safe to proceed to the site.)
9.2.1.2 Domain Name Resolution
IP addresses are the unique identifiers that make the internet work, but they are not very human friendly. To solve this problem, a system of domain name resolution was created. Under this system, internet service providers access a universal domain registry database that associates human readable domain names with machine readable IP addresses, and a secondary set of of internet connected servers known as domain name servers (DNS) provide a lookup service that translates domain names into IP addresses in the background. As the end-user, you enter and see only domain names, but the actual request process is a multi-step process in which domain names are translated to IP address in the background:
- A content produce puts information on a computer called the server for others to retrieve;
- A user uses their local computer, called the client, to request the information from the sever using a domain name using request software such as a web browser;
- The user’s client software first sends a request to a DNS server to retrieve the IP address of the server on the network associated with the entered domain name;
- The DNS server returns the associated IP address to the client;
- The client then makes the information request to the server using its retrieved IP address;
- The server delivers the information to the client.
9.2.1.3 Request Routing
Our simple diagram of the client server process shows only two computers. But when you connect to the internet you are not, of course, creating a direct connection to a single computer. Rather, you are connecting to vase network of literally millions of computers, what we have come to refer to as the cloud.
In order to solve this problem, the internet backbone also deploys a routing system that directs requests and responses across the network to the appropriate servers and clients.
When you connect to the WiFi network in your home, office, or the local coffee house, you are connecting to a router. That router receives all of your requests and, provided you are not requesting something directly from another computer that is connected to the same router, passes that request on to a larger routing network at the Internet Service Provider (ISP). When the ISP routers receive your request, they check to see if you’re requesting something from a computer that is connected to their network. If it is, they deliver the request. If it is not, they pass the request on to another, regional routing network. And this routing process is repeated until your request if finally routed to the correct server.
- A content produce puts information on a computer called the server for others to retrieve;
- A user uses their local computer, called the client, to request the information from the sever using a domain name using request software such as a web browser;
- The user’s client software first sends a request to a DNS server to retrieve the IP address of the server on the network associated with the entered domain name;
- The DNS server returns the associated IP address to the client;
- The client sends the request to the local (in home, office, etc.) router;
- After check of IP addresses on local network, request is routed to the ISP’s routing system;
- The request is passed through the internet routing network until it reaches the routing system of the server’s ISP and, finally, the server itself.
9.2.1.4 The Server Response
When a request is sent to a server across the internet, the request includes both the specific URL of the resource being request and also an hidden request header. The request header provides information to the server such as the IP address and the operating system of the client, the transfer protocol being used, and the software on the client that is making the request. The server uses this information to properly format it’s response and to route it back to the requesting client using the same IP routing process as described above.
9.2.1.5 Internet Transfer Protocols
All of the information transferred between computers over the network is transferred as streams of binary data. In order to ensure data integrity, these streams are usually broken up into smaller packets of data which are transmitted independent of each other and then reassembled by the receiving computer once it has received all of the packets in the stream. The first packet returned (a header packet) typically delivers information about how many packets the client should expect to receive and about how they should be reassembled to recreate the original data stream.
There are many different standards for how data streams are divided into packets. One standard might, for example, break the stream into a collection of 50 byte packets, while another might use 100 byte packages. These standards are called protocols. The two protocols that are familiar to most users are http and https, which define the hypertext transfer protocol and its sibling the hypertext transfer secure protocol. When you type a URL like https://datalab.ucdavis.edu into your browser, you are instructing the browser to use the https protocol to exchange information. Because http and https are so common, most modern browsers do not require you to type the protocol name. They will simply insert the protocol for you in the background.
9.2.2 Understanding URLs
URL is an acronym for Uniform Resource Locators. “Uniform” is a key term in this context. URLs are not arbitrary pointers to information. They are machine and human readable and parsable and contain a lot of information in them.
All URLs are constructed using a standardized format. Consider the following URL:
https://sfbaywildlife.info/species/common_birds.htm
There are actually several distinct components to the above URL
protocol | server | path to file |
---|---|---|
https:// | sfbaywildlife.info | /species/common_birds.htm |
We’ve already discussed Internet Protocols and domain names. The file path portion of the URL can also provide valuable information about the server. It reads exactly like a Unix file path on the command line. The path /species/common_birds.htm
indicates that the file common_birds.htm
is in the species
directory on the server.
9.2.2.1 Dynamic Files
In the above example, when you enter the URL https://sfbaywildlife.info/species/common_birds.htm
, your browser requests the file at /species/common_birds.html
on the server. The server simply finds the file and delivers it to your web browser. We call this a static web server because the server itself does not do any processing of files prior to delivery. It simply receives requests for files living on the server and then sends them to the client, whose browser renders the file for viewing.
Many websites, however, use dynamic processing. Pages with file extensions such as .php
or .jsp
, for example, include computer code in them. When these pages are requested by the server, the server executes the code in the designated file and sends the output of that execution to the requesting client rather than the actual file. Many sites, such as online stores and blogs, use this functionality to connect their web pages to active databases that track inventory and orders, for example.
9.2.2.2 Query Strings
Dynamic websites, such as e-commerce sites that are connected to databases, require a mechanism for users to submit information to the server for processing. This is accomplished through one of two HTTP commands: GET or POST.
POST commands send submitted information to the server via a hidden HTTP header that is invisible to the end user. Scraping sites that require POST transactions is possible but can require significant sleuthing to determine the correct parameters and is beyond the scope of this course.
GET requests, which are, happily for web scrapers more ubiquitous than POST requests, are much easier to understand. They are submitted via a query string that is simply appended to the request URL as in the following example:
https://ebba.english.ucsb.edu/search_combined/?ft=dragon&numkw=52
Here we see a Query String appended to the end of the actual URL:
protocol | server | path to file | query string |
---|---|---|---|
https:// | ebba.english.ucsb.edu | /search_combined/index.php | ?ft=dragon&numkw=52 |
Query strings always appear at the end of the URL and begin with the ?
character followed by a series of key/value pairs separated by the &
character. In the above example we see that two parameters are submitted to the server via the query string as follows:
ft=dragon
numkw=52
The server will use these parameter values as input to perform a dynamic operation, in this case searching a database.
9.3 Accessing Data Online
While there are many methods (and R packages) for acquiring data from the web, all fall into one of three general categories of data acquisition:
- Direct Download of data from a specified endpoint;
- Application Programming Interface (API) access;
- Scraping
Direct Download describes process where a data provider has provided a specific URL or web link from which you can download the data. For example, when you download data from the “Files” are of Canvas you are using the Direct Download method of data acquisition.
Application Programming Interfaces (APIs) are web accessible endpoints
that you access via a URL, just as you would any website, but that are
designed specifically to interact with computers (as opposed to humans).
APIs receive requests and return data to the requester in machine, as
opposed to human, readable formats, such as JSON or XML. We will learn
more about working with APIs in this unit.
Scraping a web page means extracting information from human readable internet sources so that it can be used programmatically (for instance, in R). We will also learn more about Scraping in this unit.
Each of the above general methods can be accomplished by applying any number of sub-methods and packages. And each brings with it its own degree of complexity and difficulty. As a general rule, the various ways you can get data from the web can be ranked according to difficulty from most to least convenient as follows:
- Direct download or “data dump”
- R or Python package (there are packages for many popular web APIs)
- Documented web API
- Undocumented web API
- Scraping
9.4 APIs
As noted earlier, and Application Programming Interface (API) provides a machine readable gateway for accessing data from the web. Most APIs provide programmatic access to the data that lives behind a human readable website. For example, most social media platforms such as Twitter, Facebook, and Instagram provide APIs that allow computers to programmatically access the same data that you, as a human, see when you interact with these platforms via a web browser of mobile app. Some APIs, however, are stand alone, in that they provide machine access to data sources that have no human readable interface.
One of the challenges with working with APIs is that, while there are some standards of behavior for APIs, you need to know what and how to query a specific API in order to interact with it. Some APIs are well documented, while others are not. And some, for example the Twitter API, has extensive documentation that is frequently erroneous, incomplete, or out of date. As a result, working with APIs can sometimes be challenging.
For this unit, we will work with the RESTCountries API which stores data on countries all over the world: their currencies, flags, population, etc. There are a large number of public APIs out there, such as those listed by the public-api project.
9.4.1 Querying to an API
Many popular APIs (Twitter, Facebook, etc.) have specific R packages designed to facilitate interaction with their APIs. Because APIs are web accessible, however, all can be accessed programmatically using basic internet request protocols, just as if you were going to a human readable webpage, provided you know how to formulate your request as a URL. The RESTcountries webpage publishes decent guidelines for accessing its API.
We can see from the documentation that the API will allow us to query a list of country features that appear in the database using a URL with the following construction:
"https://restcountries.com/v3.1/all?fields=name"
You can actually go to this URL in your web browser and see the response, a portion of which is reproduced here:
[{"name":{"common":"American Samoa","official":"American Samoa","nativeName":{"eng":{"official":"American Samoa","common":"American Samoa"},"smo":{"official":"Sāmoa Amelika","common":"Sāmoa Amelika"}}}},{"name":{"common":"Peru","official":"Republic of Peru","nativeName":{"aym":{"official":"Piruw Suyu","common":"Piruw"},"que":{"official":"Piruw Ripuwlika","common":"Piruw"},"spa":{"official":"República del Perú","common":"Perú"}}}},{"name":{"common":"Tonga","official":"Kingdom of Tonga","nativeName":{"eng":{"official":"Kingdom of Tonga","common":"Tonga"},"ton":{"official":"Kingdom of Tonga","common":"Tonga"}}}}
If you look closely at this extract form the response, you will see that it contains HTML but is not HTML. Remember that APIs exist to deliver machine readable information. In this case, the API is delivering data in the JSON format, and some of the fields in the JSON object contain information provided as HTML.
Because the response is machine readable, we can make better use of the query if
we run it in R rather than our web browser. Before we can do so, we need to
setup our R environment to execute HTTP queries against the API and to process
JSON. We’ll use the httr
package to process our http transactions and the
jsonlite
package to process the JSON that we receive
With our packages installed, we execute our query in R with one simple command:
The above executes an HTTP GET request (just like your web browser) to the identified query URL and loads it into an httr “response” object. If you take some time to examine the response object, you will see that it is a container object that contains a lot of useful information in addition to the actual JSON response that you see when you load the URL in your browser. For example, we can check the status of the response to see if it was successful by look at the response “status_code” which should be 200 if the query executed successfully.
## 200
The actual content of the response can be found in the response object’s “content”
element. Note, however, that we have to do some formatting on the object in order
to access it. Go ahead and look at the actual response$content
object
## [1] 5b 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 6d 65 72
## [25] 69 63 61 6e 20 53 61 6d 6f 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [49] 41 6d 65 72 69 63 61 6e 20 53 61 6d 6f 61 22 2c 22 6e 61 74 69 76 65 4e
## [73] 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [97] 22 41 6d 65 72 69 63 61 6e 20 53 61 6d 6f 61 22 2c 22 63 6f 6d 6d 6f 6e
## [121] 22 3a 22 41 6d 65 72 69 63 61 6e 20 53 61 6d 6f 61 22 7d 2c 22 73 6d 6f
## [145] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 c4 81 6d 6f 61 20 41 6d
## [169] 65 6c 69 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 c4 81 6d 6f 61 20
## [193] 41 6d 65 6c 69 6b 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [217] 6f 6d 6d 6f 6e 22 3a 22 50 65 72 75 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [241] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 50 65 72 75 22 2c 22 6e 61 74
## [265] 69 76 65 4e 61 6d 65 22 3a 7b 22 61 79 6d 22 3a 7b 22 6f 66 66 69 63 69
## [289] 61 6c 22 3a 22 50 69 72 75 77 20 53 75 79 75 22 2c 22 63 6f 6d 6d 6f 6e
## [313] 22 3a 22 50 69 72 75 77 22 7d 2c 22 71 75 65 22 3a 7b 22 6f 66 66 69 63
## [337] 69 61 6c 22 3a 22 50 69 72 75 77 20 52 69 70 75 77 6c 69 6b 61 22 2c 22
## [361] 63 6f 6d 6d 6f 6e 22 3a 22 50 69 72 75 77 22 7d 2c 22 73 70 61 22 3a 7b
## [385] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 64
## [409] 65 6c 20 50 65 72 c3 ba 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 65 72 c3
## [433] ba 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [457] 3a 22 54 6f 6e 67 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e
## [481] 67 64 6f 6d 20 6f 66 20 54 6f 6e 67 61 22 2c 22 6e 61 74 69 76 65 4e 61
## [505] 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [529] 4b 69 6e 67 64 6f 6d 20 6f 66 20 54 6f 6e 67 61 22 2c 22 63 6f 6d 6d 6f
## [553] 6e 22 3a 22 54 6f 6e 67 61 22 7d 2c 22 74 6f 6e 22 3a 7b 22 6f 66 66 69
## [577] 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 54 6f 6e 67 61 22
## [601] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 6f 6e 67 61 22 7d 7d 7d 7d 2c 7b 22
## [625] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 79 6f 74 74 65
## [649] 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 44 65 70 61 72 74 6d 65 6e 74
## [673] 20 6f 66 20 4d 61 79 6f 74 74 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [697] 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 44 c3
## [721] a9 70 61 72 74 65 6d 65 6e 74 20 64 65 20 4d 61 79 6f 74 74 65 22 2c 22
## [745] 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 79 6f 74 74 65 22 7d 7d 7d 7d 2c 7b 22
## [769] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61 6e 61 6d 61 22
## [793] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66
## [817] 20 50 61 6e 61 6d 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22
## [841] 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62
## [865] 6c 69 63 61 20 64 65 20 50 61 6e 61 6d c3 a1 22 2c 22 63 6f 6d 6d 6f 6e
## [889] 22 3a 22 50 61 6e 61 6d c3 a1 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [913] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 64 61 67 61 73 63 61 72 22 2c 22
## [937] 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4d
## [961] 61 64 61 67 61 73 63 61 72 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [985] 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70
## [1009] 75 62 6c 69 71 75 65 20 64 65 20 4d 61 64 61 67 61 73 63 61 72 22 2c 22
## [1033] 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 64 61 67 61 73 63 61 72 22 7d 2c 22 6d
## [1057] 6c 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 6f 62 6c 69
## [1081] 6b 61 6e 27 69 20 4d 61 64 61 67 61 73 69 6b 61 72 61 22 2c 22 63 6f 6d
## [1105] 6d 6f 6e 22 3a 22 4d 61 64 61 67 61 73 69 6b 61 72 61 22 7d 7d 7d 7d 2c
## [1129] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 6c 67 69
## [1153] 75 6d 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20
## [1177] 6f 66 20 42 65 6c 67 69 75 6d 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [1201] 3a 7b 22 64 65 75 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b c3 b6
## [1225] 6e 69 67 72 65 69 63 68 20 42 65 6c 67 69 65 6e 22 2c 22 63 6f 6d 6d 6f
## [1249] 6e 22 3a 22 42 65 6c 67 69 65 6e 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66
## [1273] 66 69 63 69 61 6c 22 3a 22 52 6f 79 61 75 6d 65 20 64 65 20 42 65 6c 67
## [1297] 69 71 75 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 6c 67 69 71 75 65
## [1321] 22 7d 2c 22 6e 6c 64 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 6f
## [1345] 6e 69 6e 6b 72 69 6a 6b 20 42 65 6c 67 69 c3 ab 22 2c 22 63 6f 6d 6d 6f
## [1369] 6e 22 3a 22 42 65 6c 67 69 c3 ab 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22
## [1393] 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 65 6e 74 72 61 6c 20 41 66 72 69
## [1417] 63 61 6e 20 52 65 70 75 62 6c 69 63 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [1441] 3a 22 43 65 6e 74 72 61 6c 20 41 66 72 69 63 61 6e 20 52 65 70 75 62 6c
## [1465] 69 63 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a
## [1489] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65
## [1513] 20 63 65 6e 74 72 61 66 72 69 63 61 69 6e 65 22 2c 22 63 6f 6d 6d 6f 6e
## [1537] 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 63 65 6e 74 72 61 66 72 69
## [1561] 63 61 69 6e 65 22 7d 2c 22 73 61 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [1585] 22 3a 22 4b c3 b6 64 c3 b6 72 c3 b6 73 c3 aa 73 65 20 74 c3 ae 20 42 c3
## [1609] aa 61 66 72 c3 ae 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 c3 aa 61
## [1633] 66 72 c3 ae 6b 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [1657] 6d 6d 6f 6e 22 3a 22 48 75 6e 67 61 72 79 22 2c 22 6f 66 66 69 63 69 61
## [1681] 6c 22 3a 22 48 75 6e 67 61 72 79 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [1705] 22 3a 7b 22 68 75 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4d 61
## [1729] 67 79 61 72 6f 72 73 7a c3 a1 67 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d
## [1753] 61 67 79 61 72 6f 72 73 7a c3 a1 67 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [1777] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 6f 6e 67 6f 6c 69 61 22 2c 22
## [1801] 6f 66 66 69 63 69 61 6c 22 3a 22 4d 6f 6e 67 6f 6c 69 61 22 2c 22 6e 61
## [1825] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6d 6f 6e 22 3a 7b 22 6f 66 66 69 63
## [1849] 69 61 6c 22 3a 22 d0 9c d0 be d0 bd d0 b3 d0 be d0 bb 20 d1 83 d0 bb d1
## [1873] 81 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 9c d0 be d0 bd d0 b3 d0 be d0
## [1897] bb 20 d1 83 d0 bb d1 81 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [1921] 63 6f 6d 6d 6f 6e 22 3a 22 53 61 75 64 69 20 41 72 61 62 69 61 22 2c 22
## [1945] 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 53 61
## [1969] 75 64 69 20 41 72 61 62 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [1993] 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 a7 d9
## [2017] 84 d9 85 d9 85 d9 84 d9 83 d8 a9 20 d8 a7 d9 84 d8 b9 d8 b1 d8 a8 d9 8a
## [2041] d8 a9 20 d8 a7 d9 84 d8 b3 d8 b9 d9 88 d8 af d9 8a d8 a9 22 2c 22 63 6f
## [2065] 6d 6d 6f 6e 22 3a 22 d8 a7 d9 84 d8 b9 d8 b1 d8 a8 d9 8a d8 a9 20 d8 a7
## [2089] d9 84 d8 b3 d8 b9 d9 88 d8 af d9 8a d8 a9 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [2113] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 45 73 77 61 74 69 6e 69 22
## [2137] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20
## [2161] 45 73 77 61 74 69 6e 69 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [2185] 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64
## [2209] 6f 6d 20 6f 66 20 45 73 77 61 74 69 6e 69 22 2c 22 63 6f 6d 6d 6f 6e 22
## [2233] 3a 22 45 73 77 61 74 69 6e 69 22 7d 2c 22 73 73 77 22 3a 7b 22 6f 66 66
## [2257] 69 63 69 61 6c 22 3a 22 55 6d 62 75 73 6f 20 77 65 53 77 61 74 69 6e 69
## [2281] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 65 53 77 61 74 69 6e 69 22 7d 7d 7d
## [2305] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 55 67 61
## [2329] 6e 64 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [2353] 63 20 6f 66 20 55 67 61 6e 64 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [2377] 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [2401] 70 75 62 6c 69 63 20 6f 66 20 55 67 61 6e 64 61 22 2c 22 63 6f 6d 6d 6f
## [2425] 6e 22 3a 22 55 67 61 6e 64 61 22 7d 2c 22 73 77 61 22 3a 7b 22 6f 66 66
## [2449] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 55 67 61 6e
## [2473] 64 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 55 67 61 6e 64 61 22 7d 7d 7d
## [2497] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61 72
## [2521] 61 67 75 61 79 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62
## [2545] 6c 69 63 20 6f 66 20 50 61 72 61 67 75 61 79 22 2c 22 6e 61 74 69 76 65
## [2569] 4e 61 6d 65 22 3a 7b 22 67 72 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [2593] 3a 22 54 65 74 c3 a3 20 50 61 72 61 67 75 c3 a1 69 22 2c 22 63 6f 6d 6d
## [2617] 6f 6e 22 3a 22 50 61 72 61 67 75 c3 a1 69 22 7d 2c 22 73 70 61 22 3a 7b
## [2641] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 64
## [2665] 65 20 50 61 72 61 67 75 61 79 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61
## [2689] 72 61 67 75 61 79 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [2713] 6d 6d 6f 6e 22 3a 22 43 61 6d 65 72 6f 6f 6e 22 2c 22 6f 66 66 69 63 69
## [2737] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 43 61 6d 65 72 6f 6f
## [2761] 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b
## [2785] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [2809] 43 61 6d 65 72 6f 6f 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 61 6d 65
## [2833] 72 6f 6f 6e 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [2857] 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 75 20 43 61 6d 65 72 6f 75
## [2881] 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 61 6d 65 72 6f 75 6e 22 7d 7d
## [2905] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 46 72
## [2929] 61 6e 63 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 72 65 6e 63 68
## [2953] 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [2977] 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70
## [3001] 75 62 6c 69 71 75 65 20 66 72 61 6e c3 a7 61 69 73 65 22 2c 22 63 6f 6d
## [3025] 6d 6f 6e 22 3a 22 46 72 61 6e 63 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [3049] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 54 6f 67 6f 22 2c 22 6f 66 66 69
## [3073] 63 69 61 6c 22 3a 22 54 6f 67 6f 6c 65 73 65 20 52 65 70 75 62 6c 69 63
## [3097] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22
## [3121] 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 74
## [3145] 6f 67 6f 6c 61 69 73 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 6f 67 6f
## [3169] 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a
## [3193] 22 4d 61 75 72 69 74 69 75 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [3217] 52 65 70 75 62 6c 69 63 20 6f 66 20 4d 61 75 72 69 74 69 75 73 22 2c 22
## [3241] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66
## [3265] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4d 61 75 72
## [3289] 69 74 69 75 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 75 72 69 74 69
## [3313] 75 73 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [3337] 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 65 20 4d 61 75 72 69 63 65 22 2c
## [3361] 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 75 72 69 63 65 22 7d 2c 22 6d 66 65
## [3385] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 6b 20
## [3409] 4d 6f 72 69 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 6f 72 69 73 22 7d
## [3433] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43
## [3457] 6f 6f 6b 20 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [3481] 22 43 6f 6f 6b 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e 61
## [3505] 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [3529] 43 6f 6f 6b 20 49 73 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [3553] 43 6f 6f 6b 20 49 73 6c 61 6e 64 73 22 7d 2c 22 72 61 72 22 3a 7b 22 6f
## [3577] 66 66 69 63 69 61 6c 22 3a 22 4b c5 ab 6b 69 20 27 c4 80 69 72 61 6e 69
## [3601] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4b c5 ab 6b 69 20 27 c4 80 69 72 61
## [3625] 6e 69 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [3649] 22 3a 22 50 61 6c 61 75 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [3673] 70 75 62 6c 69 63 20 6f 66 20 50 61 6c 61 75 22 2c 22 6e 61 74 69 76 65
## [3697] 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [3721] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 50 61 6c 61 75 22 2c 22 63 6f
## [3745] 6d 6d 6f 6e 22 3a 22 50 61 6c 61 75 22 7d 2c 22 70 61 75 22 3a 7b 22 6f
## [3769] 66 66 69 63 69 61 6c 22 3a 22 42 65 6c 75 75 20 65 72 20 61 20 42 65 6c
## [3793] 61 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 6c 61 75 22 7d 7d 7d 7d
## [3817] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 65 70 61
## [3841] 6c 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 6c 20 44
## [3865] 65 6d 6f 63 72 61 74 69 63 20 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 65
## [3889] 70 61 6c 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6e 65 70 22
## [3913] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e0 a4 a8 e0 a5 87 e0 a4 aa e0
## [3937] a4 be e0 a4 b2 20 e0 a4 b8 e0 a4 82 e0 a4 98 e0 a5 80 e0 a4 af 20 e0 a4
## [3961] b2 e0 a5 8b e0 a4 95 e0 a4 a4 e0 a4 be e0 a4 a8 e0 a5 8d e0 a4 a4 e0 a5
## [3985] 8d e0 a4 b0 e0 a4 bf e0 a4 95 20 e0 a4 97 e0 a4 a3 e0 a4 a4 e0 a4 a8 e0
## [4009] a5 8d e0 a4 a4 e0 a5 8d e0 a4 b0 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e0
## [4033] a4 a8 e0 a5 87 e0 a4 aa e0 a4 be e0 a4 b2 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [4057] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 65 77 20 5a 65 61 6c 61
## [4081] 6e 64 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4e 65 77 20 5a 65 61 6c
## [4105] 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22
## [4129] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4e 65 77 20 5a 65 61 6c 61 6e
## [4153] 64 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 65 77 20 5a 65 61 6c 61 6e 64
## [4177] 22 7d 2c 22 6d 72 69 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 6f
## [4201] 74 65 61 72 6f 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 6f 74 65 61 72
## [4225] 6f 61 22 7d 2c 22 6e 7a 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [4249] 4e 65 77 20 5a 65 61 6c 61 6e 64 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e
## [4273] 65 77 20 5a 65 61 6c 61 6e 64 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [4297] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 50 69 74 63 61 69 72 6e 20 49 73 6c 61
## [4321] 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 69 74 63 61 69 72
## [4345] 6e 20 47 72 6f 75 70 20 6f 66 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61 74
## [4369] 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69
## [4393] 61 6c 22 3a 22 50 69 74 63 61 69 72 6e 20 47 72 6f 75 70 20 6f 66 20 49
## [4417] 73 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 69 74 63 61 69
## [4441] 72 6e 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [4465] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 65 79 63 68 65 6c 6c 65 73 22 2c 22
## [4489] 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 53
## [4513] 65 79 63 68 65 6c 6c 65 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [4537] 7b 22 63 72 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 69
## [4561] 62 6c 69 6b 20 53 65 73 65 6c 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 65
## [4585] 73 65 6c 22 7d 2c 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [4609] 22 52 65 70 75 62 6c 69 63 20 6f 66 20 53 65 79 63 68 65 6c 6c 65 73 22
## [4633] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 65 79 63 68 65 6c 6c 65 73 22 7d 2c
## [4657] 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75
## [4681] 62 6c 69 71 75 65 20 64 65 73 20 53 65 79 63 68 65 6c 6c 65 73 22 2c 22
## [4705] 63 6f 6d 6d 6f 6e 22 3a 22 53 65 79 63 68 65 6c 6c 65 73 22 7d 7d 7d 7d
## [4729] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 55 6e 69 74
## [4753] 65 64 20 41 72 61 62 20 45 6d 69 72 61 74 65 73 22 2c 22 6f 66 66 69 63
## [4777] 69 61 6c 22 3a 22 55 6e 69 74 65 64 20 41 72 61 62 20 45 6d 69 72 61 74
## [4801] 65 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a
## [4825] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 a7 d9 84 d8 a5 d9 85 d8 a7 d8
## [4849] b1 d8 a7 d8 aa 20 d8 a7 d9 84 d8 b9 d8 b1 d8 a8 d9 8a d8 a9 20 d8 a7 d9
## [4873] 84 d9 85 d8 aa d8 ad d8 af d8 a9 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8
## [4897] af d9 88 d9 84 d8 a9 20 d8 a7 d9 84 d8 a5 d9 85 d8 a7 d8 b1 d8 a7 d8 aa
## [4921] 20 d8 a7 d9 84 d8 b9 d8 b1 d8 a8 d9 8a d8 a9 20 d8 a7 d9 84 d9 85 d8 aa
## [4945] d8 ad d8 af d8 a9 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [4969] 6d 6d 6f 6e 22 3a 22 42 65 6c 61 72 75 73 22 2c 22 6f 66 66 69 63 69 61
## [4993] 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 42 65 6c 61 72 75 73 22
## [5017] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 62 65 6c 22 3a 7b 22 6f
## [5041] 66 66 69 63 69 61 6c 22 3a 22 d0 a0 d1 8d d1 81 d0 bf d1 83 d0 b1 d0 bb
## [5065] d1 96 d0 ba d0 b0 20 d0 91 d0 b5 d0 bb d0 b0 d1 80 d1 83 d1 81 d1 8c 22
## [5089] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 91 d0 b5 d0 bb d0 b0 d1 80 d1 83 cc
## [5113] 81 d1 81 d1 8c 22 7d 2c 22 72 75 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [5137] 22 3a 22 d0 a0 d0 b5 d1 81 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba d0 b0 20
## [5161] d0 91 d0 b5 d0 bb d0 b0 d1 80 d1 83 d1 81 d1 8c 22 2c 22 63 6f 6d 6d 6f
## [5185] 6e 22 3a 22 d0 91 d0 b5 d0 bb d0 b0 d1 80 d1 83 d1 81 d1 8c 22 7d 7d 7d
## [5209] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 44 6f 6d
## [5233] 69 6e 69 63 61 6e 20 52 65 70 75 62 6c 69 63 22 2c 22 6f 66 66 69 63 69
## [5257] 61 6c 22 3a 22 44 6f 6d 69 6e 69 63 61 6e 20 52 65 70 75 62 6c 69 63 22
## [5281] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70 61 22 3a 7b 22 6f
## [5305] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 44 6f 6d
## [5329] 69 6e 69 63 61 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 52 65 70 c3 ba
## [5353] 62 6c 69 63 61 20 44 6f 6d 69 6e 69 63 61 6e 61 22 7d 7d 7d 7d 2c 7b 22
## [5377] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 69 62 79 61 22 2c
## [5401] 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61 74 65 20 6f 66 20 4c 69 62
## [5425] 79 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a
## [5449] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 a7 d9 84 d8 af d9 88 d9 84 d8
## [5473] a9 20 d9 84 d9 8a d8 a8 d9 8a d8 a7 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [5497] e2 80 8f d9 84 d9 8a d8 a8 d9 8a d8 a7 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d
## [5521] 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 54 6f 6b 65 6c 61 75 22 2c 22
## [5545] 6f 66 66 69 63 69 61 6c 22 3a 22 54 6f 6b 65 6c 61 75 22 2c 22 6e 61 74
## [5569] 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69
## [5593] 61 6c 22 3a 22 54 6f 6b 65 6c 61 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [5617] 54 6f 6b 65 6c 61 75 22 7d 2c 22 73 6d 6f 22 3a 7b 22 6f 66 66 69 63 69
## [5641] 61 6c 22 3a 22 54 6f 6b 65 6c 61 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [5665] 54 6f 6b 65 6c 61 75 22 7d 2c 22 74 6b 6c 22 3a 7b 22 6f 66 66 69 63 69
## [5689] 61 6c 22 3a 22 54 6f 6b 65 6c 61 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [5713] 54 6f 6b 65 6c 61 75 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [5737] 6f 6d 6d 6f 6e 22 3a 22 43 72 6f 61 74 69 61 22 2c 22 6f 66 66 69 63 69
## [5761] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 43 72 6f 61 74 69 61
## [5785] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 68 72 76 22 3a 7b 22
## [5809] 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 6b 61 20 48 72 76
## [5833] 61 74 73 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 48 72 76 61 74 73 6b
## [5857] 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [5881] 3a 22 50 68 69 6c 69 70 70 69 6e 65 73 22 2c 22 6f 66 66 69 63 69 61 6c
## [5905] 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 74 68 65 20 50 68 69 6c 69
## [5929] 70 70 69 6e 65 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65
## [5953] 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [5977] 63 20 6f 66 20 74 68 65 20 50 68 69 6c 69 70 70 69 6e 65 73 22 2c 22 63
## [6001] 6f 6d 6d 6f 6e 22 3a 22 50 68 69 6c 69 70 70 69 6e 65 73 22 7d 2c 22 66
## [6025] 69 6c 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [6049] 63 20 6f 66 20 74 68 65 20 50 68 69 6c 69 70 70 69 6e 65 73 22 2c 22 63
## [6073] 6f 6d 6d 6f 6e 22 3a 22 50 69 6c 69 70 69 6e 61 73 22 7d 7d 7d 7d 2c 7b
## [6097] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 6c 62 61 6e 69
## [6121] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20
## [6145] 6f 66 20 41 6c 62 61 6e 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [6169] 3a 7b 22 73 71 69 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [6193] 75 62 6c 69 6b 61 20 65 20 53 68 71 69 70 c3 ab 72 69 73 c3 ab 22 2c 22
## [6217] 63 6f 6d 6d 6f 6e 22 3a 22 53 68 71 69 70 c3 ab 72 69 61 22 7d 7d 7d 7d
## [6241] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 75 76
## [6265] 65 74 20 49 73 6c 61 6e 64 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 42
## [6289] 6f 75 76 65 74 20 49 73 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [6313] 65 22 3a 7b 22 6e 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42
## [6337] 6f 75 76 65 74 c3 b8 79 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 75
## [6361] 76 65 74 c3 b8 79 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [6385] 6f 6d 6d 6f 6e 22 3a 22 49 6e 64 6f 6e 65 73 69 61 22 2c 22 6f 66 66 69
## [6409] 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 49 6e 64 6f 6e
## [6433] 65 73 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 69 6e 64
## [6457] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 6b 20
## [6481] 49 6e 64 6f 6e 65 73 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 49 6e 64
## [6505] 6f 6e 65 73 69 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [6529] 6d 6d 6f 6e 22 3a 22 54 68 61 69 6c 61 6e 64 22 2c 22 6f 66 66 69 63 69
## [6553] 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 54 68 61 69 6c 61 6e 64
## [6577] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 74 68 61 22 3a 7b 22
## [6601] 6f 66 66 69 63 69 61 6c 22 3a 22 e0 b8 a3 e0 b8 b2 e0 b8 8a e0 b8 ad e0
## [6625] b8 b2 e0 b8 93 e0 b8 b2 e0 b8 88 e0 b8 b1 e0 b8 81 e0 b8 a3 e0 b9 84 e0
## [6649] b8 97 e0 b8 a2 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e0 b8 9b e0 b8 a3 e0
## [6673] b8 b0 e0 b9 80 e0 b8 97 e0 b8 a8 e0 b9 84 e0 b8 97 e0 b8 a2 22 7d 7d 7d
## [6697] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 61 74
## [6721] 76 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [6745] 63 20 6f 66 20 4c 61 74 76 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [6769] 22 3a 7b 22 6c 61 76 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4c 61
## [6793] 74 76 69 6a 61 73 20 52 65 70 75 62 6c 69 6b 61 73 22 2c 22 63 6f 6d 6d
## [6817] 6f 6e 22 3a 22 4c 61 74 76 69 6a 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [6841] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 45 63 75 61 64 6f 72 22 2c 22 6f
## [6865] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 45 63
## [6889] 75 61 64 6f 72 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70
## [6913] 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69
## [6937] 63 61 20 64 65 6c 20 45 63 75 61 64 6f 72 22 2c 22 63 6f 6d 6d 6f 6e 22
## [6961] 3a 22 45 63 75 61 64 6f 72 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b
## [6985] 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 65 6e 79 61 22 2c 22 6f 66 66 69 63 69
## [7009] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4b 65 6e 79 61 22 2c
## [7033] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66
## [7057] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4b 65 6e
## [7081] 79 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 65 6e 79 61 22 7d 2c 22 73
## [7105] 77 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [7129] 63 20 6f 66 20 4b 65 6e 79 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 65
## [7153] 6e 79 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [7177] 6e 22 3a 22 4c 69 62 65 72 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [7201] 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4c 69 62 65 72 69 61 22 2c 22 6e
## [7225] 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69
## [7249] 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4c 69 62 65 72
## [7273] 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 69 62 65 72 69 61 22 7d 7d
## [7297] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 72
## [7321] 69 74 69 73 68 20 56 69 72 67 69 6e 20 49 73 6c 61 6e 64 73 22 2c 22 6f
## [7345] 66 66 69 63 69 61 6c 22 3a 22 56 69 72 67 69 6e 20 49 73 6c 61 6e 64 73
## [7369] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22
## [7393] 6f 66 66 69 63 69 61 6c 22 3a 22 56 69 72 67 69 6e 20 49 73 6c 61 6e 64
## [7417] 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 72 69 74 69 73 68 20 56 69 72
## [7441] 67 69 6e 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22
## [7465] 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 6e 20 4d 61 72 69 6e 6f 22 2c
## [7489] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [7513] 53 61 6e 20 4d 61 72 69 6e 6f 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [7537] 3a 7b 22 69 74 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [7561] 75 62 62 6c 69 63 61 20 64 69 20 53 61 6e 20 4d 61 72 69 6e 6f 22 2c 22
## [7585] 63 6f 6d 6d 6f 6e 22 3a 22 53 61 6e 20 4d 61 72 69 6e 6f 22 7d 7d 7d 7d
## [7609] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 49 6e 64 69
## [7633] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20
## [7657] 6f 66 20 49 6e 64 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [7681] 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62
## [7705] 6c 69 63 20 6f 66 20 49 6e 64 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [7729] 49 6e 64 69 61 22 7d 2c 22 68 69 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [7753] 22 3a 22 e0 a4 ad e0 a4 be e0 a4 b0 e0 a4 a4 20 e0 a4 97 e0 a4 a3 e0 a4
## [7777] b0 e0 a4 be e0 a4 9c e0 a5 8d e0 a4 af 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [7801] 22 e0 a4 ad e0 a4 be e0 a4 b0 e0 a4 a4 22 7d 2c 22 74 61 6d 22 3a 7b 22
## [7825] 6f 66 66 69 63 69 61 6c 22 3a 22 e0 ae 87 e0 ae a8 e0 af 8d e0 ae a4 e0
## [7849] ae bf e0 ae af e0 ae 95 e0 af 8d 20 e0 ae 95 e0 af 81 e0 ae 9f e0 ae bf
## [7873] e0 ae af e0 ae b0 e0 ae 9a e0 af 81 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [7897] e0 ae 87 e0 ae a8 e0 af 8d e0 ae a4 e0 ae bf e0 ae af e0 ae be 22 7d 7d
## [7921] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 61
## [7945] 68 72 61 69 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64
## [7969] 6f 6d 20 6f 66 20 42 61 68 72 61 69 6e 22 2c 22 6e 61 74 69 76 65 4e 61
## [7993] 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [8017] d9 85 d9 85 d9 84 d9 83 d8 a9 20 d8 a7 d9 84 d8 a8 d8 ad d8 b1 d9 8a d9
## [8041] 86 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e2 80 8f d8 a7 d9 84 d8 a8 d8 ad
## [8065] d8 b1 d9 8a d9 86 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [8089] 6d 6d 6f 6e 22 3a 22 4d 61 6c 61 77 69 22 2c 22 6f 66 66 69 63 69 61 6c
## [8113] 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4d 61 6c 61 77 69 22 2c 22
## [8137] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66
## [8161] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4d 61 6c 61
## [8185] 77 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 6c 61 77 69 22 7d 2c 22
## [8209] 6e 79 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 68 61 6c 6f 20
## [8233] 63 68 61 20 4d 61 6c 61 77 69 2c 20 44 7a 69 6b 6f 20 6c 61 20 4d 61 6c
## [8257] 61 c5 b5 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 6c 61 c5 b5 69 22
## [8281] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [8305] 49 63 65 6c 61 6e 64 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 63 65
## [8329] 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 69 73 6c
## [8353] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 c3 8d 73 6c 61 6e 64 22 2c
## [8377] 22 63 6f 6d 6d 6f 6e 22 3a 22 c3 8d 73 6c 61 6e 64 22 7d 7d 7d 7d 2c 7b
## [8401] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 72 75 6e 65 69
## [8425] 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4e 61 74 69 6f 6e 20 6f 66 20
## [8449] 42 72 75 6e 65 69 2c 20 41 62 6f 64 65 20 6f 66 20 50 65 61 63 65 22 2c
## [8473] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6d 73 61 22 3a 7b 22 6f 66
## [8497] 66 69 63 69 61 6c 22 3a 22 4e 61 74 69 6f 6e 20 6f 66 20 42 72 75 6e 65
## [8521] 69 2c 20 41 62 6f 64 65 20 44 61 6d 61 69 22 2c 22 63 6f 6d 6d 6f 6e 22
## [8545] 3a 22 4e 65 67 61 72 61 20 42 72 75 6e 65 69 20 44 61 72 75 73 73 61 6c
## [8569] 61 6d 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [8593] 22 3a 22 46 72 65 6e 63 68 20 47 75 69 61 6e 61 22 2c 22 6f 66 66 69 63
## [8617] 69 61 6c 22 3a 22 47 75 69 61 6e 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [8641] 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 47
## [8665] 75 79 61 6e 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 79 61 6e 65 20
## [8689] 66 72 61 6e c3 a7 61 69 73 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [8713] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 6d 6f 61 22 2c 22 6f 66 66 69 63
## [8737] 69 61 6c 22 3a 22 49 6e 64 65 70 65 6e 64 65 6e 74 20 53 74 61 74 65 20
## [8761] 6f 66 20 53 61 6d 6f 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [8785] 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 6e 64 65 70
## [8809] 65 6e 64 65 6e 74 20 53 74 61 74 65 20 6f 66 20 53 61 6d 6f 61 22 2c 22
## [8833] 63 6f 6d 6d 6f 6e 22 3a 22 53 61 6d 6f 61 22 7d 2c 22 73 6d 6f 22 3a 7b
## [8857] 22 6f 66 66 69 63 69 61 6c 22 3a 22 4d 61 6c 6f 20 53 61 ca bb 6f 6c 6f
## [8881] 74 6f 20 54 75 74 6f ca bb 61 74 61 73 69 20 6f 20 53 c4 81 6d 6f 61 22
## [8905] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 c4 81 6d 6f 61 22 7d 7d 7d 7d 2c 7b
## [8929] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 65 6f 72 67 69
## [8953] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 47 65 6f 72 67 69 61 22 2c
## [8977] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6b 61 74 22 3a 7b 22 6f 66
## [9001] 66 69 63 69 61 6c 22 3a 22 e1 83 a1 e1 83 90 e1 83 a5 e1 83 90 e1 83 a0
## [9025] e1 83 97 e1 83 95 e1 83 94 e1 83 9a e1 83 9d 22 2c 22 63 6f 6d 6d 6f 6e
## [9049] 22 3a 22 e1 83 a1 e1 83 90 e1 83 a5 e1 83 90 e1 83 a0 e1 83 97 e1 83 95
## [9073] e1 83 94 e1 83 9a e1 83 9d 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b
## [9097] 22 63 6f 6d 6d 6f 6e 22 3a 22 43 61 72 69 62 62 65 61 6e 20 4e 65 74 68
## [9121] 65 72 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 6f 6e
## [9145] 61 69 72 65 2c 20 53 69 6e 74 20 45 75 73 74 61 74 69 75 73 20 61 6e 64
## [9169] 20 53 61 62 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6e 6c
## [9193] 64 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 6f 6e 61 69 72 65 2c
## [9217] 20 53 69 6e 74 20 45 75 73 74 61 74 69 75 73 20 65 6e 20 53 61 62 61 22
## [9241] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 61 72 69 62 69 73 63 68 20 4e 65 64
## [9265] 65 72 6c 61 6e 64 22 7d 2c 22 70 61 70 22 3a 7b 22 6f 66 66 69 63 69 61
## [9289] 6c 22 3a 22 42 6f 6e 65 69 72 75 2c 20 53 69 6e 74 20 45 75 73 74 61 74
## [9313] 69 75 73 20 79 20 53 61 62 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f
## [9337] 6e 65 69 72 75 2c 20 53 69 6e 74 20 45 75 73 74 61 74 69 75 73 20 79 20
## [9361] 53 61 62 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [9385] 6f 6e 22 3a 22 48 65 61 72 64 20 49 73 6c 61 6e 64 20 61 6e 64 20 4d 63
## [9409] 44 6f 6e 61 6c 64 20 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61
## [9433] 6c 22 3a 22 48 65 61 72 64 20 49 73 6c 61 6e 64 20 61 6e 64 20 4d 63 44
## [9457] 6f 6e 61 6c 64 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e 61
## [9481] 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [9505] 48 65 61 72 64 20 49 73 6c 61 6e 64 20 61 6e 64 20 4d 63 44 6f 6e 61 6c
## [9529] 64 20 49 73 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 48 65 61
## [9553] 72 64 20 49 73 6c 61 6e 64 20 61 6e 64 20 4d 63 44 6f 6e 61 6c 64 20 49
## [9577] 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [9601] 6d 6d 6f 6e 22 3a 22 50 61 70 75 61 20 4e 65 77 20 47 75 69 6e 65 61 22
## [9625] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 6e 64 65 70 65 6e 64 65 6e 74
## [9649] 20 53 74 61 74 65 20 6f 66 20 50 61 70 75 61 20 4e 65 77 20 47 75 69 6e
## [9673] 65 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a
## [9697] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 6e 64 65 70 65 6e 64 65 6e 74
## [9721] 20 53 74 61 74 65 20 6f 66 20 50 61 70 75 61 20 4e 65 77 20 47 75 69 6e
## [9745] 65 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61 70 75 61 20 4e 65 77 20
## [9769] 47 75 69 6e 65 61 22 7d 2c 22 68 6d 6f 22 3a 7b 22 6f 66 66 69 63 69 61
## [9793] 6c 22 3a 22 49 6e 64 65 70 65 6e 64 65 6e 20 53 74 65 74 20 62 69 6c 6f
## [9817] 6e 67 20 50 61 70 75 61 20 4e 69 75 67 69 6e 69 22 2c 22 63 6f 6d 6d 6f
## [9841] 6e 22 3a 22 50 61 70 75 61 20 4e 69 75 20 47 69 6e 69 22 7d 2c 22 74 70
## [9865] 69 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 6e 64 65 70 65 6e 64
## [9889] 65 6e 20 53 74 65 74 20 62 69 6c 6f 6e 67 20 50 61 70 75 61 20 4e 69 75
## [9913] 67 69 6e 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61 70 75 61 20 4e 69
## [9937] 75 67 69 6e 69 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [9961] 6d 6f 6e 22 3a 22 47 68 61 6e 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [9985] 22 52 65 70 75 62 6c 69 63 20 6f 66 20 47 68 61 6e 61 22 2c 22 6e 61 74
## [10009] 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69
## [10033] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 47 68 61 6e 61 22 2c
## [10057] 22 63 6f 6d 6d 6f 6e 22 3a 22 47 68 61 6e 61 22 7d 7d 7d 7d 2c 7b 22 6e
## [10081] 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 66 67 68 61 6e 69 73
## [10105] 74 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 73 6c 61 6d 69 63
## [10129] 20 52 65 70 75 62 6c 69 63 20 6f 66 20 41 66 67 68 61 6e 69 73 74 61 6e
## [10153] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 70 72 73 22 3a 7b 22
## [10177] 6f 66 66 69 63 69 61 6c 22 3a 22 d8 ac d9 85 d9 87 d9 88 d8 b1 db 8c 20
## [10201] d8 a7 d8 b3 d9 84 d8 a7 d9 85 db 8c 20 d8 a7 d9 81 d8 ba d8 a7 d9 86 d8
## [10225] b3 d8 aa d8 a7 d9 86 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 a7 d9 81 d8
## [10249] ba d8 a7 d9 86 d8 b3 d8 aa d8 a7 d9 86 22 7d 2c 22 70 75 73 22 3a 7b 22
## [10273] 6f 66 66 69 63 69 61 6c 22 3a 22 d8 af 20 d8 a7 d9 81 d8 ba d8 a7 d9 86
## [10297] d8 b3 d8 aa d8 a7 d9 86 20 d8 a7 d8 b3 d9 84 d8 a7 d9 85 d9 8a 20 d8 ac
## [10321] d9 85 d9 87 d9 88 d8 b1 db 8c d8 aa 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [10345] d8 a7 d9 81 d8 ba d8 a7 d9 86 d8 b3 d8 aa d8 a7 d9 86 22 7d 2c 22 74 75
## [10369] 6b 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4f 77 67 61 6e 79 73 74
## [10393] 61 6e 20 59 73 6c 61 6d 20 52 65 73 70 75 62 6c 69 6b 61 73 79 22 2c 22
## [10417] 63 6f 6d 6d 6f 6e 22 3a 22 4f 77 67 61 6e 79 73 74 61 6e 22 7d 7d 7d 7d
## [10441] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 6f 73 74
## [10465] 61 20 52 69 63 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [10489] 62 6c 69 63 20 6f 66 20 43 6f 73 74 61 20 52 69 63 61 22 2c 22 6e 61 74
## [10513] 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69
## [10537] 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 64 65 20 43 6f 73 74 61
## [10561] 20 52 69 63 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 6f 73 74 61 20 52
## [10585] 69 63 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [10609] 6e 22 3a 22 46 69 6a 69 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [10633] 70 75 62 6c 69 63 20 6f 66 20 46 69 6a 69 22 2c 22 6e 61 74 69 76 65 4e
## [10657] 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [10681] 22 52 65 70 75 62 6c 69 63 20 6f 66 20 46 69 6a 69 22 2c 22 63 6f 6d 6d
## [10705] 6f 6e 22 3a 22 46 69 6a 69 22 7d 2c 22 66 69 6a 22 3a 7b 22 6f 66 66 69
## [10729] 63 69 61 6c 22 3a 22 4d 61 74 61 6e 69 74 75 20 54 75 67 61 6c 61 6c 61
## [10753] 20 6f 20 56 69 74 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 56 69 74 69 22
## [10777] 7d 2c 22 68 69 66 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e0 a4 b0
## [10801] e0 a4 bf e0 a4 aa e0 a4 ac e0 a5 8d e0 a4 b2 e0 a4 bf e0 a4 95 20 e0 a4
## [10825] 91 e0 a4 ab 20 e0 a4 ab e0 a5 80 e0 a4 9c e0 a5 80 22 2c 22 63 6f 6d 6d
## [10849] 6f 6e 22 3a 22 e0 a4 ab e0 a4 bf e0 a4 9c e0 a5 80 22 7d 7d 7d 7d 2c 7b
## [10873] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6f 75 74 68 20
## [10897] 4b 6f 72 65 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62
## [10921] 6c 69 63 20 6f 66 20 4b 6f 72 65 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [10945] 65 22 3a 7b 22 6b 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 eb
## [10969] 8c 80 ed 95 9c eb af bc ea b5 ad 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 ed
## [10993] 95 9c ea b5 ad 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [11017] 6d 6f 6e 22 3a 22 54 61 69 77 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [11041] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 43 68 69 6e 61 20 28 54 61 69
## [11065] 77 61 6e 29 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 7a 68 6f
## [11089] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e4 b8 ad e8 8f af e6 b0 91
## [11113] e5 9c 8b 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e5 8f b0 e7 81 a3 22 7d 7d
## [11137] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 7a
## [11161] 65 63 68 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 7a 65 63 68
## [11185] 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [11209] 7b 22 63 65 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 c4 8c 65 73
## [11233] 6b c3 a1 20 72 65 70 75 62 6c 69 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [11257] 22 c4 8c 65 73 6b 6f 22 7d 2c 22 73 6c 6b 22 3a 7b 22 6f 66 66 69 63 69
## [11281] 61 6c 22 3a 22 c4 8c 65 73 6b c3 a1 20 72 65 70 75 62 6c 69 6b 61 22 2c
## [11305] 22 63 6f 6d 6d 6f 6e 22 3a 22 c4 8c 65 73 6b 6f 22 7d 7d 7d 7d 2c 7b 22
## [11329] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 69 63 61 72 61 67
## [11353] 75 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63
## [11377] 20 6f 66 20 4e 69 63 61 72 61 67 75 61 22 2c 22 6e 61 74 69 76 65 4e 61
## [11401] 6d 65 22 3a 7b 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [11425] 52 65 70 c3 ba 62 6c 69 63 61 20 64 65 20 4e 69 63 61 72 61 67 75 61 22
## [11449] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 69 63 61 72 61 67 75 61 22 7d 7d 7d
## [11473] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 50 6f 72
## [11497] 74 75 67 61 6c 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 6f 72 74 75
## [11521] 67 75 65 73 65 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e
## [11545] 61 6d 65 22 3a 7b 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [11569] 22 52 65 70 c3 ba 62 6c 69 63 61 20 70 6f 72 74 75 67 75 c3 aa 73 22 2c
## [11593] 22 63 6f 6d 6d 6f 6e 22 3a 22 50 6f 72 74 75 67 61 6c 22 7d 7d 7d 7d 2c
## [11617] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 68 69 6c 65
## [11641] 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f
## [11665] 66 20 43 68 69 6c 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22
## [11689] 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62
## [11713] 6c 69 63 61 20 64 65 20 43 68 69 6c 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [11737] 22 43 68 69 6c 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [11761] 6d 6d 6f 6e 22 3a 22 47 61 6d 62 69 61 22 2c 22 6f 66 66 69 63 69 61 6c
## [11785] 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 74 68 65 20 47 61 6d 62 69
## [11809] 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b
## [11833] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [11857] 74 68 65 20 47 61 6d 62 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 61
## [11881] 6d 62 69 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [11905] 6f 6e 22 3a 22 42 65 6c 69 7a 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [11929] 22 42 65 6c 69 7a 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22
## [11953] 62 6a 7a 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 65 6c 69 7a 65
## [11977] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 6c 69 7a 65 22 7d 2c 22 65 6e
## [12001] 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 65 6c 69 7a 65 22 2c
## [12025] 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 6c 69 7a 65 22 7d 2c 22 73 70 61 22
## [12049] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 65 6c 69 63 65 22 2c 22 63
## [12073] 6f 6d 6d 6f 6e 22 3a 22 42 65 6c 69 63 65 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [12097] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 6c 64 69 76 65 73 22
## [12121] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66
## [12145] 20 74 68 65 20 4d 61 6c 64 69 76 65 73 22 2c 22 6e 61 74 69 76 65 4e 61
## [12169] 6d 65 22 3a 7b 22 64 69 76 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [12193] de 8b de a8 de 88 de ac de 80 de a8 de 83 de a7 de 87 de b0 de 96 de ad
## [12217] de 8e de ac 20 de 96 de aa de 89 de b0 de 80 de ab de 83 de a8 de 87 de
## [12241] b0 de 94 de a7 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 de 8b de a8 de 88 de
## [12265] ac de 80 de a8 de 83 de a7 de 87 de b0 de 96 de ad de 8e de ac 22 7d 7d
## [12289] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 56 61
## [12313] 6e 75 61 74 75 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62
## [12337] 6c 69 63 20 6f 66 20 56 61 6e 75 61 74 75 22 2c 22 6e 61 74 69 76 65 4e
## [12361] 61 6d 65 22 3a 7b 22 62 69 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [12385] 22 52 69 70 61 62 6c 69 6b 20 62 6c 6f 6e 67 20 56 61 6e 75 61 74 75 22
## [12409] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 56 61 6e 75 61 74 75 22 7d 2c 22 65 6e
## [12433] 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63
## [12457] 20 6f 66 20 56 61 6e 75 61 74 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 56
## [12481] 61 6e 75 61 74 75 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61
## [12505] 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 65 20 56 61 6e 75 61
## [12529] 74 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 56 61 6e 75 61 74 75 22 7d 7d
## [12553] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61
## [12577] 6c 61 79 73 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4d 61 6c 61
## [12601] 79 73 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67
## [12625] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4d 61 6c 61 79 73 69 61 22
## [12649] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 6c 61 79 73 69 61 22 7d 2c 22 6d
## [12673] 73 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d9 85 d9 84 d9 8a d8
## [12697] b3 d9 8a d8 a7 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d9 85 d9 84 d9 8a d8
## [12721] b3 d9 8a d8 a7 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [12745] 6d 6f 6e 22 3a 22 41 6e 74 69 67 75 61 20 61 6e 64 20 42 61 72 62 75 64
## [12769] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 6e 74 69 67 75 61 20 61
## [12793] 6e 64 20 42 61 72 62 75 64 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [12817] 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 6e 74
## [12841] 69 67 75 61 20 61 6e 64 20 42 61 72 62 75 64 61 22 2c 22 63 6f 6d 6d 6f
## [12865] 6e 22 3a 22 41 6e 74 69 67 75 61 20 61 6e 64 20 42 61 72 62 75 64 61 22
## [12889] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [12913] 49 72 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 73 6c 61 6d 69
## [12937] 63 20 52 65 70 75 62 6c 69 63 20 6f 66 20 49 72 61 6e 22 2c 22 6e 61 74
## [12961] 69 76 65 4e 61 6d 65 22 3a 7b 22 66 61 73 22 3a 7b 22 6f 66 66 69 63 69
## [12985] 61 6c 22 3a 22 d8 ac d9 85 d9 87 d9 88 d8 b1 db 8c 20 d8 a7 d8 b3 d9 84
## [13009] d8 a7 d9 85 db 8c 20 d8 a7 db 8c d8 b1 d8 a7 d9 86 22 2c 22 63 6f 6d 6d
## [13033] 6f 6e 22 3a 22 d8 a7 db 8c d8 b1 d8 a7 d9 86 22 7d 7d 7d 7d 2c 7b 22 6e
## [13057] 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 52 75 73 73 69 61 22 2c
## [13081] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 75 73 73 69 61 6e 20 46 65 64 65
## [13105] 72 61 74 69 6f 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 72
## [13129] 75 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d0 a0 d0 be d1 81 d1
## [13153] 81 d0 b8 d0 b9 d1 81 d0 ba d0 b0 d1 8f 20 d0 a4 d0 b5 d0 b4 d0 b5 d1 80
## [13177] d0 b0 d1 86 d0 b8 d1 8f 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 a0 d0 be
## [13201] d1 81 d1 81 d0 b8 d1 8f 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [13225] 63 6f 6d 6d 6f 6e 22 3a 22 4b 69 72 69 62 61 74 69 22 2c 22 6f 66 66 69
## [13249] 63 69 61 6c 22 3a 22 49 6e 64 65 70 65 6e 64 65 6e 74 20 61 6e 64 20 53
## [13273] 6f 76 65 72 65 69 67 6e 20 52 65 70 75 62 6c 69 63 20 6f 66 20 4b 69 72
## [13297] 69 62 61 74 69 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e
## [13321] 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 6e 64 65 70 65 6e 64
## [13345] 65 6e 74 20 61 6e 64 20 53 6f 76 65 72 65 69 67 6e 20 52 65 70 75 62 6c
## [13369] 69 63 20 6f 66 20 4b 69 72 69 62 61 74 69 22 2c 22 63 6f 6d 6d 6f 6e 22
## [13393] 3a 22 4b 69 72 69 62 61 74 69 22 7d 2c 22 67 69 6c 22 3a 7b 22 6f 66 66
## [13417] 69 63 69 61 6c 22 3a 22 52 69 62 61 62 65 72 69 6b 69 20 4b 69 72 69 62
## [13441] 61 74 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 69 72 69 62 61 74 69 22
## [13465] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [13489] 4d 61 72 74 69 6e 69 71 75 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [13513] 4d 61 72 74 69 6e 69 71 75 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [13537] 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4d 61 72
## [13561] 74 69 6e 69 71 75 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 72 74 69
## [13585] 6e 69 71 75 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [13609] 6d 6f 6e 22 3a 22 42 61 6e 67 6c 61 64 65 73 68 22 2c 22 6f 66 66 69 63
## [13633] 69 61 6c 22 3a 22 50 65 6f 70 6c 65 27 73 20 52 65 70 75 62 6c 69 63 20
## [13657] 6f 66 20 42 61 6e 67 6c 61 64 65 73 68 22 2c 22 6e 61 74 69 76 65 4e 61
## [13681] 6d 65 22 3a 7b 22 62 65 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [13705] e0 a6 ac e0 a6 be e0 a6 82 e0 a6 b2 e0 a6 be e0 a6 a6 e0 a7 87 e0 a6 b6
## [13729] 20 e0 a6 97 e0 a6 a3 e0 a6 aa e0 a7 8d e0 a6 b0 e0 a6 9c e0 a6 be e0 a6
## [13753] a4 e0 a6 a8 e0 a7 8d e0 a6 a4 e0 a7 8d e0 a6 b0 e0 a7 80 22 2c 22 63 6f
## [13777] 6d 6d 6f 6e 22 3a 22 e0 a6 ac e0 a6 be e0 a6 82 e0 a6 b2 e0 a6 be e0 a6
## [13801] a6 e0 a7 87 e0 a6 b6 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [13825] 6f 6d 6d 6f 6e 22 3a 22 41 72 6d 65 6e 69 61 22 2c 22 6f 66 66 69 63 69
## [13849] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 41 72 6d 65 6e 69 61
## [13873] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 68 79 65 22 3a 7b 22
## [13897] 6f 66 66 69 63 69 61 6c 22 3a 22 d5 80 d5 a1 d5 b5 d5 a1 d5 bd d5 bf d5
## [13921] a1 d5 b6 d5 ab 20 d5 80 d5 a1 d5 b6 d6 80 d5 a1 d5 ba d5 a5 d5 bf d5 b8
## [13945] d6 82 d5 a9 d5 b5 d5 b8 d6 82 d5 b6 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [13969] d5 80 d5 a1 d5 b5 d5 a1 d5 bd d5 bf d5 a1 d5 b6 22 7d 7d 7d 7d 2c 7b 22
## [13993] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 65 78 69 63 6f 22
## [14017] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 55 6e 69 74 65 64 20 4d 65 78 69
## [14041] 63 61 6e 20 53 74 61 74 65 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [14065] 3a 7b 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 45 73 74
## [14089] 61 64 6f 73 20 55 6e 69 64 6f 73 20 4d 65 78 69 63 61 6e 6f 73 22 2c 22
## [14113] 63 6f 6d 6d 6f 6e 22 3a 22 4d c3 a9 78 69 63 6f 22 7d 7d 7d 7d 2c 7b 22
## [14137] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 45 73 74 6f 6e 69 61
## [14161] 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f
## [14185] 66 20 45 73 74 6f 6e 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [14209] 7b 22 65 73 74 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 45 65 73 74
## [14233] 69 20 56 61 62 61 72 69 69 6b 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 45 65
## [14257] 73 74 69 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [14281] 6e 22 3a 22 4f 6d 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 75
## [14305] 6c 74 61 6e 61 74 65 20 6f 66 20 4f 6d 61 6e 22 2c 22 6e 61 74 69 76 65
## [14329] 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [14353] 3a 22 d8 b3 d9 84 d8 b7 d9 86 d8 a9 20 d8 b9 d9 85 d8 a7 d9 86 22 2c 22
## [14377] 63 6f 6d 6d 6f 6e 22 3a 22 d8 b9 d9 85 d8 a7 d9 86 22 7d 7d 7d 7d 2c 7b
## [14401] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 55 6e 69 74 65 64
## [14425] 20 53 74 61 74 65 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 55 6e 69
## [14449] 74 65 64 20 53 74 61 74 65 73 20 6f 66 20 41 6d 65 72 69 63 61 22 2c 22
## [14473] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66
## [14497] 69 63 69 61 6c 22 3a 22 55 6e 69 74 65 64 20 53 74 61 74 65 73 20 6f 66
## [14521] 20 41 6d 65 72 69 63 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 55 6e 69 74
## [14545] 65 64 20 53 74 61 74 65 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b
## [14569] 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 69 65 63 68 74 65 6e 73 74 65 69 6e 22
## [14593] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 72 69 6e 63 69 70 61 6c 69 74
## [14617] 79 20 6f 66 20 4c 69 65 63 68 74 65 6e 73 74 65 69 6e 22 2c 22 6e 61 74
## [14641] 69 76 65 4e 61 6d 65 22 3a 7b 22 64 65 75 22 3a 7b 22 6f 66 66 69 63 69
## [14665] 61 6c 22 3a 22 46 c3 bc 72 73 74 65 6e 74 75 6d 20 4c 69 65 63 68 74 65
## [14689] 6e 73 74 65 69 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 69 65 63 68 74
## [14713] 65 6e 73 74 65 69 6e 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [14737] 6f 6d 6d 6f 6e 22 3a 22 42 61 68 61 6d 61 73 22 2c 22 6f 66 66 69 63 69
## [14761] 61 6c 22 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74 68 20 6f 66 20 74 68 65
## [14785] 20 42 61 68 61 6d 61 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [14809] 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 6d 6d 6f
## [14833] 6e 77 65 61 6c 74 68 20 6f 66 20 74 68 65 20 42 61 68 61 6d 61 73 22 2c
## [14857] 22 63 6f 6d 6d 6f 6e 22 3a 22 42 61 68 61 6d 61 73 22 7d 7d 7d 7d 2c 7b
## [14881] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 6e 69 6e 22
## [14905] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66
## [14929] 20 42 65 6e 69 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66
## [14953] 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c
## [14977] 69 71 75 65 20 64 75 20 42 c3 a9 6e 69 6e 22 2c 22 63 6f 6d 6d 6f 6e 22
## [15001] 3a 22 42 c3 a9 6e 69 6e 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [15025] 63 6f 6d 6d 6f 6e 22 3a 22 4b 6f 73 6f 76 6f 22 2c 22 6f 66 66 69 63 69
## [15049] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4b 6f 73 6f 76 6f 22
## [15073] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 71 69 22 3a 7b 22 6f
## [15097] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 6b 61 20 65 20 4b 6f
## [15121] 73 6f 76 c3 ab 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 6f 73 6f 76 61
## [15145] 22 7d 2c 22 73 72 70 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d0 a0
## [15169] d0 b5 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba d0 b0 20 d0 9a d0 be d1 81 d0
## [15193] be d0 b2 d0 be 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 9a d0 be d1 81 d0
## [15217] be d0 b2 d0 be 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [15241] 6d 6f 6e 22 3a 22 54 75 76 61 6c 75 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [15265] 3a 22 54 75 76 61 6c 75 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [15289] 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 54 75 76 61 6c
## [15313] 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 75 76 61 6c 75 22 7d 2c 22 74
## [15337] 76 6c 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 54 75 76 61 6c 75 22
## [15361] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 75 76 61 6c 75 22 7d 7d 7d 7d 2c 7b
## [15385] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 46 61 72 6f 65 20
## [15409] 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 61 72
## [15433] 6f 65 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [15457] 3a 7b 22 64 61 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 c3 a6
## [15481] 72 c3 b8 65 72 6e 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 46 c3 a6 72 c3
## [15505] b8 65 72 6e 65 22 7d 2c 22 66 61 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [15529] 22 3a 22 46 c3 b8 72 6f 79 61 72 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 46
## [15553] c3 b8 72 6f 79 61 72 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [15577] 6f 6d 6d 6f 6e 22 3a 22 43 61 79 6d 61 6e 20 49 73 6c 61 6e 64 73 22 2c
## [15601] 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 61 79 6d 61 6e 20 49 73 6c 61 6e
## [15625] 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a
## [15649] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 61 79 6d 61 6e 20 49 73 6c 61
## [15673] 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 61 79 6d 61 6e 20 49 73
## [15697] 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [15721] 6d 6f 6e 22 3a 22 45 67 79 70 74 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [15745] 22 41 72 61 62 20 52 65 70 75 62 6c 69 63 20 6f 66 20 45 67 79 70 74 22
## [15769] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f
## [15793] 66 66 69 63 69 61 6c 22 3a 22 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9
## [15817] 20 d9 85 d8 b5 d8 b1 20 d8 a7 d9 84 d8 b9 d8 b1 d8 a8 d9 8a d8 a9 22 2c
## [15841] 22 63 6f 6d 6d 6f 6e 22 3a 22 d9 85 d8 b5 d8 b1 22 7d 7d 7d 7d 2c 7b 22
## [15865] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 7a 65 72 62 61 69
## [15889] 6a 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [15913] 63 20 6f 66 20 41 7a 65 72 62 61 69 6a 61 6e 22 2c 22 6e 61 74 69 76 65
## [15937] 4e 61 6d 65 22 3a 7b 22 61 7a 65 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [15961] 3a 22 41 7a c9 99 72 62 61 79 63 61 6e 20 52 65 73 70 75 62 6c 69 6b 61
## [15985] 73 c4 b1 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 7a c9 99 72 62 61 79 63
## [16009] 61 6e 22 7d 2c 22 72 75 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [16033] d0 90 d0 b7 d0 b5 d1 80 d0 b1 d0 b0 d0 b9 d0 b4 d0 b6 d0 b0 d0 bd d1 81
## [16057] d0 ba d0 b0 d1 8f 20 d0 a0 d0 b5 d1 81 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0
## [16081] ba d0 b0 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 90 d0 b7 d0 b5 d1 80 d0
## [16105] b1 d0 b0 d0 b9 d0 b4 d0 b6 d0 b0 d0 bd 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d
## [16129] 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 75 73 74 72 61 6c 69 61 22
## [16153] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74
## [16177] 68 20 6f 66 20 41 75 73 74 72 61 6c 69 61 22 2c 22 6e 61 74 69 76 65 4e
## [16201] 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [16225] 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74 68 20 6f 66 20 41 75 73 74 72 61 6c
## [16249] 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 75 73 74 72 61 6c 69 61 22
## [16273] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [16297] 49 73 6c 65 20 6f 66 20 4d 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [16321] 22 49 73 6c 65 20 6f 66 20 4d 61 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [16345] 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49
## [16369] 73 6c 65 20 6f 66 20 4d 61 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 49 73
## [16393] 6c 65 20 6f 66 20 4d 61 6e 22 7d 2c 22 67 6c 76 22 3a 7b 22 6f 66 66 69
## [16417] 63 69 61 6c 22 3a 22 45 6c 6c 61 6e 20 56 61 6e 6e 69 6e 20 6f 72 20 4d
## [16441] 61 6e 6e 69 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 6e 6e 69 6e 22
## [16465] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [16489] 49 72 65 6c 61 6e 64 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [16513] 75 62 6c 69 63 20 6f 66 20 49 72 65 6c 61 6e 64 22 2c 22 6e 61 74 69 76
## [16537] 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [16561] 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 49 72 65 6c 61 6e 64 22 2c
## [16585] 22 63 6f 6d 6d 6f 6e 22 3a 22 49 72 65 6c 61 6e 64 22 7d 2c 22 67 6c 65
## [16609] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 6f 62 6c 61 63 68 74 20
## [16633] 6e 61 20 68 c3 89 69 72 65 61 6e 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [16657] c3 89 69 72 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [16681] 6d 6f 6e 22 3a 22 42 61 72 62 61 64 6f 73 22 2c 22 6f 66 66 69 63 69 61
## [16705] 6c 22 3a 22 42 61 72 62 61 64 6f 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [16729] 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42
## [16753] 61 72 62 61 64 6f 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 61 72 62 61
## [16777] 64 6f 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [16801] 6e 22 3a 22 45 6c 20 53 61 6c 76 61 64 6f 72 22 2c 22 6f 66 66 69 63 69
## [16825] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 45 6c 20 53 61 6c 76
## [16849] 61 64 6f 72 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70 61
## [16873] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63
## [16897] 61 20 64 65 20 45 6c 20 53 61 6c 76 61 64 6f 72 22 2c 22 63 6f 6d 6d 6f
## [16921] 6e 22 3a 22 45 6c 20 53 61 6c 76 61 64 6f 72 22 7d 7d 7d 7d 2c 7b 22 6e
## [16945] 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 61 74 65 6d 61 6c
## [16969] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20
## [16993] 6f 66 20 47 75 61 74 65 6d 61 6c 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [17017] 65 22 3a 7b 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52
## [17041] 65 70 c3 ba 62 6c 69 63 61 20 64 65 20 47 75 61 74 65 6d 61 6c 61 22 2c
## [17065] 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 61 74 65 6d 61 6c 61 22 7d 7d 7d 7d
## [17089] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4a 61 70 61
## [17113] 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4a 61 70 61 6e 22 2c 22 6e
## [17137] 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6a 70 6e 22 3a 7b 22 6f 66 66 69
## [17161] 63 69 61 6c 22 3a 22 e6 97 a5 e6 9c ac 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [17185] 22 e6 97 a5 e6 9c ac 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [17209] 6f 6d 6d 6f 6e 22 3a 22 56 69 65 74 6e 61 6d 22 2c 22 6f 66 66 69 63 69
## [17233] 61 6c 22 3a 22 53 6f 63 69 61 6c 69 73 74 20 52 65 70 75 62 6c 69 63 20
## [17257] 6f 66 20 56 69 65 74 6e 61 6d 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [17281] 3a 7b 22 76 69 65 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 e1 bb
## [17305] 99 6e 67 20 68 c3 b2 61 20 78 c3 a3 20 68 e1 bb 99 69 20 63 68 e1 bb a7
## [17329] 20 6e 67 68 c4 a9 61 20 56 69 e1 bb 87 74 20 4e 61 6d 22 2c 22 63 6f 6d
## [17353] 6d 6f 6e 22 3a 22 56 69 e1 bb 87 74 20 4e 61 6d 22 7d 7d 7d 7d 2c 7b 22
## [17377] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 74 68 65 72
## [17401] 6e 20 4d 61 72 69 61 6e 61 20 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66 69
## [17425] 63 69 61 6c 22 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74 68 20 6f 66 20 74
## [17449] 68 65 20 4e 6f 72 74 68 65 72 6e 20 4d 61 72 69 61 6e 61 20 49 73 6c 61
## [17473] 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 63 61 6c 22
## [17497] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c
## [17521] 74 68 20 6f 66 20 74 68 65 20 4e 6f 72 74 68 65 72 6e 20 4d 61 72 69 61
## [17545] 6e 61 20 49 73 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f
## [17569] 72 74 68 65 72 6e 20 4d 61 72 69 61 6e 61 20 49 73 6c 61 6e 64 73 22 7d
## [17593] 2c 22 63 68 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 61 6e 6b
## [17617] 61 74 74 61 6e 20 53 69 68 61 20 4e 61 20 49 73 6c 61 73 20 4d 61 72 69
## [17641] c3 a5 6e 61 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 20 49 73 6c 61
## [17665] 73 20 4d 61 72 69 c3 a5 6e 61 73 22 7d 2c 22 65 6e 67 22 3a 7b 22 6f 66
## [17689] 66 69 63 69 61 6c 22 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74 68 20 6f 66
## [17713] 20 74 68 65 20 4e 6f 72 74 68 65 72 6e 20 4d 61 72 69 61 6e 61 20 49 73
## [17737] 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 74 68 65 72
## [17761] 6e 20 4d 61 72 69 61 6e 61 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b
## [17785] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 69 74 68 75 61
## [17809] 6e 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [17833] 63 20 6f 66 20 4c 69 74 68 75 61 6e 69 61 22 2c 22 6e 61 74 69 76 65 4e
## [17857] 61 6d 65 22 3a 7b 22 6c 69 74 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [17881] 22 4c 69 65 74 75 76 6f 73 20 52 65 73 70 75 62 6c 69 6b 6f 73 22 2c 22
## [17905] 63 6f 6d 6d 6f 6e 22 3a 22 4c 69 65 74 75 76 61 22 7d 7d 7d 7d 2c 7b 22
## [17929] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69 6e 74 20 4c
## [17953] 75 63 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 61 69 6e 74 20
## [17977] 4c 75 63 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e
## [18001] 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 61 69 6e 74 20 4c 75
## [18025] 63 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69 6e 74 20 4c 75 63
## [18049] 69 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [18073] 22 3a 22 48 6f 6e 67 20 4b 6f 6e 67 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [18097] 3a 22 48 6f 6e 67 20 4b 6f 6e 67 20 53 70 65 63 69 61 6c 20 41 64 6d 69
## [18121] 6e 69 73 74 72 61 74 69 76 65 20 52 65 67 69 6f 6e 20 6f 66 20 74 68 65
## [18145] 20 50 65 6f 70 6c 65 27 73 20 52 65 70 75 62 6c 69 63 20 6f 66 20 43 68
## [18169] 69 6e 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22
## [18193] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 48 6f 6e 67 20 4b 6f 6e 67 20
## [18217] 53 70 65 63 69 61 6c 20 41 64 6d 69 6e 69 73 74 72 61 74 69 76 65 20 52
## [18241] 65 67 69 6f 6e 20 6f 66 20 74 68 65 20 50 65 6f 70 6c 65 27 73 20 52 65
## [18265] 70 75 62 6c 69 63 20 6f 66 20 43 68 69 6e 61 22 2c 22 63 6f 6d 6d 6f 6e
## [18289] 22 3a 22 48 6f 6e 67 20 4b 6f 6e 67 22 7d 2c 22 7a 68 6f 22 3a 7b 22 6f
## [18313] 66 66 69 63 69 61 6c 22 3a 22 e4 b8 ad e5 8d 8e e4 ba ba e6 b0 91 e5 85
## [18337] b1 e5 92 8c e5 9b bd e9 a6 99 e6 b8 af e7 89 b9 e5 88 ab e8 a1 8c e6 94
## [18361] bf e5 8c ba 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e9 a6 99 e6 b8 af 22 7d
## [18385] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41
## [18409] 6e 67 6f 6c 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62
## [18433] 6c 69 63 20 6f 66 20 41 6e 67 6f 6c 61 22 2c 22 6e 61 74 69 76 65 4e 61
## [18457] 6d 65 22 3a 7b 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [18481] 52 65 70 c3 ba 62 6c 69 63 61 20 64 65 20 41 6e 67 6f 6c 61 22 2c 22 63
## [18505] 6f 6d 6d 6f 6e 22 3a 22 41 6e 67 6f 6c 61 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [18529] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 6f 7a 61 6d 62 69 71 75
## [18553] 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20
## [18577] 6f 66 20 4d 6f 7a 61 6d 62 69 71 75 65 22 2c 22 6e 61 74 69 76 65 4e 61
## [18601] 6d 65 22 3a 7b 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [18625] 52 65 70 c3 ba 62 6c 69 63 61 20 64 65 20 4d 6f c3 a7 61 6d 62 69 71 75
## [18649] 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 6f c3 a7 61 6d 62 69 71 75 65
## [18673] 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a
## [18697] 22 42 6f 74 73 77 61 6e 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52
## [18721] 65 70 75 62 6c 69 63 20 6f 66 20 42 6f 74 73 77 61 6e 61 22 2c 22 6e 61
## [18745] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63
## [18769] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 42 6f 74 73 77 61
## [18793] 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 74 73 77 61 6e 61 22 7d
## [18817] 2c 22 74 73 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4c 65 66 61
## [18841] 74 73 68 65 20 6c 61 20 42 6f 74 73 77 61 6e 61 22 2c 22 63 6f 6d 6d 6f
## [18865] 6e 22 3a 22 42 6f 74 73 77 61 6e 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [18889] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 65 72 6d 61 6e 79 22 2c 22 6f
## [18913] 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 6c 20 52 65 70 75 62 6c
## [18937] 69 63 20 6f 66 20 47 65 72 6d 61 6e 79 22 2c 22 6e 61 74 69 76 65 4e 61
## [18961] 6d 65 22 3a 7b 22 64 65 75 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [18985] 42 75 6e 64 65 73 72 65 70 75 62 6c 69 6b 20 44 65 75 74 73 63 68 6c 61
## [19009] 6e 64 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 44 65 75 74 73 63 68 6c 61 6e
## [19033] 64 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [19057] 3a 22 53 79 72 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 79 72
## [19081] 69 61 6e 20 41 72 61 62 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69
## [19105] 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61
## [19129] 6c 22 3a 22 d8 a7 d9 84 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8
## [19153] a7 d9 84 d8 b9 d8 b1 d8 a8 d9 8a d8 a9 20 d8 a7 d9 84 d8 b3 d9 88 d8 b1
## [19177] d9 8a d8 a9 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 b3 d9 88 d8 b1 d9 8a
## [19201] d8 a7 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [19225] 22 3a 22 4d 6f 6c 64 6f 76 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [19249] 52 65 70 75 62 6c 69 63 20 6f 66 20 4d 6f 6c 64 6f 76 61 22 2c 22 6e 61
## [19273] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 72 6f 6e 22 3a 7b 22 6f 66 66 69 63
## [19297] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 61 20 4d 6f 6c 64 6f 76 61 22
## [19321] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 6f 6c 64 6f 76 61 22 7d 7d 7d 7d 2c
## [19345] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69 6e 74
## [19369] 20 50 69 65 72 72 65 20 61 6e 64 20 4d 69 71 75 65 6c 6f 6e 22 2c 22 6f
## [19393] 66 66 69 63 69 61 6c 22 3a 22 53 61 69 6e 74 20 50 69 65 72 72 65 20 61
## [19417] 6e 64 20 4d 69 71 75 65 6c 6f 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [19441] 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f
## [19465] 6c 6c 65 63 74 69 76 69 74 c3 a9 20 74 65 72 72 69 74 6f 72 69 61 6c 65
## [19489] 20 64 65 20 53 61 69 6e 74 2d 50 69 65 72 72 65 2d 65 74 2d 4d 69 71 75
## [19513] 65 6c 6f 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69 6e 74 2d 50 69
## [19537] 65 72 72 65 2d 65 74 2d 4d 69 71 75 65 6c 6f 6e 22 7d 7d 7d 7d 2c 7b 22
## [19561] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 65 72 6e 73 65
## [19585] 79 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 61 69 6c 69 77 69 63 6b
## [19609] 20 6f 66 20 47 75 65 72 6e 73 65 79 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [19633] 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42
## [19657] 61 69 6c 69 77 69 63 6b 20 6f 66 20 47 75 65 72 6e 73 65 79 22 2c 22 63
## [19681] 6f 6d 6d 6f 6e 22 3a 22 47 75 65 72 6e 73 65 79 22 7d 2c 22 66 72 61 22
## [19705] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 61 69 6c 6c 69 61 67 65 20
## [19729] 64 65 20 47 75 65 72 6e 65 73 65 79 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [19753] 47 75 65 72 6e 65 73 65 79 22 7d 2c 22 6e 66 72 22 3a 7b 22 6f 66 66 69
## [19777] 63 69 61 6c 22 3a 22 44 67 c3 a8 72 6e c3 a9 73 69 61 69 73 22 2c 22 63
## [19801] 6f 6d 6d 6f 6e 22 3a 22 44 67 c3 a8 72 6e c3 a9 73 69 61 69 73 22 7d 7d
## [19825] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 57 61
## [19849] 6c 6c 69 73 20 61 6e 64 20 46 75 74 75 6e 61 22 2c 22 6f 66 66 69 63 69
## [19873] 61 6c 22 3a 22 54 65 72 72 69 74 6f 72 79 20 6f 66 20 74 68 65 20 57 61
## [19897] 6c 6c 69 73 20 61 6e 64 20 46 75 74 75 6e 61 20 49 73 6c 61 6e 64 73 22
## [19921] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f
## [19945] 66 66 69 63 69 61 6c 22 3a 22 54 65 72 72 69 74 6f 69 72 65 20 64 65 73
## [19969] 20 c3 ae 6c 65 73 20 57 61 6c 6c 69 73 20 65 74 20 46 75 74 75 6e 61 22
## [19993] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 57 61 6c 6c 69 73 20 65 74 20 46 75 74
## [20017] 75 6e 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [20041] 6e 22 3a 22 50 6f 6c 61 6e 64 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [20065] 52 65 70 75 62 6c 69 63 20 6f 66 20 50 6f 6c 61 6e 64 22 2c 22 6e 61 74
## [20089] 69 76 65 4e 61 6d 65 22 3a 7b 22 70 6f 6c 22 3a 7b 22 6f 66 66 69 63 69
## [20113] 61 6c 22 3a 22 52 7a 65 63 7a 70 6f 73 70 6f 6c 69 74 61 20 50 6f 6c 73
## [20137] 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 6f 6c 73 6b 61 22 7d 7d 7d
## [20161] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 54 72 69
## [20185] 6e 69 64 61 64 20 61 6e 64 20 54 6f 62 61 67 6f 22 2c 22 6f 66 66 69 63
## [20209] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 54 72 69 6e 69 64
## [20233] 61 64 20 61 6e 64 20 54 6f 62 61 67 6f 22 2c 22 6e 61 74 69 76 65 4e 61
## [20257] 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [20281] 52 65 70 75 62 6c 69 63 20 6f 66 20 54 72 69 6e 69 64 61 64 20 61 6e 64
## [20305] 20 54 6f 62 61 67 6f 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 72 69 6e 69
## [20329] 64 61 64 20 61 6e 64 20 54 6f 62 61 67 6f 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [20353] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 72 69 74 69 73 68 20 49
## [20377] 6e 64 69 61 6e 20 4f 63 65 61 6e 20 54 65 72 72 69 74 6f 72 79 22 2c 22
## [20401] 6f 66 66 69 63 69 61 6c 22 3a 22 42 72 69 74 69 73 68 20 49 6e 64 69 61
## [20425] 6e 20 4f 63 65 61 6e 20 54 65 72 72 69 74 6f 72 79 22 2c 22 6e 61 74 69
## [20449] 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61
## [20473] 6c 22 3a 22 42 72 69 74 69 73 68 20 49 6e 64 69 61 6e 20 4f 63 65 61 6e
## [20497] 20 54 65 72 72 69 74 6f 72 79 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 72
## [20521] 69 74 69 73 68 20 49 6e 64 69 61 6e 20 4f 63 65 61 6e 20 54 65 72 72 69
## [20545] 74 6f 72 79 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [20569] 6f 6e 22 3a 22 4d 61 72 73 68 61 6c 6c 20 49 73 6c 61 6e 64 73 22 2c 22
## [20593] 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 74
## [20617] 68 65 20 4d 61 72 73 68 61 6c 6c 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61
## [20641] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63
## [20665] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 74 68 65 20 4d 61
## [20689] 72 73 68 61 6c 6c 20 49 73 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22
## [20713] 3a 22 4d 61 72 73 68 61 6c 6c 20 49 73 6c 61 6e 64 73 22 7d 2c 22 6d 61
## [20737] 68 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63
## [20761] 20 6f 66 20 74 68 65 20 4d 61 72 73 68 61 6c 6c 20 49 73 6c 61 6e 64 73
## [20785] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d cc a7 61 6a 65 c4 bc 22 7d 7d 7d
## [20809] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 75 73
## [20833] 74 72 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c
## [20857] 69 63 20 6f 66 20 41 75 73 74 72 69 61 22 2c 22 6e 61 74 69 76 65 4e 61
## [20881] 6d 65 22 3a 7b 22 62 61 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [20905] 52 65 70 75 62 6c 69 6b 20 c3 96 73 74 65 72 72 65 69 63 68 22 2c 22 63
## [20929] 6f 6d 6d 6f 6e 22 3a 22 c3 96 73 74 65 72 72 65 69 63 68 22 7d 7d 7d 7d
## [20953] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 61 7a 61
## [20977] 6b 68 73 74 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [21001] 62 6c 69 63 20 6f 66 20 4b 61 7a 61 6b 68 73 74 61 6e 22 2c 22 6e 61 74
## [21025] 69 76 65 4e 61 6d 65 22 3a 7b 22 6b 61 7a 22 3a 7b 22 6f 66 66 69 63 69
## [21049] 61 6c 22 3a 22 d2 9a d0 b0 d0 b7 d0 b0 d2 9b d1 81 d1 82 d0 b0 d0 bd 20
## [21073] d0 a0 d0 b5 d1 81 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba d0 b0 d1 81 d1 8b
## [21097] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d2 9a d0 b0 d0 b7 d0 b0 d2 9b d1 81
## [21121] d1 82 d0 b0 d0 bd 22 7d 2c 22 72 75 73 22 3a 7b 22 6f 66 66 69 63 69 61
## [21145] 6c 22 3a 22 d0 a0 d0 b5 d1 81 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba d0 b0
## [21169] 20 d0 9a d0 b0 d0 b7 d0 b0 d1 85 d1 81 d1 82 d0 b0 d0 bd 22 2c 22 63 6f
## [21193] 6d 6d 6f 6e 22 3a 22 d0 9a d0 b0 d0 b7 d0 b0 d1 85 d1 81 d1 82 d0 b0 d0
## [21217] bd 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [21241] 3a 22 41 72 75 62 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 72 75
## [21265] 62 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6e 6c 64 22 3a
## [21289] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 72 75 62 61 22 2c 22 63 6f 6d
## [21313] 6d 6f 6e 22 3a 22 41 72 75 62 61 22 7d 2c 22 70 61 70 22 3a 7b 22 6f 66
## [21337] 66 69 63 69 61 6c 22 3a 22 41 72 75 62 61 22 2c 22 63 6f 6d 6d 6f 6e 22
## [21361] 3a 22 41 72 75 62 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [21385] 6f 6d 6d 6f 6e 22 3a 22 53 6f 75 74 68 20 41 66 72 69 63 61 22 2c 22 6f
## [21409] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 53 6f
## [21433] 75 74 68 20 41 66 72 69 63 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [21457] 3a 7b 22 61 66 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [21481] 75 62 6c 69 65 6b 20 76 61 6e 20 53 75 69 64 2d 41 66 72 69 6b 61 22 2c
## [21505] 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6f 75 74 68 20 41 66 72 69 63 61 22 7d
## [21529] 2c 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [21553] 62 6c 69 63 20 6f 66 20 53 6f 75 74 68 20 41 66 72 69 63 61 22 2c 22 63
## [21577] 6f 6d 6d 6f 6e 22 3a 22 53 6f 75 74 68 20 41 66 72 69 63 61 22 7d 2c 22
## [21601] 6e 62 6c 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 52 69 70 68 61
## [21625] 62 6c 69 6b 69 20 79 65 53 65 77 75 6c 61 20 41 66 72 69 6b 61 22 2c 22
## [21649] 63 6f 6d 6d 6f 6e 22 3a 22 53 65 77 75 6c 61 20 41 66 72 69 6b 61 22 7d
## [21673] 2c 22 6e 73 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 68
## [21697] 61 62 6f 6c 69 6b 69 20 79 61 20 41 66 72 69 6b 61 2d 42 6f 72 77 61 20
## [21721] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 66 72 69 6b 61 2d 42 6f 72 77 61
## [21745] 22 7d 2c 22 73 6f 74 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [21769] 70 68 61 62 6f 6c 69 6b 69 20 79 61 20 41 66 72 69 6b 61 20 42 6f 72 77
## [21793] 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 66 72 69 6b 61 20 42 6f 72 77
## [21817] 61 22 7d 2c 22 73 73 77 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49
## [21841] 52 69 70 68 61 62 68 75 6c 69 6b 68 69 20 79 65 4e 69 6e 67 69 7a 69 6d
## [21865] 75 20 41 66 72 69 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 69 6e 67
## [21889] 69 7a 69 6d 75 20 41 66 72 69 6b 61 22 7d 2c 22 74 73 6e 22 3a 7b 22 6f
## [21913] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 68 61 62 6f 6c 69 6b 69 20 79 61
## [21937] 20 41 66 6f 72 69 6b 61 20 42 6f 72 77 61 22 2c 22 63 6f 6d 6d 6f 6e 22
## [21961] 3a 22 41 66 6f 72 69 6b 61 20 42 6f 72 77 61 22 7d 2c 22 74 73 6f 22 3a
## [21985] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 69 70 68 61 62 6c 69 6b 69 20
## [22009] 72 61 20 41 66 72 69 6b 61 20 44 7a 6f 6e 67 61 22 2c 22 63 6f 6d 6d 6f
## [22033] 6e 22 3a 22 41 66 72 69 6b 61 20 44 7a 6f 6e 67 61 22 7d 2c 22 76 65 6e
## [22057] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 69 70 68 61 62 75 e1 b8
## [22081] bd 69 6b 69 20 79 61 20 41 66 75 72 69 6b 61 20 54 73 68 69 70 65 6d 62
## [22105] 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 66 75 72 69 6b 61 20 54 73 68
## [22129] 69 70 65 6d 62 65 22 7d 2c 22 78 68 6f 22 3a 7b 22 6f 66 66 69 63 69 61
## [22153] 6c 22 3a 22 49 52 69 70 68 61 62 6c 69 6b 69 20 79 61 73 65 4d 7a 61 6e
## [22177] 74 73 69 20 41 66 72 69 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 7a
## [22201] 61 6e 74 73 69 20 41 66 72 69 6b 61 22 7d 2c 22 7a 75 6c 22 3a 7b 22 6f
## [22225] 66 66 69 63 69 61 6c 22 3a 22 49 52 69 70 68 61 62 6c 69 6b 69 20 79 61
## [22249] 73 65 4e 69 6e 67 69 7a 69 6d 75 20 41 66 72 69 6b 61 22 2c 22 63 6f 6d
## [22273] 6d 6f 6e 22 3a 22 4e 69 6e 67 69 7a 69 6d 75 20 41 66 72 69 6b 61 22 7d
## [22297] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 44
## [22321] 65 6e 6d 61 72 6b 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67
## [22345] 64 6f 6d 20 6f 66 20 44 65 6e 6d 61 72 6b 22 2c 22 6e 61 74 69 76 65 4e
## [22369] 61 6d 65 22 3a 7b 22 64 61 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [22393] 22 4b 6f 6e 67 65 72 69 67 65 74 20 44 61 6e 6d 61 72 6b 22 2c 22 63 6f
## [22417] 6d 6d 6f 6e 22 3a 22 44 61 6e 6d 61 72 6b 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [22441] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 75 72 69 6e 61 6d 65 22
## [22465] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66
## [22489] 20 53 75 72 69 6e 61 6d 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [22513] 7b 22 6e 6c 64 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [22537] 62 6c 69 65 6b 20 53 75 72 69 6e 61 6d 65 22 2c 22 63 6f 6d 6d 6f 6e 22
## [22561] 3a 22 53 75 72 69 6e 61 6d 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [22585] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 72 6d 75 64 61 22 2c 22 6f 66 66
## [22609] 69 63 69 61 6c 22 3a 22 42 65 72 6d 75 64 61 22 2c 22 6e 61 74 69 76 65
## [22633] 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [22657] 3a 22 42 65 72 6d 75 64 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 65 72
## [22681] 6d 75 64 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [22705] 6f 6e 22 3a 22 4d 6f 6e 74 73 65 72 72 61 74 22 2c 22 6f 66 66 69 63 69
## [22729] 61 6c 22 3a 22 4d 6f 6e 74 73 65 72 72 61 74 22 2c 22 6e 61 74 69 76 65
## [22753] 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [22777] 3a 22 4d 6f 6e 74 73 65 72 72 61 74 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [22801] 4d 6f 6e 74 73 65 72 72 61 74 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [22825] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 49 76 6f 72 79 20 43 6f 61 73 74 22 2c
## [22849] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [22873] 43 c3 b4 74 65 20 64 27 49 76 6f 69 72 65 22 2c 22 6e 61 74 69 76 65 4e
## [22897] 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [22921] 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 65 20 43 c3 b4 74 65 20 64 27
## [22945] 49 76 6f 69 72 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 c3 b4 74 65 20
## [22969] 64 27 49 76 6f 69 72 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [22993] 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 75 72 69 74 61 6e 69 61 22 2c 22 6f 66
## [23017] 66 69 63 69 61 6c 22 3a 22 49 73 6c 61 6d 69 63 20 52 65 70 75 62 6c 69
## [23041] 63 20 6f 66 20 4d 61 75 72 69 74 61 6e 69 61 22 2c 22 6e 61 74 69 76 65
## [23065] 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [23089] 3a 22 d8 a7 d9 84 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8 a7 d9
## [23113] 84 d8 a5 d8 b3 d9 84 d8 a7 d9 85 d9 8a d8 a9 20 d8 a7 d9 84 d9 85 d9 88
## [23137] d8 b1 d9 8a d8 aa d8 a7 d9 86 d9 8a d8 a9 22 2c 22 63 6f 6d 6d 6f 6e 22
## [23161] 3a 22 d9 85 d9 88 d8 b1 d9 8a d8 aa d8 a7 d9 86 d9 8a d8 a7 22 7d 7d 7d
## [23185] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 69 65
## [23209] 72 72 61 20 4c 65 6f 6e 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52
## [23233] 65 70 75 62 6c 69 63 20 6f 66 20 53 69 65 72 72 61 20 4c 65 6f 6e 65 22
## [23257] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f
## [23281] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 53 69
## [23305] 65 72 72 61 20 4c 65 6f 6e 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 69
## [23329] 65 72 72 61 20 4c 65 6f 6e 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [23353] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 69 6e 65 61 22 2c 22 6f 66 66 69
## [23377] 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 47 75 69 6e 65
## [23401] 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b
## [23425] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20
## [23449] 64 65 20 47 75 69 6e c3 a9 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75
## [23473] 69 6e c3 a9 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [23497] 6d 6f 6e 22 3a 22 46 72 65 6e 63 68 20 50 6f 6c 79 6e 65 73 69 61 22 2c
## [23521] 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 72 65 6e 63 68 20 50 6f 6c 79 6e
## [23545] 65 73 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61
## [23569] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 6f 6c 79 6e c3 a9 73 69
## [23593] 65 20 66 72 61 6e c3 a7 61 69 73 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [23617] 50 6f 6c 79 6e c3 a9 73 69 65 20 66 72 61 6e c3 a7 61 69 73 65 22 7d 7d
## [23641] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61
## [23665] 6b 69 73 74 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 73 6c 61
## [23689] 6d 69 63 20 52 65 70 75 62 6c 69 63 20 6f 66 20 50 61 6b 69 73 74 61 6e
## [23713] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22
## [23737] 6f 66 66 69 63 69 61 6c 22 3a 22 49 73 6c 61 6d 69 63 20 52 65 70 75 62
## [23761] 6c 69 63 20 6f 66 20 50 61 6b 69 73 74 61 6e 22 2c 22 63 6f 6d 6d 6f 6e
## [23785] 22 3a 22 50 61 6b 69 73 74 61 6e 22 7d 2c 22 75 72 64 22 3a 7b 22 6f 66
## [23809] 66 69 63 69 61 6c 22 3a 22 d8 a7 d8 b3 d9 84 d8 a7 d9 85 db 8c 20 d8 ac
## [23833] d9 85 db 81 d9 88 d8 b1 db 8c db 82 20 d9 be d8 a7 d9 83 d8 b3 d8 aa d8
## [23857] a7 d9 86 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d9 be d8 a7 d9 83 d8 b3 d8
## [23881] aa d8 a7 d9 86 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [23905] 6d 6f 6e 22 3a 22 55 6e 69 74 65 64 20 53 74 61 74 65 73 20 4d 69 6e 6f
## [23929] 72 20 4f 75 74 6c 79 69 6e 67 20 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66
## [23953] 69 63 69 61 6c 22 3a 22 55 6e 69 74 65 64 20 53 74 61 74 65 73 20 4d 69
## [23977] 6e 6f 72 20 4f 75 74 6c 79 69 6e 67 20 49 73 6c 61 6e 64 73 22 2c 22 6e
## [24001] 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69
## [24025] 63 69 61 6c 22 3a 22 55 6e 69 74 65 64 20 53 74 61 74 65 73 20 4d 69 6e
## [24049] 6f 72 20 4f 75 74 6c 79 69 6e 67 20 49 73 6c 61 6e 64 73 22 2c 22 63 6f
## [24073] 6d 6d 6f 6e 22 3a 22 55 6e 69 74 65 64 20 53 74 61 74 65 73 20 4d 69 6e
## [24097] 6f 72 20 4f 75 74 6c 79 69 6e 67 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d
## [24121] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 65 73 6f
## [24145] 74 68 6f 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d
## [24169] 20 6f 66 20 4c 65 73 6f 74 68 6f 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [24193] 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69
## [24217] 6e 67 64 6f 6d 20 6f 66 20 4c 65 73 6f 74 68 6f 22 2c 22 63 6f 6d 6d 6f
## [24241] 6e 22 3a 22 4c 65 73 6f 74 68 6f 22 7d 2c 22 73 6f 74 22 3a 7b 22 6f 66
## [24265] 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 4c 65 73 6f
## [24289] 74 68 6f 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 65 73 6f 74 68 6f 22 7d
## [24313] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53
## [24337] 65 6e 65 67 61 6c 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [24361] 62 6c 69 63 20 6f 66 20 53 65 6e 65 67 61 6c 22 2c 22 6e 61 74 69 76 65
## [24385] 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [24409] 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 75 20 53 c3 a9 6e c3 a9 67
## [24433] 61 6c 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 c3 a9 6e c3 a9 67 61 6c 22
## [24457] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [24481] 54 61 6a 69 6b 69 73 74 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [24505] 52 65 70 75 62 6c 69 63 20 6f 66 20 54 61 6a 69 6b 69 73 74 61 6e 22 2c
## [24529] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 72 75 73 22 3a 7b 22 6f 66
## [24553] 66 69 63 69 61 6c 22 3a 22 d0 a0 d0 b5 d1 81 d0 bf d1 83 d0 b1 d0 bb d0
## [24577] b8 d0 ba d0 b0 20 d0 a2 d0 b0 d0 b4 d0 b6 d0 b8 d0 ba d0 b8 d1 81 d1 82
## [24601] d0 b0 d0 bd 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 a2 d0 b0 d0 b4 d0 b6
## [24625] d0 b8 d0 ba d0 b8 d1 81 d1 82 d0 b0 d0 bd 22 7d 2c 22 74 67 6b 22 3a 7b
## [24649] 22 6f 66 66 69 63 69 61 6c 22 3a 22 d2 b6 d1 83 d0 bc d2 b3 d1 83 d1 80
## [24673] d0 b8 d0 b8 20 d0 a2 d0 be d2 b7 d0 b8 d0 ba d0 b8 d1 81 d1 82 d0 be d0
## [24697] bd 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 a2 d0 be d2 b7 d0 b8 d0 ba d0
## [24721] b8 d1 81 d1 82 d0 be d0 bd 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b
## [24745] 22 63 6f 6d 6d 6f 6e 22 3a 22 53 77 69 74 7a 65 72 6c 61 6e 64 22 2c 22
## [24769] 6f 66 66 69 63 69 61 6c 22 3a 22 53 77 69 73 73 20 43 6f 6e 66 65 64 65
## [24793] 72 61 74 69 6f 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66
## [24817] 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 6e 66 c3 a9 64
## [24841] c3 a9 72 61 74 69 6f 6e 20 73 75 69 73 73 65 22 2c 22 63 6f 6d 6d 6f 6e
## [24865] 22 3a 22 53 75 69 73 73 65 22 7d 2c 22 67 73 77 22 3a 7b 22 6f 66 66 69
## [24889] 63 69 61 6c 22 3a 22 53 63 68 77 65 69 7a 65 72 69 73 63 68 65 20 45 69
## [24913] 64 67 65 6e 6f 73 73 65 6e 73 63 68 61 66 74 22 2c 22 63 6f 6d 6d 6f 6e
## [24937] 22 3a 22 53 63 68 77 65 69 7a 22 7d 2c 22 69 74 61 22 3a 7b 22 6f 66 66
## [24961] 69 63 69 61 6c 22 3a 22 43 6f 6e 66 65 64 65 72 61 7a 69 6f 6e 65 20 53
## [24985] 76 69 7a 7a 65 72 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 76 69 7a 7a
## [25009] 65 72 61 22 7d 2c 22 72 6f 68 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [25033] 22 43 6f 6e 66 65 64 65 72 61 7a 69 75 6e 20 73 76 69 7a 72 61 22 2c 22
## [25057] 63 6f 6d 6d 6f 6e 22 3a 22 53 76 69 7a 72 61 22 7d 7d 7d 7d 2c 7b 22 6e
## [25081] 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 45 72 69 74 72 65 61 22
## [25105] 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61 74 65 20 6f 66 20 45 72
## [25129] 69 74 72 65 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72
## [25153] 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 af d9 88 d9 84 d8 a9
## [25177] 20 d8 a5 d8 b1 d8 aa d8 b1 d9 8a d8 a7 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [25201] 22 d8 a5 d8 b1 d8 aa d8 b1 d9 8a d8 a7 e2 80 8e 22 7d 2c 22 65 6e 67 22
## [25225] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61 74 65 20 6f 66 20 45
## [25249] 72 69 74 72 65 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 45 72 69 74 72 65
## [25273] 61 22 7d 2c 22 74 69 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e1
## [25297] 88 83 e1 8c 88 e1 88 a8 20 e1 8a a4 e1 88 ad e1 89 b5 e1 88 ab 22 2c 22
## [25321] 63 6f 6d 6d 6f 6e 22 3a 22 e1 8a a4 e1 88 ad e1 89 b5 e1 88 ab 22 7d 7d
## [25345] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 46 72
## [25369] 65 6e 63 68 20 53 6f 75 74 68 65 72 6e 20 61 6e 64 20 41 6e 74 61 72 63
## [25393] 74 69 63 20 4c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 54
## [25417] 65 72 72 69 74 6f 72 79 20 6f 66 20 74 68 65 20 46 72 65 6e 63 68 20 53
## [25441] 6f 75 74 68 65 72 6e 20 61 6e 64 20 41 6e 74 61 72 63 74 69 63 20 4c 61
## [25465] 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22
## [25489] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 54 65 72 72 69 74 6f 69 72 65
## [25513] 20 64 65 73 20 54 65 72 72 65 73 20 61 75 73 74 72 61 6c 65 73 20 65 74
## [25537] 20 61 6e 74 61 72 63 74 69 71 75 65 73 20 66 72 61 6e c3 a7 61 69 73 65
## [25561] 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 65 72 72 65 73 20 61 75 73 74
## [25585] 72 61 6c 65 73 20 65 74 20 61 6e 74 61 72 63 74 69 71 75 65 73 20 66 72
## [25609] 61 6e c3 a7 61 69 73 65 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b
## [25633] 22 63 6f 6d 6d 6f 6e 22 3a 22 4a 65 72 73 65 79 22 2c 22 6f 66 66 69 63
## [25657] 69 61 6c 22 3a 22 42 61 69 6c 69 77 69 63 6b 20 6f 66 20 4a 65 72 73 65
## [25681] 79 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b
## [25705] 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 61 69 6c 69 77 69 63 6b 20 6f 66
## [25729] 20 4a 65 72 73 65 79 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4a 65 72 73 65
## [25753] 79 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42
## [25777] 61 69 6c 6c 69 61 67 65 20 64 65 20 4a 65 72 73 65 79 22 2c 22 63 6f 6d
## [25801] 6d 6f 6e 22 3a 22 4a 65 72 73 65 79 22 7d 2c 22 6e 72 66 22 3a 7b 22 6f
## [25825] 66 66 69 63 69 61 6c 22 3a 22 42 61 69 6c 6c 69 61 67 65 20 64 c3 a9 20
## [25849] 4a c3 a8 72 72 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4a c3 a8 72 72 69
## [25873] 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a
## [25897] 22 43 61 6d 62 6f 64 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b
## [25921] 69 6e 67 64 6f 6d 20 6f 66 20 43 61 6d 62 6f 64 69 61 22 2c 22 6e 61 74
## [25945] 69 76 65 4e 61 6d 65 22 3a 7b 22 6b 68 6d 22 3a 7b 22 6f 66 66 69 63 69
## [25969] 61 6c 22 3a 22 e1 9e 96 e1 9f 92 e1 9e 9a e1 9f 87 e1 9e 9a e1 9e b6 e1
## [25993] 9e 87 e1 9e b6 e1 9e 8e e1 9e b6 e1 9e 85 e1 9e 80 e1 9f 92 e1 9e 9a e1
## [26017] 9e 80 e1 9e 98 e1 9f 92 e1 9e 96 e1 9e bb e1 9e 87 e1 9e b6 22 2c 22 63
## [26041] 6f 6d 6d 6f 6e 22 3a 22 4b c3 a2 6d 70 c5 ad 63 68 c3 a9 61 22 7d 7d 7d
## [26065] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69
## [26089] 6e 74 20 56 69 6e 63 65 6e 74 20 61 6e 64 20 74 68 65 20 47 72 65 6e 61
## [26113] 64 69 6e 65 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 61 69 6e 74
## [26137] 20 56 69 6e 63 65 6e 74 20 61 6e 64 20 74 68 65 20 47 72 65 6e 61 64 69
## [26161] 6e 65 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22
## [26185] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 61 69 6e 74 20 56 69 6e 63
## [26209] 65 6e 74 20 61 6e 64 20 74 68 65 20 47 72 65 6e 61 64 69 6e 65 73 22 2c
## [26233] 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69 6e 74 20 56 69 6e 63 65 6e 74 20
## [26257] 61 6e 64 20 74 68 65 20 47 72 65 6e 61 64 69 6e 65 73 22 7d 7d 7d 7d 2c
## [26281] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 69 6e 74 20
## [26305] 4d 61 61 72 74 65 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 69 6e
## [26329] 74 20 4d 61 61 72 74 65 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [26353] 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 69 6e 74
## [26377] 20 4d 61 61 72 74 65 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 69 6e 74
## [26401] 20 4d 61 61 72 74 65 6e 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63
## [26425] 69 61 6c 22 3a 22 53 61 69 6e 74 2d 4d 61 72 74 69 6e 22 2c 22 63 6f 6d
## [26449] 6d 6f 6e 22 3a 22 53 61 69 6e 74 2d 4d 61 72 74 69 6e 22 7d 2c 22 6e 6c
## [26473] 64 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 69 6e 74 20 4d 61 61
## [26497] 72 74 65 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 69 6e 74 20 4d 61 61
## [26521] 72 74 65 6e 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [26545] 6f 6e 22 3a 22 56 61 74 69 63 61 6e 20 43 69 74 79 22 2c 22 6f 66 66 69
## [26569] 63 69 61 6c 22 3a 22 56 61 74 69 63 61 6e 20 43 69 74 79 20 53 74 61 74
## [26593] 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 69 74 61 22 3a 7b
## [26617] 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61 74 6f 20 64 65 6c 6c 61 20
## [26641] 43 69 74 74 c3 a0 20 64 65 6c 20 56 61 74 69 63 61 6e 6f 22 2c 22 63 6f
## [26665] 6d 6d 6f 6e 22 3a 22 56 61 74 69 63 61 6e 6f 22 7d 2c 22 6c 61 74 22 3a
## [26689] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61 74 75 73 20 43 69 76 69
## [26713] 74 61 74 69 73 20 56 61 74 69 63 61 6e c3 a6 22 2c 22 63 6f 6d 6d 6f 6e
## [26737] 22 3a 22 56 61 74 69 63 61 6e c3 a6 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [26761] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 55 72 75 67 75 61 79 22 2c 22 6f
## [26785] 66 66 69 63 69 61 6c 22 3a 22 4f 72 69 65 6e 74 61 6c 20 52 65 70 75 62
## [26809] 6c 69 63 20 6f 66 20 55 72 75 67 75 61 79 22 2c 22 6e 61 74 69 76 65 4e
## [26833] 61 6d 65 22 3a 7b 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [26857] 22 52 65 70 c3 ba 62 6c 69 63 61 20 4f 72 69 65 6e 74 61 6c 20 64 65 6c
## [26881] 20 55 72 75 67 75 61 79 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 55 72 75 67
## [26905] 75 61 79 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [26929] 6e 22 3a 22 57 65 73 74 65 72 6e 20 53 61 68 61 72 61 22 2c 22 6f 66 66
## [26953] 69 63 69 61 6c 22 3a 22 53 61 68 72 61 77 69 20 41 72 61 62 20 44 65 6d
## [26977] 6f 63 72 61 74 69 63 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76
## [27001] 65 4e 61 6d 65 22 3a 7b 22 62 65 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [27025] 22 3a 22 53 61 68 72 61 77 69 20 41 72 61 62 20 44 65 6d 6f 63 72 61 74
## [27049] 69 63 20 52 65 70 75 62 6c 69 63 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 57
## [27073] 65 73 74 65 72 6e 20 53 61 68 61 72 61 22 7d 2c 22 6d 65 79 22 3a 7b 22
## [27097] 6f 66 66 69 63 69 61 6c 22 3a 22 d8 a7 d9 84 d8 ac d9 85 d9 87 d9 88 d8
## [27121] b1 d9 8a d8 a9 20 d8 a7 d9 84 d8 b9 d8 b1 d8 a8 d9 8a d8 a9 20 d8 a7 d9
## [27145] 84 d8 b5 d8 ad d8 b1 d8 a7 d9 88 d9 8a d8 a9 20 d8 a7 d9 84 d8 af d9 8a
## [27169] d9 85 d9 82 d8 b1 d8 a7 d8 b7 d9 8a d8 a9 22 2c 22 63 6f 6d 6d 6f 6e 22
## [27193] 3a 22 d8 a7 d9 84 d8 b5 d8 ad d8 b1 d8 a7 d8 a1 20 d8 a7 d9 84 d8 ba d8
## [27217] b1 d8 a8 d9 8a d8 a9 22 7d 2c 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69
## [27241] 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 c3 81 72 61 62 65 20 53
## [27265] 61 68 61 72 61 75 69 20 44 65 6d 6f 63 72 c3 a1 74 69 63 61 22 2c 22 63
## [27289] 6f 6d 6d 6f 6e 22 3a 22 53 61 68 61 72 61 20 4f 63 63 69 64 65 6e 74 61
## [27313] 6c 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [27337] 3a 22 43 61 70 65 20 56 65 72 64 65 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [27361] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 43 61 62 6f 20 56 65 72 64 65
## [27385] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 70 6f 72 22 3a 7b 22
## [27409] 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 64 65
## [27433] 20 43 61 62 6f 20 56 65 72 64 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43
## [27457] 61 62 6f 20 56 65 72 64 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b
## [27481] 22 63 6f 6d 6d 6f 6e 22 3a 22 49 74 61 6c 79 22 2c 22 6f 66 66 69 63 69
## [27505] 61 6c 22 3a 22 49 74 61 6c 69 61 6e 20 52 65 70 75 62 6c 69 63 22 2c 22
## [27529] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 69 74 61 22 3a 7b 22 6f 66 66
## [27553] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 62 6c 69 63 61 20 69 74 61 6c 69
## [27577] 61 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 49 74 61 6c 69 61 22 7d 7d
## [27601] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 55 6e
## [27625] 69 74 65 64 20 4b 69 6e 67 64 6f 6d 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [27649] 3a 22 55 6e 69 74 65 64 20 4b 69 6e 67 64 6f 6d 20 6f 66 20 47 72 65 61
## [27673] 74 20 42 72 69 74 61 69 6e 20 61 6e 64 20 4e 6f 72 74 68 65 72 6e 20 49
## [27697] 72 65 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65
## [27721] 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 55 6e 69 74 65 64 20
## [27745] 4b 69 6e 67 64 6f 6d 20 6f 66 20 47 72 65 61 74 20 42 72 69 74 61 69 6e
## [27769] 20 61 6e 64 20 4e 6f 72 74 68 65 72 6e 20 49 72 65 6c 61 6e 64 22 2c 22
## [27793] 63 6f 6d 6d 6f 6e 22 3a 22 55 6e 69 74 65 64 20 4b 69 6e 67 64 6f 6d 22
## [27817] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [27841] 4d 61 63 61 75 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4d 61 63 61 6f
## [27865] 20 53 70 65 63 69 61 6c 20 41 64 6d 69 6e 69 73 74 72 61 74 69 76 65 20
## [27889] 52 65 67 69 6f 6e 20 6f 66 20 74 68 65 20 50 65 6f 70 6c 65 27 73 20 52
## [27913] 65 70 75 62 6c 69 63 20 6f 66 20 43 68 69 6e 61 22 2c 22 6e 61 74 69 76
## [27937] 65 4e 61 6d 65 22 3a 7b 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [27961] 22 3a 22 52 65 67 69 c3 a3 6f 20 41 64 6d 69 6e 69 73 74 72 61 74 69 76
## [27985] 61 20 45 73 70 65 63 69 61 6c 20 64 65 20 4d 61 63 61 75 20 64 61 20 52
## [28009] 65 70 c3 ba 62 6c 69 63 61 20 50 6f 70 75 6c 61 72 20 64 61 20 43 68 69
## [28033] 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 63 61 75 22 7d 2c 22 7a
## [28057] 68 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e4 b8 ad e5 8d 8e e4
## [28081] ba ba e6 b0 91 e5 85 b1 e5 92 8c e5 9b bd e6 be b3 e9 97 a8 e7 89 b9 e5
## [28105] 88 ab e8 a1 8c e6 94 bf e5 8c ba 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e6
## [28129] be b3 e9 97 a8 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [28153] 6d 6f 6e 22 3a 22 47 75 79 61 6e 61 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [28177] 3a 22 43 6f 2d 6f 70 65 72 61 74 69 76 65 20 52 65 70 75 62 6c 69 63 20
## [28201] 6f 66 20 47 75 79 61 6e 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [28225] 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 2d 6f
## [28249] 70 65 72 61 74 69 76 65 20 52 65 70 75 62 6c 69 63 20 6f 66 20 47 75 79
## [28273] 61 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 79 61 6e 61 22 7d 7d
## [28297] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f
## [28321] 72 77 61 79 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f
## [28345] 6d 20 6f 66 20 4e 6f 72 77 61 79 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [28369] 22 3a 7b 22 6e 6e 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 6f
## [28393] 6e 67 65 72 69 6b 65 74 20 4e 6f 72 65 67 22 2c 22 63 6f 6d 6d 6f 6e 22
## [28417] 3a 22 4e 6f 72 65 67 22 7d 2c 22 6e 6f 62 22 3a 7b 22 6f 66 66 69 63 69
## [28441] 61 6c 22 3a 22 4b 6f 6e 67 65 72 69 6b 65 74 20 4e 6f 72 67 65 22 2c 22
## [28465] 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 67 65 22 7d 2c 22 73 6d 69 22 3a 7b
## [28489] 22 6f 66 66 69 63 69 61 6c 22 3a 22 4e 6f 72 67 67 61 20 67 6f 6e 61 67
## [28513] 61 73 72 69 69 6b 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 67 67
## [28537] 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [28561] 3a 22 4e 65 77 20 43 61 6c 65 64 6f 6e 69 61 22 2c 22 6f 66 66 69 63 69
## [28585] 61 6c 22 3a 22 4e 65 77 20 43 61 6c 65 64 6f 6e 69 61 22 2c 22 6e 61 74
## [28609] 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69
## [28633] 61 6c 22 3a 22 4e 6f 75 76 65 6c 6c 65 2d 43 61 6c c3 a9 64 6f 6e 69 65
## [28657] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 75 76 65 6c 6c 65 2d 43 61 6c
## [28681] c3 a9 64 6f 6e 69 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [28705] 6f 6d 6d 6f 6e 22 3a 22 53 6f 75 74 68 20 53 75 64 61 6e 22 2c 22 6f 66
## [28729] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 53 6f 75
## [28753] 74 68 20 53 75 64 61 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [28777] 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62
## [28801] 6c 69 63 20 6f 66 20 53 6f 75 74 68 20 53 75 64 61 6e 22 2c 22 63 6f 6d
## [28825] 6d 6f 6e 22 3a 22 53 6f 75 74 68 20 53 75 64 61 6e 22 7d 7d 7d 7d 2c 7b
## [28849] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 75 72 6b 69 6e
## [28873] 61 20 46 61 73 6f 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 75 72 6b
## [28897] 69 6e 61 20 46 61 73 6f 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [28921] 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75
## [28945] 62 6c 69 71 75 65 20 64 75 20 42 75 72 6b 69 6e 61 22 2c 22 63 6f 6d 6d
## [28969] 6f 6e 22 3a 22 42 75 72 6b 69 6e 61 20 46 61 73 6f 22 7d 7d 7d 7d 2c 7b
## [28993] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 61 64 65 6c
## [29017] 6f 75 70 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 47 75 61 64 65 6c
## [29041] 6f 75 70 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61
## [29065] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 47 75 61 64 65 6c 6f 75 70
## [29089] 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 61 64 65 6c 6f 75 70 65 22
## [29113] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [29137] 4c 65 62 61 6e 6f 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4c 65 62
## [29161] 61 6e 65 73 65 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e
## [29185] 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [29209] 22 d8 a7 d9 84 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8 a7 d9 84
## [29233] d9 84 d8 a8 d9 86 d8 a7 d9 86 d9 8a d8 a9 22 2c 22 63 6f 6d 6d 6f 6e 22
## [29257] 3a 22 d9 84 d8 a8 d9 86 d8 a7 d9 86 22 7d 2c 22 66 72 61 22 3a 7b 22 6f
## [29281] 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 6c 69
## [29305] 62 61 6e 61 69 73 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 69 62 61 6e
## [29329] 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a
## [29353] 22 53 61 69 6e 74 20 4b 69 74 74 73 20 61 6e 64 20 4e 65 76 69 73 22 2c
## [29377] 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 74 69 6f 6e 20 6f
## [29401] 66 20 53 61 69 6e 74 20 43 68 72 69 73 74 6f 70 68 65 72 20 61 6e 64 20
## [29425] 4e 65 76 69 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e
## [29449] 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 74 69
## [29473] 6f 6e 20 6f 66 20 53 61 69 6e 74 20 43 68 72 69 73 74 6f 70 68 65 72 20
## [29497] 61 6e 64 20 4e 65 76 69 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69
## [29521] 6e 74 20 4b 69 74 74 73 20 61 6e 64 20 4e 65 76 69 73 22 7d 7d 7d 7d 2c
## [29545] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 75 77 61 69
## [29569] 74 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61 74 65 20 6f 66 20
## [29593] 4b 75 77 61 69 74 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61
## [29617] 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 af d9 88 d9 84 d8
## [29641] a9 20 d8 a7 d9 84 d9 83 d9 88 d9 8a d8 aa 22 2c 22 63 6f 6d 6d 6f 6e 22
## [29665] 3a 22 d8 a7 d9 84 d9 83 d9 88 d9 8a d8 aa 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [29689] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6f 75 74 68 20 47 65 6f
## [29713] 72 67 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 6f 75 74 68 20
## [29737] 47 65 6f 72 67 69 61 20 61 6e 64 20 74 68 65 20 53 6f 75 74 68 20 53 61
## [29761] 6e 64 77 69 63 68 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e
## [29785] 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [29809] 22 53 6f 75 74 68 20 47 65 6f 72 67 69 61 20 61 6e 64 20 74 68 65 20 53
## [29833] 6f 75 74 68 20 53 61 6e 64 77 69 63 68 20 49 73 6c 61 6e 64 73 22 2c 22
## [29857] 63 6f 6d 6d 6f 6e 22 3a 22 53 6f 75 74 68 20 47 65 6f 72 67 69 61 22 7d
## [29881] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4c
## [29905] 75 78 65 6d 62 6f 75 72 67 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 47
## [29929] 72 61 6e 64 20 44 75 63 68 79 20 6f 66 20 4c 75 78 65 6d 62 6f 75 72 67
## [29953] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 64 65 75 22 3a 7b 22
## [29977] 6f 66 66 69 63 69 61 6c 22 3a 22 47 72 6f c3 9f 68 65 72 7a 6f 67 74 75
## [30001] 6d 20 4c 75 78 65 6d 62 75 72 67 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4c
## [30025] 75 78 65 6d 62 75 72 67 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63
## [30049] 69 61 6c 22 3a 22 47 72 61 6e 64 2d 44 75 63 68 c3 a9 20 64 65 20 4c 75
## [30073] 78 65 6d 62 6f 75 72 67 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4c 75 78 65
## [30097] 6d 62 6f 75 72 67 22 7d 2c 22 6c 74 7a 22 3a 7b 22 6f 66 66 69 63 69 61
## [30121] 6c 22 3a 22 47 72 6f 75 73 73 68 65 72 7a 6f 67 74 75 6d 20 4c c3 ab 74
## [30145] 7a 65 62 75 65 72 67 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4c c3 ab 74 7a
## [30169] 65 62 75 65 72 67 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [30193] 6d 6d 6f 6e 22 3a 22 4d 79 61 6e 6d 61 72 22 2c 22 6f 66 66 69 63 69 61
## [30217] 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 74 68 65 20 55 6e 69 6f
## [30241] 6e 20 6f 66 20 4d 79 61 6e 6d 61 72 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [30265] 65 22 3a 7b 22 6d 79 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e1
## [30289] 80 95 e1 80 bc e1 80 8a e1 80 ba e1 80 91 e1 80 b1 e1 80 ac e1 80 84 e1
## [30313] 80 ba e1 80 85 e1 80 af 20 e1 80 9e e1 80 99 e1 80 b9 e1 80 99 e1 80 90
## [30337] 20 e1 80 99 e1 80 bc e1 80 94 e1 80 ba e1 80 99 e1 80 ac e1 80 94 e1 80
## [30361] ad e1 80 af e1 80 84 e1 80 ba e1 80 84 e1 80 b6 e1 80 90 e1 80 b1 e1 80
## [30385] ac e1 80 ba 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e1 80 99 e1 80 bc e1 80
## [30409] 94 e1 80 ba e1 80 99 e1 80 ac 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [30433] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 49 73 72 61 65 6c 22 2c 22 6f 66 66 69
## [30457] 63 69 61 6c 22 3a 22 53 74 61 74 65 20 6f 66 20 49 73 72 61 65 6c 22 2c
## [30481] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66
## [30505] 66 69 63 69 61 6c 22 3a 22 d8 af d9 88 d9 84 d8 a9 20 d8 a5 d8 b3 d8 b1
## [30529] d8 a7 d8 a6 d9 8a d9 84 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 a5 d8 b3
## [30553] d8 b1 d8 a7 d8 a6 d9 8a d9 84 22 7d 2c 22 68 65 62 22 3a 7b 22 6f 66 66
## [30577] 69 63 69 61 6c 22 3a 22 d7 9e d7 93 d7 99 d7 a0 d7 aa 20 d7 99 d7 a9 d7
## [30601] a8 d7 90 d7 9c 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d7 99 d7 a9 d7 a8 d7
## [30625] 90 d7 9c 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [30649] 6e 22 3a 22 54 75 72 6b 6d 65 6e 69 73 74 61 6e 22 2c 22 6f 66 66 69 63
## [30673] 69 61 6c 22 3a 22 54 75 72 6b 6d 65 6e 69 73 74 61 6e 22 2c 22 6e 61 74
## [30697] 69 76 65 4e 61 6d 65 22 3a 7b 22 72 75 73 22 3a 7b 22 6f 66 66 69 63 69
## [30721] 61 6c 22 3a 22 d0 a2 d1 83 d1 80 d0 ba d0 bc d0 b5 d0 bd d0 b8 d1 81 d1
## [30745] 82 d0 b0 d0 bd 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 a2 d1 83 d1 80 d0
## [30769] ba d0 bc d0 b5 d0 bd d0 b8 d1 8f 22 7d 2c 22 74 75 6b 22 3a 7b 22 6f 66
## [30793] 66 69 63 69 61 6c 22 3a 22 54 c3 bc 72 6b 6d 65 6e 69 73 74 61 6e 22 2c
## [30817] 22 63 6f 6d 6d 6f 6e 22 3a 22 54 c3 bc 72 6b 6d 65 6e 69 73 74 61 6e 22
## [30841] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [30865] 47 72 65 65 63 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 48 65 6c 6c
## [30889] 65 6e 69 63 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e 61
## [30913] 6d 65 22 3a 7b 22 65 6c 6c 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [30937] ce 95 ce bb ce bb ce b7 ce bd ce b9 ce ba ce ae 20 ce 94 ce b7 ce bc ce
## [30961] bf ce ba cf 81 ce b1 cf 84 ce af ce b1 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [30985] 22 ce 95 ce bb ce bb ce ac ce b4 ce b1 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d
## [31009] 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 6f 6e 61 63 6f 22 2c 22 6f
## [31033] 66 66 69 63 69 61 6c 22 3a 22 50 72 69 6e 63 69 70 61 6c 69 74 79 20 6f
## [31057] 66 20 4d 6f 6e 61 63 6f 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [31081] 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 72 69 6e 63
## [31105] 69 70 61 75 74 c3 a9 20 64 65 20 4d 6f 6e 61 63 6f 22 2c 22 63 6f 6d 6d
## [31129] 6f 6e 22 3a 22 4d 6f 6e 61 63 6f 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22
## [31153] 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 56 65 6e 65 7a 75 65 6c 61 22 2c 22
## [31177] 6f 66 66 69 63 69 61 6c 22 3a 22 42 6f 6c 69 76 61 72 69 61 6e 20 52 65
## [31201] 70 75 62 6c 69 63 20 6f 66 20 56 65 6e 65 7a 75 65 6c 61 22 2c 22 6e 61
## [31225] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70 61 22 3a 7b 22 6f 66 66 69 63
## [31249] 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 42 6f 6c 69 76 61 72
## [31273] 69 61 6e 61 20 64 65 20 56 65 6e 65 7a 75 65 6c 61 22 2c 22 63 6f 6d 6d
## [31297] 6f 6e 22 3a 22 56 65 6e 65 7a 75 65 6c 61 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [31321] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 52 65 70 75 62 6c 69 63 20
## [31345] 6f 66 20 74 68 65 20 43 6f 6e 67 6f 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [31369] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 74 68 65 20 43 6f 6e 67 6f 22
## [31393] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f
## [31417] 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 75
## [31441] 20 43 6f 6e 67 6f 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 52 c3 a9 70 75 62
## [31465] 6c 69 71 75 65 20 64 75 20 43 6f 6e 67 6f 22 7d 2c 22 6b 6f 6e 22 3a 7b
## [31489] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 69 6c 69 6b 61 20 79
## [31513] 61 20 4b 6f 6e 67 6f 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 52 65 70 75 62
## [31537] 69 6c 69 6b 61 20 79 61 20 4b 6f 6e 67 6f 22 7d 2c 22 6c 69 6e 22 3a 7b
## [31561] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c c3 ad 6b 69 20 79
## [31585] 61 20 4b 6f 6e 67 c3 b3 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 52 65 70 75
## [31609] 62 6c c3 ad 6b 69 20 79 61 20 4b 6f 6e 67 c3 b3 22 7d 7d 7d 7d 2c 7b 22
## [31633] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 70 61 69 6e 22 2c
## [31657] 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 53
## [31681] 70 61 69 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70 61
## [31705] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 69 6e 6f 20 64 65 20
## [31729] 45 73 70 61 c3 b1 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 45 73 70 61 c3
## [31753] b1 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [31777] 22 3a 22 4e 6f 72 66 6f 6c 6b 20 49 73 6c 61 6e 64 22 2c 22 6f 66 66 69
## [31801] 63 69 61 6c 22 3a 22 54 65 72 72 69 74 6f 72 79 20 6f 66 20 4e 6f 72 66
## [31825] 6f 6c 6b 20 49 73 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [31849] 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 54 65 72
## [31873] 72 69 74 6f 72 79 20 6f 66 20 4e 6f 72 66 6f 6c 6b 20 49 73 6c 61 6e 64
## [31897] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 66 6f 6c 6b 20 49 73 6c 61
## [31921] 6e 64 22 7d 2c 22 70 69 68 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [31945] 54 65 72 61 74 72 69 20 6f 66 20 4e 6f 72 66 27 6b 20 41 69 6c 65 6e 22
## [31969] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 66 27 6b 20 41 69 6c 65 6e 22
## [31993] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [32017] 44 6f 6d 69 6e 69 63 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f
## [32041] 6d 6d 6f 6e 77 65 61 6c 74 68 20 6f 66 20 44 6f 6d 69 6e 69 63 61 22 2c
## [32065] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66
## [32089] 66 69 63 69 61 6c 22 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74 68 20 6f 66
## [32113] 20 44 6f 6d 69 6e 69 63 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 44 6f 6d
## [32137] 69 6e 69 63 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [32161] 6d 6f 6e 22 3a 22 54 75 6e 69 73 69 61 22 2c 22 6f 66 66 69 63 69 61 6c
## [32185] 22 3a 22 54 75 6e 69 73 69 61 6e 20 52 65 70 75 62 6c 69 63 22 2c 22 6e
## [32209] 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69
## [32233] 63 69 61 6c 22 3a 22 d8 a7 d9 84 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8
## [32257] a9 20 d8 a7 d9 84 d8 aa d9 88 d9 86 d8 b3 d9 8a d8 a9 22 2c 22 63 6f 6d
## [32281] 6d 6f 6e 22 3a 22 d8 aa d9 88 d9 86 d8 b3 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [32305] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 54 75 72 6b 65 79 22 2c 22
## [32329] 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 54
## [32353] 75 72 6b 65 79 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 74 75
## [32377] 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 54 c3 bc 72 6b 69 79 65
## [32401] 20 43 75 6d 68 75 72 69 79 65 74 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [32425] 54 c3 bc 72 6b 69 79 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [32449] 63 6f 6d 6d 6f 6e 22 3a 22 43 6f 6c 6f 6d 62 69 61 22 2c 22 6f 66 66 69
## [32473] 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 43 6f 6c 6f 6d
## [32497] 62 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70 61 22
## [32521] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61
## [32545] 20 64 65 20 43 6f 6c 6f 6d 62 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [32569] 43 6f 6c 6f 6d 62 69 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [32593] 63 6f 6d 6d 6f 6e 22 3a 22 43 6f 6d 6f 72 6f 73 22 2c 22 6f 66 66 69 63
## [32617] 69 61 6c 22 3a 22 55 6e 69 6f 6e 20 6f 66 20 74 68 65 20 43 6f 6d 6f 72
## [32641] 6f 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a
## [32665] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 a7 d9 84 d8 a7 d8 aa d8 ad d8
## [32689] a7 d8 af 20 d8 a7 d9 84 d9 82 d9 85 d8 b1 d9 8a 22 2c 22 63 6f 6d 6d 6f
## [32713] 6e 22 3a 22 d8 a7 d9 84 d9 82 d9 85 d8 b1 e2 80 8e 22 7d 2c 22 66 72 61
## [32737] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 55 6e 69 6f 6e 20 64 65 73
## [32761] 20 43 6f 6d 6f 72 65 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 6f 6d 6f
## [32785] 72 65 73 22 7d 2c 22 7a 64 6a 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [32809] 22 55 64 7a 69 6d 61 20 77 61 20 4b 6f 6d 6f 72 69 22 2c 22 63 6f 6d 6d
## [32833] 6f 6e 22 3a 22 4b 6f 6d 6f 72 69 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22
## [32857] 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6f 6c 6f 6d 6f 6e 20 49 73 6c 61
## [32881] 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 6f 6c 6f 6d 6f 6e
## [32905] 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [32929] 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 6f 6c 6f 6d
## [32953] 6f 6e 20 49 73 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6f
## [32977] 6c 6f 6d 6f 6e 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d
## [33001] 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69 6e 74 20 42 61 72 74
## [33025] 68 c3 a9 6c 65 6d 79 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 6c
## [33049] 6c 65 63 74 69 76 69 74 79 20 6f 66 20 53 61 69 6e 74 20 42 61 72 74 68
## [33073] c3 a9 6c 65 6d 79 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66
## [33097] 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 6c 6c 65 63 74
## [33121] 69 76 69 74 c3 a9 20 64 65 20 53 61 69 6e 74 2d 42 61 72 74 68 c3 a9 6c
## [33145] 65 6d 79 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 61 69 6e 74 2d 42 61 72
## [33169] 74 68 c3 a9 6c 65 6d 79 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [33193] 63 6f 6d 6d 6f 6e 22 3a 22 55 7a 62 65 6b 69 73 74 61 6e 22 2c 22 6f 66
## [33217] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 55 7a 62
## [33241] 65 6b 69 73 74 61 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22
## [33265] 72 75 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d0 a0 d0 b5 d1 81
## [33289] d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba d0 b0 20 d0 a3 d0 b7 d0 b1 d0 b5 d0
## [33313] ba d0 b8 d1 81 d1 82 d0 b0 d0 bd 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0
## [33337] a3 d0 b7 d0 b1 d0 b5 d0 ba d0 b8 d1 81 d1 82 d0 b0 d0 bd 22 7d 2c 22 75
## [33361] 7a 62 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4f 27 7a 62 65 6b 69
## [33385] 73 74 6f 6e 20 52 65 73 70 75 62 6c 69 6b 61 73 69 22 2c 22 63 6f 6d 6d
## [33409] 6f 6e 22 3a 22 4f e2 80 98 7a 62 65 6b 69 73 74 6f 6e 22 7d 7d 7d 7d 2c
## [33433] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61 6c 65 73
## [33457] 74 69 6e 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61 74 65 20
## [33481] 6f 66 20 50 61 6c 65 73 74 69 6e 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [33505] 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8
## [33529] af d9 88 d9 84 d8 a9 20 d9 81 d9 84 d8 b3 d8 b7 d9 8a d9 86 22 2c 22 63
## [33553] 6f 6d 6d 6f 6e 22 3a 22 d9 81 d9 84 d8 b3 d8 b7 d9 8a d9 86 22 7d 7d 7d
## [33577] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 6e 74
## [33601] 61 72 63 74 69 63 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 6e 74
## [33625] 61 72 63 74 69 63 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 7d
## [33649] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 75
## [33673] 62 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63
## [33697] 20 6f 66 20 43 75 62 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [33721] 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba
## [33745] 62 6c 69 63 61 20 64 65 20 43 75 62 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [33769] 22 43 75 62 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [33793] 6d 6f 6e 22 3a 22 47 61 62 6f 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [33817] 22 47 61 62 6f 6e 65 73 65 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74
## [33841] 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69
## [33865] 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 67 61 62 6f 6e 61 69
## [33889] 73 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 61 62 6f 6e 22 7d 7d 7d 7d
## [33913] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4b 79 72 67
## [33937] 79 7a 73 74 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 79 72 67
## [33961] 79 7a 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [33985] 22 3a 7b 22 6b 69 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d0 9a
## [34009] d1 8b d1 80 d0 b3 d1 8b d0 b7 20 d0 a0 d0 b5 d1 81 d0 bf d1 83 d0 b1 d0
## [34033] bb d0 b8 d0 ba d0 b0 d1 81 d1 8b 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0
## [34057] 9a d1 8b d1 80 d0 b3 d1 8b d0 b7 d1 81 d1 82 d0 b0 d0 bd 22 7d 2c 22 72
## [34081] 75 73 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d0 9a d1 8b d1 80 d0
## [34105] b3 d1 8b d0 b7 d1 81 d0 ba d0 b0 d1 8f 20 d0 a0 d0 b5 d1 81 d0 bf d1 83
## [34129] d0 b1 d0 bb d0 b8 d0 ba d0 b0 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 9a
## [34153] d0 b8 d1 80 d0 b3 d0 b8 d0 b7 d0 b8 d1 8f 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [34177] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 69 63 72 6f 6e 65 73 69
## [34201] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 74 65 64
## [34225] 20 53 74 61 74 65 73 20 6f 66 20 4d 69 63 72 6f 6e 65 73 69 61 22 2c 22
## [34249] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66
## [34273] 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 74 65 64 20 53 74 61 74 65 73
## [34297] 20 6f 66 20 4d 69 63 72 6f 6e 65 73 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22
## [34321] 3a 22 4d 69 63 72 6f 6e 65 73 69 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [34345] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 77 65 64 65 6e 22 2c 22 6f 66
## [34369] 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 53 77 65 64
## [34393] 65 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 77 65 22 3a
## [34417] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 6f 6e 75 6e 67 61 72 69 6b 65
## [34441] 74 20 53 76 65 72 69 67 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 76 65
## [34465] 72 69 67 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [34489] 6f 6e 22 3a 22 53 61 69 6e 74 20 4d 61 72 74 69 6e 22 2c 22 6f 66 66 69
## [34513] 63 69 61 6c 22 3a 22 53 61 69 6e 74 20 4d 61 72 74 69 6e 22 2c 22 6e 61
## [34537] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63
## [34561] 69 61 6c 22 3a 22 53 61 69 6e 74 2d 4d 61 72 74 69 6e 22 2c 22 63 6f 6d
## [34585] 6d 6f 6e 22 3a 22 53 61 69 6e 74 2d 4d 61 72 74 69 6e 22 7d 7d 7d 7d 2c
## [34609] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6c 6f 76 61
## [34633] 6b 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 6c 6f 76 61 6b 20
## [34657] 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b
## [34681] 22 73 6c 6b 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 6c 6f 76 65
## [34705] 6e 73 6b c3 a1 20 72 65 70 75 62 6c 69 6b 61 22 2c 22 63 6f 6d 6d 6f 6e
## [34729] 22 3a 22 53 6c 6f 76 65 6e 73 6b 6f 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [34753] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 44 52 20 43 6f 6e 67 6f 22 2c 22
## [34777] 6f 66 66 69 63 69 61 6c 22 3a 22 44 65 6d 6f 63 72 61 74 69 63 20 52 65
## [34801] 70 75 62 6c 69 63 20 6f 66 20 74 68 65 20 43 6f 6e 67 6f 22 2c 22 6e 61
## [34825] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63
## [34849] 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 c3 a9 6d 6f 63
## [34873] 72 61 74 69 71 75 65 20 64 75 20 43 6f 6e 67 6f 22 2c 22 63 6f 6d 6d 6f
## [34897] 6e 22 3a 22 52 44 20 43 6f 6e 67 6f 22 7d 2c 22 6b 6f 6e 22 3a 7b 22 6f
## [34921] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 69 6c 69 6b 61 20 79 61 20
## [34945] 4b 6f 6e 67 6f 20 44 65 6d 6f 6b 72 61 74 69 6b 69 22 2c 22 63 6f 6d 6d
## [34969] 6f 6e 22 3a 22 52 65 70 75 62 69 6c 69 6b 61 20 79 61 20 4b 6f 6e 67 6f
## [34993] 20 44 65 6d 6f 6b 72 61 74 69 6b 69 22 7d 2c 22 6c 69 6e 22 3a 7b 22 6f
## [35017] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 6b 69 20 79 61 20 4b
## [35041] 6f 6e 67 c3 b3 20 44 65 6d 6f 6b 72 61 74 69 6b 69 22 2c 22 63 6f 6d 6d
## [35065] 6f 6e 22 3a 22 52 65 70 75 62 6c 69 6b 69 20 79 61 20 4b 6f 6e 67 c3 b3
## [35089] 20 44 65 6d 6f 6b 72 61 74 69 6b 69 22 7d 2c 22 6c 75 61 22 3a 7b 22 6f
## [35113] 66 66 69 63 69 61 6c 22 3a 22 44 69 74 75 6e 67 61 20 64 69 61 20 4b 6f
## [35137] 6e 67 75 20 77 61 20 4d 75 6e 67 61 6c 61 61 74 61 22 2c 22 63 6f 6d 6d
## [35161] 6f 6e 22 3a 22 44 69 74 75 6e 67 61 20 64 69 61 20 4b 6f 6e 67 75 20 77
## [35185] 61 20 4d 75 6e 67 61 6c 61 61 74 61 22 7d 2c 22 73 77 61 22 3a 7b 22 6f
## [35209] 66 66 69 63 69 61 6c 22 3a 22 4a 61 6d 68 75 72 69 20 79 61 20 4b 69 64
## [35233] 65 6d 6f 6b 72 61 73 69 61 20 79 61 20 4b 6f 6e 67 6f 22 2c 22 63 6f 6d
## [35257] 6d 6f 6e 22 3a 22 4a 61 6d 68 75 72 69 20 79 61 20 4b 69 64 65 6d 6f 6b
## [35281] 72 61 73 69 61 20 79 61 20 4b 6f 6e 67 6f 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [35305] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 6f 6e 74 65 6e 65 67 72
## [35329] 6f 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4d 6f 6e 74 65 6e 65 67 72
## [35353] 6f 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 63 6e 72 22 3a 7b
## [35377] 22 6f 66 66 69 63 69 61 6c 22 3a 22 d0 a6 d1 80 d0 bd d0 b0 20 d0 93 d0
## [35401] be d1 80 d0 b0 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 a6 d1 80 d0 bd d0
## [35425] b0 20 d0 93 d0 be d1 80 d0 b0 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [35449] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 69 62 72 61 6c 74 61 72 22 2c 22 6f
## [35473] 66 66 69 63 69 61 6c 22 3a 22 47 69 62 72 61 6c 74 61 72 22 2c 22 6e 61
## [35497] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63
## [35521] 69 61 6c 22 3a 22 47 69 62 72 61 6c 74 61 72 22 2c 22 63 6f 6d 6d 6f 6e
## [35545] 22 3a 22 47 69 62 72 61 6c 74 61 72 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [35569] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6f 6d 61 6c 69 61 22 2c 22 6f
## [35593] 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 6c 20 52 65 70 75 62 6c
## [35617] 69 63 20 6f 66 20 53 6f 6d 61 6c 69 61 22 2c 22 6e 61 74 69 76 65 4e 61
## [35641] 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [35665] d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8 a7 d9 84 d8 b5 d9 88 d9
## [35689] 85 d8 a7 d9 84 e2 80 8e e2 80 8e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8
## [35713] a7 d9 84 d8 b5 d9 88 d9 85 d8 a7 d9 84 e2 80 8e e2 80 8e 22 7d 2c 22 73
## [35737] 6f 6d 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4a 61 6d 68 75 75 72
## [35761] 69 79 61 64 64 61 20 46 65 64 65 72 61 61 6c 6b 61 20 53 6f 6f 6d 61 61
## [35785] 6c 69 79 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6f 6f 6d 61 61 6c 69
## [35809] 79 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [35833] 22 3a 22 53 72 69 20 4c 61 6e 6b 61 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [35857] 3a 22 44 65 6d 6f 63 72 61 74 69 63 20 53 6f 63 69 61 6c 69 73 74 20 52
## [35881] 65 70 75 62 6c 69 63 20 6f 66 20 53 72 69 20 4c 61 6e 6b 61 22 2c 22 6e
## [35905] 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 69 6e 22 3a 7b 22 6f 66 66 69
## [35929] 63 69 61 6c 22 3a 22 e0 b7 81 e0 b7 8a e2 80 8d e0 b6 bb e0 b7 93 20 e0
## [35953] b6 bd e0 b6 82 e0 b6 9a e0 b7 8f 20 e0 b6 b4 e0 b7 8a e2 80 8d e0 b6 bb
## [35977] e0 b6 a2 e0 b7 8f e0 b6 ad e0 b7 8f e0 b6 b1 e0 b7 8a e0 b6 ad e0 b7 8a
## [36001] e2 80 8d e0 b6 bb e0 b7 92 e0 b6 9a 20 e0 b7 83 e0 b6 b8 e0 b7 8f e0 b6
## [36025] a2 e0 b7 80 e0 b7 8f e0 b6 af e0 b7 93 20 e0 b6 a2 e0 b6 b1 e0 b6 bb e0
## [36049] b6 a2 e0 b6 ba 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e0 b7 81 e0 b7 8a e2
## [36073] 80 8d e0 b6 bb e0 b7 93 20 e0 b6 bd e0 b6 82 e0 b6 9a e0 b7 8f e0 b7 80
## [36097] 22 7d 2c 22 74 61 6d 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e0 ae
## [36121] 87 e0 ae b2 e0 ae 99 e0 af 8d e0 ae 95 e0 af 88 20 e0 ae 9a e0 ae a9 e0
## [36145] ae a8 e0 ae be e0 ae af e0 ae 95 20 e0 ae 9a e0 af 8b e0 ae 9a e0 ae b2
## [36169] e0 ae bf e0 ae 9a e0 ae 95 e0 af 8d 20 e0 ae 95 e0 af 81 e0 ae 9f e0 ae
## [36193] bf e0 ae af e0 ae b0 e0 ae 9a e0 af 81 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [36217] 22 e0 ae 87 e0 ae b2 e0 ae 99 e0 af 8d e0 ae 95 e0 af 88 22 7d 7d 7d 7d
## [36241] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 79 70 72
## [36265] 75 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63
## [36289] 20 6f 66 20 43 79 70 72 75 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [36313] 3a 7b 22 65 6c 6c 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 ce 94 ce
## [36337] b7 ce bc ce bf ce ba cf 81 ce b1 cf 84 ce af ce b1 20 cf 84 ce b7 cf 82
## [36361] 20 ce 9a cf 8d cf 80 cf 81 ce bf cf 82 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [36385] 22 ce 9a cf 8d cf 80 cf 81 ce bf cf 82 22 7d 2c 22 74 75 72 22 3a 7b 22
## [36409] 6f 66 66 69 63 69 61 6c 22 3a 22 4b c4 b1 62 72 c4 b1 73 20 43 75 6d 68
## [36433] 75 72 69 79 65 74 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4b c4 b1 62 72
## [36457] c4 b1 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [36481] 6e 22 3a 22 4c 61 6f 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4c 61
## [36505] 6f 20 50 65 6f 70 6c 65 27 73 20 44 65 6d 6f 63 72 61 74 69 63 20 52 65
## [36529] 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6c
## [36553] 61 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e0 ba aa e0 ba b2 e0
## [36577] ba 97 e0 ba b2 e0 ba a5 e0 ba b0 e0 ba 99 e0 ba b0 20 e0 ba 8a e0 ba b2
## [36601] e0 ba 97 e0 ba b4 e0 ba 9b e0 ba b0 e0 bb 84 e0 ba 95 20 e0 ba 84 e0 ba
## [36625] bb e0 ba 99 e0 ba a5 e0 ba b2 e0 ba a7 20 e0 ba 82 e0 ba ad e0 ba 87 22
## [36649] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e0 ba aa e0 ba 9b e0 ba 9b e0 ba a5 e0
## [36673] ba b2 e0 ba a7 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [36697] 6d 6f 6e 22 3a 22 4d 6f 72 6f 63 63 6f 22 2c 22 6f 66 66 69 63 69 61 6c
## [36721] 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 4d 6f 72 6f 63 63 6f 22 2c 22
## [36745] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66
## [36769] 69 63 69 61 6c 22 3a 22 d8 a7 d9 84 d9 85 d9 85 d9 84 d9 83 d8 a9 20 d8
## [36793] a7 d9 84 d9 85 d8 ba d8 b1 d8 a8 d9 8a d8 a9 22 2c 22 63 6f 6d 6d 6f 6e
## [36817] 22 3a 22 d8 a7 d9 84 d9 85 d8 ba d8 b1 d8 a8 22 7d 2c 22 62 65 72 22 3a
## [36841] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e2 b5 9c e2 b4 b0 e2 b4 b3 e2 b5
## [36865] 8d e2 b4 b7 e2 b5 89 e2 b5 9c 20 e2 b5 8f 20 e2 b5 8d e2 b5 8e e2 b5 96
## [36889] e2 b5 94 e2 b5 89 e2 b4 b1 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e2 b5 8d
## [36913] e2 b5 8e e2 b4 b0 e2 b5 96 e2 b5 94 e2 b5 89 e2 b4 b1 22 7d 7d 7d 7d 2c
## [36937] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 54 69 6d 6f 72
## [36961] 2d 4c 65 73 74 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 44 65 6d 6f
## [36985] 63 72 61 74 69 63 20 52 65 70 75 62 6c 69 63 20 6f 66 20 54 69 6d 6f 72
## [37009] 2d 4c 65 73 74 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 70
## [37033] 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c
## [37057] 69 63 61 20 44 65 6d 6f 63 72 c3 a1 74 69 63 61 20 64 65 20 54 69 6d 6f
## [37081] 72 2d 4c 65 73 74 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 69 6d 6f 72
## [37105] 2d 4c 65 73 74 65 22 7d 2c 22 74 65 74 22 3a 7b 22 6f 66 66 69 63 69 61
## [37129] 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 6b 61 20 44 65 6d 6f 6b 72 c3 a1 74
## [37153] 69 6b 61 20 54 69 6d c3 b3 72 2d 4c 65 73 74 65 22 2c 22 63 6f 6d 6d 6f
## [37177] 6e 22 3a 22 54 69 6d c3 b3 72 2d 4c 65 73 74 65 22 7d 7d 7d 7d 2c 7b 22
## [37201] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 59 65 6d 65 6e 22 2c
## [37225] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [37249] 59 65 6d 65 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72
## [37273] 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 a7 d9 84 d8 ac d9 85
## [37297] d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8 a7 d9 84 d9 8a d9 85 d9 86 d9 8a d8
## [37321] a9 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 a7 d9 84 d9 8a d9 8e d9 85 d9
## [37345] 8e d9 86 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [37369] 6e 22 3a 22 46 61 6c 6b 6c 61 6e 64 20 49 73 6c 61 6e 64 73 22 2c 22 6f
## [37393] 66 66 69 63 69 61 6c 22 3a 22 46 61 6c 6b 6c 61 6e 64 20 49 73 6c 61 6e
## [37417] 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a
## [37441] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 61 6c 6b 6c 61 6e 64 20 49 73
## [37465] 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 46 61 6c 6b 6c 61 6e
## [37489] 64 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b
## [37513] 22 63 6f 6d 6d 6f 6e 22 3a 22 45 71 75 61 74 6f 72 69 61 6c 20 47 75 69
## [37537] 6e 65 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [37561] 63 20 6f 66 20 45 71 75 61 74 6f 72 69 61 6c 20 47 75 69 6e 65 61 22 2c
## [37585] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66
## [37609] 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 65 20
## [37633] 6c 61 20 47 75 69 6e c3 a9 65 20 c3 89 71 75 61 74 6f 72 69 61 6c 65 22
## [37657] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 69 6e c3 a9 65 20 c3 a9 71 75 61
## [37681] 74 6f 72 69 61 6c 65 22 7d 2c 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63 69
## [37705] 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 64 61 20 47 75 69 6e c3
## [37729] a9 20 45 71 75 61 74 6f 72 69 61 6c 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [37753] 47 75 69 6e c3 a9 20 45 71 75 61 74 6f 72 69 61 6c 22 7d 2c 22 73 70 61
## [37777] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63
## [37801] 61 20 64 65 20 47 75 69 6e 65 61 20 45 63 75 61 74 6f 72 69 61 6c 22 2c
## [37825] 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 69 6e 65 61 20 45 63 75 61 74 6f 72
## [37849] 69 61 6c 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f
## [37873] 6e 22 3a 22 41 6c 67 65 72 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [37897] 22 50 65 6f 70 6c 65 27 73 20 44 65 6d 6f 63 72 61 74 69 63 20 52 65 70
## [37921] 75 62 6c 69 63 20 6f 66 20 41 6c 67 65 72 69 61 22 2c 22 6e 61 74 69 76
## [37945] 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [37969] 22 3a 22 d8 a7 d9 84 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8 a7
## [37993] d9 84 d8 af d9 8a d9 85 d9 82 d8 b1 d8 a7 d8 b7 d9 8a d8 a9 20 d8 a7 d9
## [38017] 84 d8 b4 d8 b9 d8 a8 d9 8a d8 a9 20 d8 a7 d9 84 d8 ac d8 b2 d8 a7 d8 a6
## [38041] d8 b1 d9 8a d8 a9 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 a7 d9 84 d8 ac
## [38065] d8 b2 d8 a7 d8 a6 d8 b1 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [38089] 63 6f 6d 6d 6f 6e 22 3a 22 5a 61 6d 62 69 61 22 2c 22 6f 66 66 69 63 69
## [38113] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 61 6d 62 69 61 22
## [38137] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f
## [38161] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 61
## [38185] 6d 62 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 61 6d 62 69 61 22 7d
## [38209] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53
## [38233] 65 72 62 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62
## [38257] 6c 69 63 20 6f 66 20 53 65 72 62 69 61 22 2c 22 6e 61 74 69 76 65 4e 61
## [38281] 6d 65 22 3a 7b 22 73 72 70 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [38305] d0 a0 d0 b5 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba d0 b0 20 d0 a1 d1 80 d0
## [38329] b1 d0 b8 d1 98 d0 b0 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 a1 d1 80 d0
## [38353] b1 d0 b8 d1 98 d0 b0 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [38377] 6f 6d 6d 6f 6e 22 3a 22 41 6e 64 6f 72 72 61 22 2c 22 6f 66 66 69 63 69
## [38401] 61 6c 22 3a 22 50 72 69 6e 63 69 70 61 6c 69 74 79 20 6f 66 20 41 6e 64
## [38425] 6f 72 72 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 63 61 74
## [38449] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 72 69 6e 63 69 70 61 74
## [38473] 20 64 27 41 6e 64 6f 72 72 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 6e
## [38497] 64 6f 72 72 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d
## [38521] 6d 6f 6e 22 3a 22 53 c3 a3 6f 20 54 6f 6d c3 a9 20 61 6e 64 20 50 72 c3
## [38545] ad 6e 63 69 70 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 44 65 6d 6f
## [38569] 63 72 61 74 69 63 20 52 65 70 75 62 6c 69 63 20 6f 66 20 53 c3 a3 6f 20
## [38593] 54 6f 6d c3 a9 20 61 6e 64 20 50 72 c3 ad 6e 63 69 70 65 22 2c 22 6e 61
## [38617] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63
## [38641] 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 44 65 6d 6f 63 72 c3
## [38665] a1 74 69 63 61 20 64 6f 20 53 c3 a3 6f 20 54 6f 6d c3 a9 20 65 20 50 72
## [38689] c3 ad 6e 63 69 70 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 c3 a3 6f 20
## [38713] 54 6f 6d c3 a9 20 65 20 50 72 c3 ad 6e 63 69 70 65 22 7d 7d 7d 7d 2c 7b
## [38737] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 44 6a 69 62 6f 75
## [38761] 74 69 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63
## [38785] 20 6f 66 20 44 6a 69 62 6f 75 74 69 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [38809] 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8
## [38833] ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8 ac d9 8a d8 a8 d9 88 d8 aa
## [38857] d9 8a 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 ac d9 8a d8 a8 d9 88 d8 aa
## [38881] d9 8a e2 80 8e 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [38905] 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 65 20 44 6a 69 62 6f 75
## [38929] 74 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 44 6a 69 62 6f 75 74 69 22 7d
## [38953] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42
## [38977] 75 6c 67 61 72 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [39001] 75 62 6c 69 63 20 6f 66 20 42 75 6c 67 61 72 69 61 22 2c 22 6e 61 74 69
## [39025] 76 65 4e 61 6d 65 22 3a 7b 22 62 75 6c 22 3a 7b 22 6f 66 66 69 63 69 61
## [39049] 6c 22 3a 22 d0 a0 d0 b5 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba d0 b0 20 d0
## [39073] 91 d1 8a d0 bb d0 b3 d0 b0 d1 80 d0 b8 d1 8f 22 2c 22 63 6f 6d 6d 6f 6e
## [39097] 22 3a 22 d0 91 d1 8a d0 bb d0 b3 d0 b0 d1 80 d0 b8 d1 8f 22 7d 7d 7d 7d
## [39121] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 55 6e 69 74
## [39145] 65 64 20 53 74 61 74 65 73 20 56 69 72 67 69 6e 20 49 73 6c 61 6e 64 73
## [39169] 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 56 69 72 67 69 6e 20 49 73 6c
## [39193] 61 6e 64 73 20 6f 66 20 74 68 65 20 55 6e 69 74 65 64 20 53 74 61 74 65
## [39217] 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b
## [39241] 22 6f 66 66 69 63 69 61 6c 22 3a 22 56 69 72 67 69 6e 20 49 73 6c 61 6e
## [39265] 64 73 20 6f 66 20 74 68 65 20 55 6e 69 74 65 64 20 53 74 61 74 65 73 22
## [39289] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 55 6e 69 74 65 64 20 53 74 61 74 65 73
## [39313] 20 56 69 72 67 69 6e 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e
## [39337] 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 72 67 65 6e 74 69 6e
## [39361] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 72 67 65 6e 74 69 6e 65
## [39385] 20 52 65 70 75 62 6c 69 63 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [39409] 7b 22 67 72 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 72 67 65
## [39433] 6e 74 69 6e 65 20 52 65 70 75 62 6c 69 63 22 2c 22 63 6f 6d 6d 6f 6e 22
## [39457] 3a 22 41 72 67 65 6e 74 69 6e 61 22 7d 2c 22 73 70 61 22 3a 7b 22 6f 66
## [39481] 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 41 72 67 65
## [39505] 6e 74 69 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 72 67 65 6e 74 69
## [39529] 6e 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [39553] 22 3a 22 4e 69 67 65 72 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [39577] 46 65 64 65 72 61 6c 20 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 69 67 65
## [39601] 72 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22
## [39625] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 6c 20 52 65
## [39649] 70 75 62 6c 69 63 20 6f 66 20 4e 69 67 65 72 69 61 22 2c 22 63 6f 6d 6d
## [39673] 6f 6e 22 3a 22 4e 69 67 65 72 69 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [39697] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 52 77 61 6e 64 61 22 2c 22 6f 66
## [39721] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 52 77 61
## [39745] 6e 64 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22
## [39769] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f
## [39793] 66 20 52 77 61 6e 64 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 52 77 61 6e
## [39817] 64 61 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [39841] 52 c3 a9 70 75 62 6c 69 71 75 65 20 72 77 61 6e 64 61 69 73 65 22 2c 22
## [39865] 63 6f 6d 6d 6f 6e 22 3a 22 52 77 61 6e 64 61 22 7d 2c 22 6b 69 6e 22 3a
## [39889] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 75 6c 69 6b 61 20
## [39913] 79 27 75 20 52 77 61 6e 64 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 52 77
## [39937] 61 6e 64 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [39961] 6f 6e 22 3a 22 53 61 69 6e 74 20 48 65 6c 65 6e 61 2c 20 41 73 63 65 6e
## [39985] 73 69 6f 6e 20 61 6e 64 20 54 72 69 73 74 61 6e 20 64 61 20 43 75 6e 68
## [40009] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 61 69 6e 74 20 48 65 6c
## [40033] 65 6e 61 2c 20 41 73 63 65 6e 73 69 6f 6e 20 61 6e 64 20 54 72 69 73 74
## [40057] 61 6e 20 64 61 20 43 75 6e 68 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [40081] 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 61
## [40105] 69 6e 74 20 48 65 6c 65 6e 61 2c 20 41 73 63 65 6e 73 69 6f 6e 20 61 6e
## [40129] 64 20 54 72 69 73 74 61 6e 20 64 61 20 43 75 6e 68 61 22 2c 22 63 6f 6d
## [40153] 6d 6f 6e 22 3a 22 53 61 69 6e 74 20 48 65 6c 65 6e 61 2c 20 41 73 63 65
## [40177] 6e 73 69 6f 6e 20 61 6e 64 20 54 72 69 73 74 61 6e 20 64 61 20 43 75 6e
## [40201] 68 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [40225] 22 3a 22 43 61 6e 61 64 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 43
## [40249] 61 6e 61 64 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e
## [40273] 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 61 6e 61 64 61 22 2c
## [40297] 22 63 6f 6d 6d 6f 6e 22 3a 22 43 61 6e 61 64 61 22 7d 2c 22 66 72 61 22
## [40321] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 61 6e 61 64 61 22 2c 22 63
## [40345] 6f 6d 6d 6f 6e 22 3a 22 43 61 6e 61 64 61 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [40369] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 74 68 20 4b 6f 72
## [40393] 65 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 44 65 6d 6f 63 72 61 74
## [40417] 69 63 20 50 65 6f 70 6c 65 27 73 20 52 65 70 75 62 6c 69 63 20 6f 66 20
## [40441] 4b 6f 72 65 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6b 6f
## [40465] 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 ec a1 b0 ec 84 a0 eb af
## [40489] bc ec a3 bc ec a3 bc ec 9d 98 ec 9d b8 eb af bc ea b3 b5 ed 99 94 ea b5
## [40513] ad 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 ec a1 b0 ec 84 a0 22 7d 7d 7d 7d
## [40537] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 c3 85 6c 61
## [40561] 6e 64 20 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [40585] c3 85 6c 61 6e 64 20 49 73 6c 61 6e 64 73 22 2c 22 6e 61 74 69 76 65 4e
## [40609] 61 6d 65 22 3a 7b 22 73 77 65 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [40633] 22 4c 61 6e 64 73 6b 61 70 65 74 20 c3 85 6c 61 6e 64 22 2c 22 63 6f 6d
## [40657] 6d 6f 6e 22 3a 22 c3 85 6c 61 6e 64 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [40681] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 6f 72 74 68 20 4d 61 63 65 64
## [40705] 6f 6e 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c
## [40729] 69 63 20 6f 66 20 4e 6f 72 74 68 20 4d 61 63 65 64 6f 6e 69 61 22 2c 22
## [40753] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6d 6b 64 22 3a 7b 22 6f 66 66
## [40777] 69 63 69 61 6c 22 3a 22 d0 a0 d0 b5 d0 bf d1 83 d0 b1 d0 bb d0 b8 d0 ba
## [40801] d0 b0 20 d0 a1 d0 b5 d0 b2 d0 b5 d1 80 d0 bd d0 b0 20 d0 9c d0 b0 d0 ba
## [40825] d0 b5 d0 b4 d0 be d0 bd d0 b8 d1 98 d0 b0 22 2c 22 63 6f 6d 6d 6f 6e 22
## [40849] 3a 22 d0 9c d0 b0 d0 ba d0 b5 d0 b4 d0 be d0 bd d0 b8 d1 98 d0 b0 22 7d
## [40873] 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e
## [40897] 65 74 68 65 72 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [40921] 4b 69 6e 67 64 6f 6d 20 6f 66 20 74 68 65 20 4e 65 74 68 65 72 6c 61 6e
## [40945] 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6e 6c 64 22 3a
## [40969] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 6f 6e 69 6e 6b 72 69 6a 6b 20
## [40993] 64 65 72 20 4e 65 64 65 72 6c 61 6e 64 65 6e 22 2c 22 63 6f 6d 6d 6f 6e
## [41017] 22 3a 22 4e 65 64 65 72 6c 61 6e 64 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [41041] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 69 67 65 72 22 2c 22 6f 66 66
## [41065] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 69 67 65
## [41089] 72 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b
## [41113] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20
## [41137] 64 75 20 4e 69 67 65 72 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 69 67 65
## [41161] 72 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [41185] 3a 22 53 69 6e 67 61 70 6f 72 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [41209] 22 52 65 70 75 62 6c 69 63 20 6f 66 20 53 69 6e 67 61 70 6f 72 65 22 2c
## [41233] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 7a 68 6f 22 3a 7b 22 6f 66
## [41257] 66 69 63 69 61 6c 22 3a 22 e6 96 b0 e5 8a a0 e5 9d a1 e5 85 b1 e5 92 8c
## [41281] e5 9b bd 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e6 96 b0 e5 8a a0 e5 9d a1
## [41305] 22 7d 2c 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [41329] 70 75 62 6c 69 63 20 6f 66 20 53 69 6e 67 61 70 6f 72 65 22 2c 22 63 6f
## [41353] 6d 6d 6f 6e 22 3a 22 53 69 6e 67 61 70 6f 72 65 22 7d 2c 22 6d 73 61 22
## [41377] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 6b 20 53
## [41401] 69 6e 67 61 70 75 72 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 69 6e 67
## [41425] 61 70 75 72 61 22 7d 2c 22 74 61 6d 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [41449] 22 3a 22 e0 ae 9a e0 ae bf e0 ae 99 e0 af 8d e0 ae 95 e0 ae aa e0 af 8d
## [41473] e0 ae aa e0 af 82 e0 ae b0 e0 af 8d 20 e0 ae 95 e0 af 81 e0 ae 9f e0 ae
## [41497] bf e0 ae af e0 ae b0 e0 ae 9a e0 af 81 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [41521] 22 e0 ae 9a e0 ae bf e0 ae 99 e0 af 8d e0 ae 95 e0 ae aa e0 af 8d e0 ae
## [41545] aa e0 af 82 e0 ae b0 e0 af 8d 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [41569] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 68 61 64 22 2c 22 6f 66 66 69 63 69
## [41593] 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 43 68 61 64 22 2c 22
## [41617] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66
## [41641] 69 63 69 61 6c 22 3a 22 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8
## [41665] aa d8 b4 d8 a7 d8 af 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 aa d8 b4 d8
## [41689] a7 d8 af e2 80 8e 22 7d 2c 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61
## [41713] 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 75 20 54 63 68 61 64
## [41737] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 63 68 61 64 22 7d 7d 7d 7d 2c 7b
## [41761] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 75 72 61 c3 a7
## [41785] 61 6f 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 75 6e 74 72 79 20
## [41809] 6f 66 20 43 75 72 61 c3 a7 61 6f 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [41833] 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f
## [41857] 75 6e 74 72 79 20 6f 66 20 43 75 72 61 c3 a7 61 6f 22 2c 22 63 6f 6d 6d
## [41881] 6f 6e 22 3a 22 43 75 72 61 c3 a7 61 6f 22 7d 2c 22 6e 6c 64 22 3a 7b 22
## [41905] 6f 66 66 69 63 69 61 6c 22 3a 22 4c 61 6e 64 20 43 75 72 61 c3 a7 61 6f
## [41929] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 75 72 61 c3 a7 61 6f 22 7d 2c 22
## [41953] 70 61 70 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 61 69 73 20 4b
## [41977] c3 b2 72 73 6f 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 61 69 73 20 4b
## [42001] c3 b2 72 73 6f 75 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [42025] 6d 6d 6f 6e 22 3a 22 4e 69 75 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a
## [42049] 22 4e 69 75 65 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e
## [42073] 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4e 69 75 65 22 2c 22 63
## [42097] 6f 6d 6d 6f 6e 22 3a 22 4e 69 75 65 22 7d 2c 22 6e 69 75 22 3a 7b 22 6f
## [42121] 66 66 69 63 69 61 6c 22 3a 22 4e 69 75 c4 93 22 2c 22 63 6f 6d 6d 6f 6e
## [42145] 22 3a 22 4e 69 75 c4 93 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22
## [42169] 63 6f 6d 6d 6f 6e 22 3a 22 47 75 69 6e 65 61 2d 42 69 73 73 61 75 22 2c
## [42193] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [42217] 47 75 69 6e 65 61 2d 42 69 73 73 61 75 22 2c 22 6e 61 74 69 76 65 4e 61
## [42241] 6d 65 22 3a 7b 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [42265] 52 65 70 c3 ba 62 6c 69 63 61 20 64 61 20 47 75 69 6e c3 a9 2d 42 69 73
## [42289] 73 61 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 69 6e c3 a9 2d 42 69
## [42313] 73 73 61 75 22 7d 2c 22 70 6f 76 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [42337] 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 64 61 20 47 75 69 6e c3 a9 2d 42
## [42361] 69 73 73 61 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 69 6e c3 a9 2d
## [42385] 42 69 73 73 61 75 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f
## [42409] 6d 6d 6f 6e 22 3a 22 4e 61 75 72 75 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [42433] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 61 75 72 75 22 2c 22 6e 61
## [42457] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63
## [42481] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 61 75 72 75 22
## [42505] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 75 72 75 22 7d 2c 22 6e 61 75 22
## [42529] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f
## [42553] 66 20 4e 61 75 72 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 75 72 75
## [42577] 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a
## [42601] 22 5a 69 6d 62 61 62 77 65 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52
## [42625] 65 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 6e 61
## [42649] 74 69 76 65 4e 61 6d 65 22 3a 7b 22 62 77 67 22 3a 7b 22 6f 66 66 69 63
## [42673] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62
## [42697] 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d
## [42721] 2c 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [42745] 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f
## [42769] 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d 2c 22 6b 63 6b 22 3a 7b 22 6f
## [42793] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69
## [42817] 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62
## [42841] 77 65 22 7d 2c 22 6b 68 69 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [42865] 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 63
## [42889] 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d 2c 22 6e 64 63 22
## [42913] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f
## [42937] 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69
## [42961] 6d 62 61 62 77 65 22 7d 2c 22 6e 64 65 22 3a 7b 22 6f 66 66 69 63 69 61
## [42985] 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65
## [43009] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d 2c 22
## [43033] 6e 79 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c
## [43057] 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22
## [43081] 3a 22 5a 69 6d 62 61 62 77 65 22 7d 2c 22 73 6e 61 22 3a 7b 22 6f 66 66
## [43105] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62
## [43129] 61 62 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62 77 65
## [43153] 22 7d 2c 22 73 6f 74 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [43177] 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 63 6f 6d
## [43201] 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d 2c 22 74 6f 69 22 3a 7b
## [43225] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [43249] 5a 69 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62
## [43273] 61 62 77 65 22 7d 2c 22 74 73 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [43297] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c
## [43321] 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d 2c 22 74 73
## [43345] 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63
## [43369] 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22
## [43393] 5a 69 6d 62 61 62 77 65 22 7d 2c 22 76 65 6e 22 3a 7b 22 6f 66 66 69 63
## [43417] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62
## [43441] 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d
## [43465] 2c 22 78 68 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [43489] 62 6c 69 63 20 6f 66 20 5a 69 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f
## [43513] 6e 22 3a 22 5a 69 6d 62 61 62 77 65 22 7d 2c 22 7a 69 62 22 3a 7b 22 6f
## [43537] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 5a 69
## [43561] 6d 62 61 62 77 65 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 5a 69 6d 62 61 62
## [43585] 77 65 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [43609] 22 3a 22 43 68 69 6e 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 50 65
## [43633] 6f 70 6c 65 27 73 20 52 65 70 75 62 6c 69 63 20 6f 66 20 43 68 69 6e 61
## [43657] 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 7a 68 6f 22 3a 7b 22
## [43681] 6f 66 66 69 63 69 61 6c 22 3a 22 e4 b8 ad e5 8d 8e e4 ba ba e6 b0 91 e5
## [43705] 85 b1 e5 92 8c e5 9b bd 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e4 b8 ad e5
## [43729] 9b bd 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [43753] 22 3a 22 43 68 72 69 73 74 6d 61 73 20 49 73 6c 61 6e 64 22 2c 22 6f 66
## [43777] 66 69 63 69 61 6c 22 3a 22 54 65 72 72 69 74 6f 72 79 20 6f 66 20 43 68
## [43801] 72 69 73 74 6d 61 73 20 49 73 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e
## [43825] 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [43849] 22 54 65 72 72 69 74 6f 72 79 20 6f 66 20 43 68 72 69 73 74 6d 61 73 20
## [43873] 49 73 6c 61 6e 64 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 68 72 69 73 74
## [43897] 6d 61 73 20 49 73 6c 61 6e 64 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [43921] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 50 75 65 72 74 6f 20 52 69 63 6f 22 2c
## [43945] 22 6f 66 66 69 63 69 61 6c 22 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74 68
## [43969] 20 6f 66 20 50 75 65 72 74 6f 20 52 69 63 6f 22 2c 22 6e 61 74 69 76 65
## [43993] 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [44017] 3a 22 43 6f 6d 6d 6f 6e 77 65 61 6c 74 68 20 6f 66 20 50 75 65 72 74 6f
## [44041] 20 52 69 63 6f 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 50 75 65 72 74 6f 20
## [44065] 52 69 63 6f 22 7d 2c 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [44089] 3a 22 45 73 74 61 64 6f 20 4c 69 62 72 65 20 41 73 6f 63 69 61 64 6f 20
## [44113] 64 65 20 50 75 65 72 74 6f 20 52 69 63 6f 22 2c 22 63 6f 6d 6d 6f 6e 22
## [44137] 3a 22 50 75 65 72 74 6f 20 52 69 63 6f 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d
## [44161] 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 45 74 68 69 6f 70 69 61 22 2c
## [44185] 22 6f 66 66 69 63 69 61 6c 22 3a 22 46 65 64 65 72 61 6c 20 44 65 6d 6f
## [44209] 63 72 61 74 69 63 20 52 65 70 75 62 6c 69 63 20 6f 66 20 45 74 68 69 6f
## [44233] 70 69 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 6d 68 22
## [44257] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e1 8b a8 e1 8a a2 e1 89 b5 e1
## [44281] 8b ae e1 8c b5 e1 8b ab 20 e1 8d 8c e1 8b b4 e1 88 ab e1 88 8b e1 8b 8a
## [44305] 20 e1 8b b2 e1 88 9e e1 8a ad e1 88 ab e1 88 b2 e1 8b ab e1 8b 8a 20 e1
## [44329] 88 aa e1 8d 90 e1 89 a5 e1 88 8a e1 8a ad 22 2c 22 63 6f 6d 6d 6f 6e 22
## [44353] 3a 22 e1 8a a2 e1 89 b5 e1 8b ae e1 8c b5 e1 8b ab 22 7d 7d 7d 7d 2c 7b
## [44377] 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 72 65 6e 61 64
## [44401] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 47 72 65 6e 61 64 61 22 2c
## [44425] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66
## [44449] 66 69 63 69 61 6c 22 3a 22 47 72 65 6e 61 64 61 22 2c 22 63 6f 6d 6d 6f
## [44473] 6e 22 3a 22 47 72 65 6e 61 64 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22
## [44497] 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 46 69 6e 6c 61 6e 64 22 2c 22 6f 66
## [44521] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 46 69 6e
## [44545] 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 66 69 6e
## [44569] 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 75 6f 6d 65 6e 20 74 61
## [44593] 73 61 76 61 6c 74 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 75 6f 6d 69
## [44617] 22 7d 2c 22 73 77 65 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [44641] 70 75 62 6c 69 6b 65 6e 20 46 69 6e 6c 61 6e 64 22 2c 22 63 6f 6d 6d 6f
## [44665] 6e 22 3a 22 46 69 6e 6c 61 6e 64 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22
## [44689] 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 54 75 72 6b 73 20 61 6e 64 20 43 61
## [44713] 69 63 6f 73 20 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [44737] 3a 22 54 75 72 6b 73 20 61 6e 64 20 43 61 69 63 6f 73 20 49 73 6c 61 6e
## [44761] 64 73 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a
## [44785] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 54 75 72 6b 73 20 61 6e 64 20 43
## [44809] 61 69 63 6f 73 20 49 73 6c 61 6e 64 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [44833] 22 54 75 72 6b 73 20 61 6e 64 20 43 61 69 63 6f 73 20 49 73 6c 61 6e 64
## [44857] 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [44881] 3a 22 42 75 72 75 6e 64 69 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52
## [44905] 65 70 75 62 6c 69 63 20 6f 66 20 42 75 72 75 6e 64 69 22 2c 22 6e 61 74
## [44929] 69 76 65 4e 61 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69
## [44953] 61 6c 22 3a 22 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 75 20 42 75 72 75
## [44977] 6e 64 69 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 75 72 75 6e 64 69 22 7d
## [45001] 2c 22 72 75 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [45025] 62 6c 69 6b 61 20 79 27 55 62 75 72 75 6e 64 69 20 22 2c 22 63 6f 6d 6d
## [45049] 6f 6e 22 3a 22 55 62 75 72 75 6e 64 69 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d
## [45073] 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 61 6d 22 2c 22 6f 66 66
## [45097] 69 63 69 61 6c 22 3a 22 47 75 61 6d 22 2c 22 6e 61 74 69 76 65 4e 61 6d
## [45121] 65 22 3a 7b 22 63 68 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 47
## [45145] 75 c3 a5 68 c3 a5 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 c3 a5 68
## [45169] c3 a5 6e 22 7d 2c 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [45193] 22 47 75 61 6d 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 61 6d 22 7d 2c
## [45217] 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 47 75 61 6d 22
## [45241] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 47 75 61 6d 22 7d 7d 7d 7d 2c 7b 22 6e
## [45265] 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4a 6f 72 64 61 6e 22 2c
## [45289] 22 6f 66 66 69 63 69 61 6c 22 3a 22 48 61 73 68 65 6d 69 74 65 20 4b 69
## [45313] 6e 67 64 6f 6d 20 6f 66 20 4a 6f 72 64 61 6e 22 2c 22 6e 61 74 69 76 65
## [45337] 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22
## [45361] 3a 22 d8 a7 d9 84 d9 85 d9 85 d9 84 d9 83 d8 a9 20 d8 a7 d9 84 d8 a3 d8
## [45385] b1 d8 af d9 86 d9 8a d8 a9 20 d8 a7 d9 84 d9 87 d8 a7 d8 b4 d9 85 d9 8a
## [45409] d8 a9 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 a7 d9 84 d8 a3 d8 b1 d8 af
## [45433] d9 86 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [45457] 22 3a 22 4d 61 6c 69 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [45481] 75 62 6c 69 63 20 6f 66 20 4d 61 6c 69 22 2c 22 6e 61 74 69 76 65 4e 61
## [45505] 6d 65 22 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [45529] 52 c3 a9 70 75 62 6c 69 71 75 65 20 64 75 20 4d 61 6c 69 22 2c 22 63 6f
## [45553] 6d 6d 6f 6e 22 3a 22 4d 61 6c 69 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22
## [45577] 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 55 6b 72 61 69 6e 65 22 2c 22 6f 66
## [45601] 66 69 63 69 61 6c 22 3a 22 55 6b 72 61 69 6e 65 22 2c 22 6e 61 74 69 76
## [45625] 65 4e 61 6d 65 22 3a 7b 22 75 6b 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c
## [45649] 22 3a 22 d0 a3 d0 ba d1 80 d0 b0 d1 97 d0 bd d0 b0 22 2c 22 63 6f 6d 6d
## [45673] 6f 6e 22 3a 22 d0 a3 d0 ba d1 80 d0 b0 d1 97 d0 bd d0 b0 22 7d 7d 7d 7d
## [45697] 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 52 c3 a9 75
## [45721] 6e 69 6f 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9 75 6e 69
## [45745] 6f 6e 20 49 73 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [45769] 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 49 6c 65 20
## [45793] 64 65 20 6c 61 20 52 c3 a9 75 6e 69 6f 6e 22 2c 22 63 6f 6d 6d 6f 6e 22
## [45817] 3a 22 4c 61 20 52 c3 a9 75 6e 69 6f 6e 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d
## [45841] 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 76 61 6c 62 61 72 64 20 61
## [45865] 6e 64 20 4a 61 6e 20 4d 61 79 65 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [45889] 3a 22 53 76 61 6c 62 61 72 64 20 6f 67 20 4a 61 6e 20 4d 61 79 65 6e 22
## [45913] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 6e 6f 72 22 3a 7b 22 6f
## [45937] 66 66 69 63 69 61 6c 22 3a 22 53 76 61 6c 62 61 72 64 20 6f 67 20 4a 61
## [45961] 6e 20 4d 61 79 65 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 76 61 6c 62
## [45985] 61 72 64 20 6f 67 20 4a 61 6e 20 4d 61 79 65 6e 22 7d 7d 7d 7d 2c 7b 22
## [46009] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 43 6f 63 6f 73 20 28
## [46033] 4b 65 65 6c 69 6e 67 29 20 49 73 6c 61 6e 64 73 22 2c 22 6f 66 66 69 63
## [46057] 69 61 6c 22 3a 22 54 65 72 72 69 74 6f 72 79 20 6f 66 20 74 68 65 20 43
## [46081] 6f 63 6f 73 20 28 4b 65 65 6c 69 6e 67 29 20 49 73 6c 61 6e 64 73 22 2c
## [46105] 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66
## [46129] 66 69 63 69 61 6c 22 3a 22 54 65 72 72 69 74 6f 72 79 20 6f 66 20 74 68
## [46153] 65 20 43 6f 63 6f 73 20 28 4b 65 65 6c 69 6e 67 29 20 49 73 6c 61 6e 64
## [46177] 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 43 6f 63 6f 73 20 28 4b 65 65 6c
## [46201] 69 6e 67 29 20 49 73 6c 61 6e 64 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [46225] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 54 61 6e 7a 61 6e 69 61 22 2c 22
## [46249] 6f 66 66 69 63 69 61 6c 22 3a 22 55 6e 69 74 65 64 20 52 65 70 75 62 6c
## [46273] 69 63 20 6f 66 20 54 61 6e 7a 61 6e 69 61 22 2c 22 6e 61 74 69 76 65 4e
## [46297] 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [46321] 22 55 6e 69 74 65 64 20 52 65 70 75 62 6c 69 63 20 6f 66 20 54 61 6e 7a
## [46345] 61 6e 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 61 6e 7a 61 6e 69 61
## [46369] 22 7d 2c 22 73 77 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4a 61
## [46393] 6d 68 75 72 69 20 79 61 20 4d 75 75 6e 67 61 6e 6f 20 77 61 20 54 61 6e
## [46417] 7a 61 6e 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 54 61 6e 7a 61 6e 69
## [46441] 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22
## [46465] 3a 22 51 61 74 61 72 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 53 74 61
## [46489] 74 65 20 6f 66 20 51 61 74 61 72 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [46513] 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 af
## [46537] d9 88 d9 84 d8 a9 20 d9 82 d8 b7 d8 b1 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [46561] 22 d9 82 d8 b7 d8 b1 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63
## [46585] 6f 6d 6d 6f 6e 22 3a 22 42 72 61 7a 69 6c 22 2c 22 6f 66 66 69 63 69 61
## [46609] 6c 22 3a 22 46 65 64 65 72 61 74 69 76 65 20 52 65 70 75 62 6c 69 63 20
## [46633] 6f 66 20 42 72 61 7a 69 6c 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a
## [46657] 7b 22 70 6f 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3
## [46681] ba 62 6c 69 63 61 20 46 65 64 65 72 61 74 69 76 61 20 64 6f 20 42 72 61
## [46705] 73 69 6c 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 72 61 73 69 6c 22 7d 7d
## [46729] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 53 75
## [46753] 64 61 6e 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [46777] 63 20 6f 66 20 74 68 65 20 53 75 64 61 6e 22 2c 22 6e 61 74 69 76 65 4e
## [46801] 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [46825] 22 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a d8 a9 20 d8 a7 d9 84 d8 b3 d9 88
## [46849] d8 af d8 a7 d9 86 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d8 a7 d9 84 d8 b3
## [46873] d9 88 d8 af d8 a7 d9 86 22 7d 2c 22 65 6e 67 22 3a 7b 22 6f 66 66 69 63
## [46897] 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 74 68 65 20 53 75
## [46921] 64 61 6e 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 75 64 61 6e 22 7d 7d 7d
## [46945] 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 52 6f 6d
## [46969] 61 6e 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 6f 6d 61 6e 69
## [46993] 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 72 6f 6e 22 3a 7b
## [47017] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 6f 6d c3 a2 6e 69 61 22 2c 22 63
## [47041] 6f 6d 6d 6f 6e 22 3a 22 52 6f 6d c3 a2 6e 69 61 22 7d 7d 7d 7d 2c 7b 22
## [47065] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 41 6e 67 75 69 6c 6c
## [47089] 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 41 6e 67 75 69 6c 6c 61 22
## [47113] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f
## [47137] 66 66 69 63 69 61 6c 22 3a 22 41 6e 67 75 69 6c 6c 61 22 2c 22 63 6f 6d
## [47161] 6d 6f 6e 22 3a 22 41 6e 67 75 69 6c 6c 61 22 7d 7d 7d 7d 2c 7b 22 6e 61
## [47185] 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 49 72 61 71 22 2c 22 6f 66
## [47209] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 49 72 61
## [47233] 71 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 72 61 22 3a 7b
## [47257] 22 6f 66 66 69 63 69 61 6c 22 3a 22 d8 ac d9 85 d9 87 d9 88 d8 b1 d9 8a
## [47281] d8 a9 20 d8 a7 d9 84 d8 b9 d8 b1 d8 a7 d9 82 22 2c 22 63 6f 6d 6d 6f 6e
## [47305] 22 3a 22 d8 a7 d9 84 d8 b9 d8 b1 d8 a7 d9 82 22 7d 2c 22 61 72 63 22 3a
## [47329] 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 dc a9 dc 98 dc bc dc 9b dc a2 dc
## [47353] b5 dc 90 20 dc 90 dc 9d dc bc dc aa dc b2 dc a9 22 2c 22 63 6f 6d 6d 6f
## [47377] 6e 22 3a 22 dc a9 dc 98 dc bc dc 9b dc a2 dc b5 dc 90 22 7d 2c 22 63 6b
## [47401] 62 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 da a9 db 86 d9 85 d8 a7
## [47425] d8 b1 db 8c 20 d8 b9 db 8e d8 b1 d8 a7 d9 82 22 2c 22 63 6f 6d 6d 6f 6e
## [47449] 22 3a 22 da a9 db 86 d9 85 d8 a7 d8 b1 db 8c 22 7d 7d 7d 7d 2c 7b 22 6e
## [47473] 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 68 75 74 61 6e 22 2c
## [47497] 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 69 6e 67 64 6f 6d 20 6f 66 20 42
## [47521] 68 75 74 61 6e 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 64 7a
## [47545] 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 e0 bd a0 e0 bd 96 e0 be
## [47569] b2 e0 bd b4 e0 bd 82 e0 bc 8b e0 bd a2 e0 be 92 e0 be b1 e0 bd a3 e0 bc
## [47593] 8b e0 bd 81 e0 bd 96 e0 bc 8b 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 e0 bd
## [47617] a0 e0 bd 96 e0 be b2 e0 bd b4 e0 bd 82 e0 bc 8b e0 bd a1 e0 bd b4 e0 bd
## [47641] a3 e0 bc 8b 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [47665] 6f 6e 22 3a 22 48 6f 6e 64 75 72 61 73 22 2c 22 6f 66 66 69 63 69 61 6c
## [47689] 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 48 6f 6e 64 75 72 61 73 22
## [47713] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 73 70 61 22 3a 7b 22 6f
## [47737] 66 66 69 63 69 61 6c 22 3a 22 52 65 70 c3 ba 62 6c 69 63 61 20 64 65 20
## [47761] 48 6f 6e 64 75 72 61 73 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 48 6f 6e 64
## [47785] 75 72 61 73 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d
## [47809] 6f 6e 22 3a 22 4e 61 6d 69 62 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [47833] 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 61 6d 69 62 69 61 22 2c 22
## [47857] 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 61 66 72 22 3a 7b 22 6f 66 66
## [47881] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 65 6b 20 76 61 6e 20 4e 61
## [47905] 6d 69 62 69 c3 ab 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 6d 69 62 69
## [47929] c3 ab 22 7d 2c 22 64 65 75 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22
## [47953] 52 65 70 75 62 6c 69 6b 20 4e 61 6d 69 62 69 61 22 2c 22 63 6f 6d 6d 6f
## [47977] 6e 22 3a 22 4e 61 6d 69 62 69 61 22 7d 2c 22 65 6e 67 22 3a 7b 22 6f 66
## [48001] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 61 6d
## [48025] 69 62 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 6d 69 62 69 61 22
## [48049] 7d 2c 22 68 65 72 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [48073] 75 62 6c 69 63 20 6f 66 20 4e 61 6d 69 62 69 61 22 2c 22 63 6f 6d 6d 6f
## [48097] 6e 22 3a 22 4e 61 6d 69 62 69 61 22 7d 2c 22 68 67 6d 22 3a 7b 22 6f 66
## [48121] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 61 6d
## [48145] 69 62 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 6d 69 62 69 61 22
## [48169] 7d 2c 22 6b 77 6e 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [48193] 75 62 6c 69 63 20 6f 66 20 4e 61 6d 69 62 69 61 22 2c 22 63 6f 6d 6d 6f
## [48217] 6e 22 3a 22 4e 61 6d 69 62 69 61 22 7d 2c 22 6c 6f 7a 22 3a 7b 22 6f 66
## [48241] 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4e 61 6d
## [48265] 69 62 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 6d 69 62 69 61 22
## [48289] 7d 2c 22 6e 64 6f 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70
## [48313] 75 62 6c 69 63 20 6f 66 20 4e 61 6d 69 62 69 61 22 2c 22 63 6f 6d 6d 6f
## [48337] 6e 22 3a 22 4e 61 6d 69 62 69 61 22 7d 2c 22 74 73 6e 22 3a 7b 22 6f 66
## [48361] 66 69 63 69 61 6c 22 3a 22 4c 65 66 61 74 73 68 65 20 6c 61 20 4e 61 6d
## [48385] 69 62 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4e 61 6d 69 62 69 61 22
## [48409] 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22
## [48433] 53 6c 6f 76 65 6e 69 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65
## [48457] 70 75 62 6c 69 63 20 6f 66 20 53 6c 6f 76 65 6e 69 61 22 2c 22 6e 61 74
## [48481] 69 76 65 4e 61 6d 65 22 3a 7b 22 73 6c 76 22 3a 7b 22 6f 66 66 69 63 69
## [48505] 61 6c 22 3a 22 52 65 70 75 62 6c 69 6b 61 20 53 6c 6f 76 65 6e 69 6a 61
## [48529] 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 53 6c 6f 76 65 6e 69 6a 61 22 7d 7d
## [48553] 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 48 61
## [48577] 69 74 69 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69
## [48601] 63 20 6f 66 20 48 61 69 74 69 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22
## [48625] 3a 7b 22 66 72 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 c3 a9
## [48649] 70 75 62 6c 69 71 75 65 20 64 27 48 61 c3 af 74 69 22 2c 22 63 6f 6d 6d
## [48673] 6f 6e 22 3a 22 48 61 c3 af 74 69 22 7d 2c 22 68 61 74 22 3a 7b 22 6f 66
## [48697] 66 69 63 69 61 6c 22 3a 22 52 65 70 69 62 6c 69 6b 20 41 79 69 74 69 22
## [48721] 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 41 79 69 74 69 22 7d 7d 7d 7d 2c 7b 22
## [48745] 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 73 6e 69 61 20
## [48769] 61 6e 64 20 48 65 72 7a 65 67 6f 76 69 6e 61 22 2c 22 6f 66 66 69 63 69
## [48793] 61 6c 22 3a 22 42 6f 73 6e 69 61 20 61 6e 64 20 48 65 72 7a 65 67 6f 76
## [48817] 69 6e 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 62 6f 73 22
## [48841] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 6f 73 6e 61 20 69 20 48 65
## [48865] 72 63 65 67 6f 76 69 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 73
## [48889] 6e 61 20 69 20 48 65 72 63 65 67 6f 76 69 6e 61 22 7d 2c 22 68 72 76 22
## [48913] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 6f 73 6e 61 20 69 20 48 65
## [48937] 72 63 65 67 6f 76 69 6e 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 73
## [48961] 6e 61 20 69 20 48 65 72 63 65 67 6f 76 69 6e 61 22 7d 2c 22 73 72 70 22
## [48985] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 d0 91 d0 be d1 81 d0 bd d0 b0
## [49009] 20 d0 b8 20 d0 a5 d0 b5 d1 80 d1 86 d0 b5 d0 b3 d0 be d0 b2 d0 b8 d0 bd
## [49033] d0 b0 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 d0 91 d0 be d1 81 d0 bd d0 b0
## [49057] 20 d0 b8 20 d0 a5 d0 b5 d1 80 d1 86 d0 b5 d0 b3 d0 be d0 b2 d0 b8 d0 bd
## [49081] d0 b0 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e
## [49105] 22 3a 22 47 72 65 65 6e 6c 61 6e 64 22 2c 22 6f 66 66 69 63 69 61 6c 22
## [49129] 3a 22 47 72 65 65 6e 6c 61 6e 64 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65
## [49153] 22 3a 7b 22 6b 61 6c 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 4b 61
## [49177] 6c 61 61 6c 6c 69 74 20 4e 75 6e 61 61 74 22 2c 22 63 6f 6d 6d 6f 6e 22
## [49201] 3a 22 4b 61 6c 61 61 6c 6c 69 74 20 4e 75 6e 61 61 74 22 7d 7d 7d 7d 2c
## [49225] 7b 22 6e 61 6d 65 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4a 61 6d 61 69
## [49249] 63 61 22 2c 22 6f 66 66 69 63 69 61 6c 22 3a 22 4a 61 6d 61 69 63 61 22
## [49273] 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b 22 6f
## [49297] 66 66 69 63 69 61 6c 22 3a 22 4a 61 6d 61 69 63 61 22 2c 22 63 6f 6d 6d
## [49321] 6f 6e 22 3a 22 4a 61 6d 61 69 63 61 22 7d 2c 22 6a 61 6d 22 3a 7b 22 6f
## [49345] 66 66 69 63 69 61 6c 22 3a 22 4a 61 6d 61 69 63 61 22 2c 22 63 6f 6d 6d
## [49369] 6f 6e 22 3a 22 4a 61 6d 61 69 63 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65
## [49393] 22 3a 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 6c 74 61 22 2c 22 6f 66 66
## [49417] 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20 4d 61 6c 74
## [49441] 61 22 2c 22 6e 61 74 69 76 65 4e 61 6d 65 22 3a 7b 22 65 6e 67 22 3a 7b
## [49465] 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75 62 6c 69 63 20 6f 66 20
## [49489] 4d 61 6c 74 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 4d 61 6c 74 61 22 7d
## [49513] 2c 22 6d 6c 74 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 52 65 70 75
## [49537] 62 62 6c 69 6b 61 20 74 61 20 27 20 4d 61 6c 74 61 22 2c 22 63 6f 6d 6d
## [49561] 6f 6e 22 3a 22 4d 61 6c 74 61 22 7d 7d 7d 7d 2c 7b 22 6e 61 6d 65 22 3a
## [49585] 7b 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 6c 69 76 69 61 22 2c 22 6f 66 66
## [49609] 69 63 69 61 6c 22 3a 22 50 6c 75 72 69 6e 61 74 69 6f 6e 61 6c 20 53 74
## [49633] 61 74 65 20 6f 66 20 42 6f 6c 69 76 69 61 22 2c 22 6e 61 74 69 76 65 4e
## [49657] 61 6d 65 22 3a 7b 22 61 79 6d 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [49681] 22 57 75 6c 69 77 79 61 20 53 75 79 75 22 2c 22 63 6f 6d 6d 6f 6e 22 3a
## [49705] 22 57 75 6c 69 77 79 61 22 7d 2c 22 67 72 6e 22 3a 7b 22 6f 66 66 69 63
## [49729] 69 61 6c 22 3a 22 54 65 74 c3 a3 20 56 6f 6c c3 ad 76 69 61 22 2c 22 63
## [49753] 6f 6d 6d 6f 6e 22 3a 22 56 6f 6c c3 ad 76 69 61 22 7d 2c 22 71 75 65 22
## [49777] 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a 22 42 75 6c 69 77 79 61 20 4d 61
## [49801] 6d 61 6c 6c 61 71 74 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 75 6c 69
## [49825] 77 79 61 22 7d 2c 22 73 70 61 22 3a 7b 22 6f 66 66 69 63 69 61 6c 22 3a
## [49849] 22 45 73 74 61 64 6f 20 50 6c 75 72 69 6e 61 63 69 6f 6e 61 6c 20 64 65
## [49873] 20 42 6f 6c 69 76 69 61 22 2c 22 63 6f 6d 6d 6f 6e 22 3a 22 42 6f 6c 69
## [49897] 76 69 61 22 7d 7d 7d 7d 5d
Above we see that the content that is received from the API is delivered as a
compressed binary string, which must be uncompressed and converted back to
character encoding before processing. We co this using a built-in httr
function:
## No encoding supplied: defaulting to UTF-8.
Once we have the content extracted and converted, we can begin to process it. We previously examined the response and determined that it is in JSON format, so our step will be to load the content into a JSON object for ease of traversal:
If you examine the class and structure of the bdy_json
object, you will see that
jsonlite
has converted the json structure into a nice, R dataframe where you
can begin the process of exploration and cleaning in preparation for research.
9.5 Web Scraping
9.5.1 What’s in a Web Page?
Modern web pages usually consist of many files:
- Hypertext markup language (HTML) for structure and formatting
- Cascading style sheets (CSS) for more formatting
- JavaScript (JS) for interactivity
- Images
HTML is the only component that always has to be there. Since HTML is what gives a web page structure, it’s what we’ll focus on when scraping.
HTML is closely related to eXtensible markup language (XML). Both languages use tags to mark structural elements of data. In HTML, the elements literally correspond to the elements of a web page: paragraphs, links, tables, and so on.
Most tags come in pairs. The opening tag marks the beginning of an element
and the closing tag marks the end. Opening tags are written <NAME>
, where
NAME
is the name of the tag. Closing tags are written </NAME>
.
A singleton tag is a tag that stands alone, rather than being part of a pair.
Singleton tags are written <NAME />
. In HTML (but not XML) they can also be
written <NAME>
. Fortunately, HTML only has a few singleton tags, so they can
be distinguished by name regardless of which way they’re written.
For example, here’s some HTML that uses the em
(emphasis, usually italic) and
strong
(usually bold) tags, as well as the singleton br
(line break) tag:
A pair of tags can contain other elements (paired or singleton tags), but not a lone opening or closing tag. This creates a strict, treelike hierarchy.
Opening and singleton tags can have attributes that contain additional
information. Attributes are name-value pairs written NAME="VALUE"
after the
tag name.
For instance, the HTML a
(anchor) tag creates a link to the URL provided for
the href
attribute:
In this case the tag also has a value set for the id
attribute.
Now let’s look at an example of HTML for a complete, albeit simple, web page:
<html>
<head>
<title>This is the page title!</title>
</head>
<body>
<h1>This is a header!</h1>
<p>This is a paragraph.
<a href="http://www.r-project.org/">Here's a website!</a>
</p>
<p id="hello">This is another paragraph.</p>
</body>
</html>
In most web browsers, you can examine the HTML for a web page by right-clicking and choosing “View Page Source”.
See here for a more detailed explanation of HTML, and here for a list of valid HTML elements.
9.5.2 R’s XML Parsers
A parser converts structured data into familiar data structures. R has two popular packages for parsing XML (and HTML):
- The “XML” package
- The “xml2” package
The XML package has more features. The xml2 package is more user-friendly, and as part of the Tidyverse, it’s relatively well-documented. This lesson focuses on xml2, since most of the additional features in the XML package are related to writing (rather than parsing) XML documents.
The xml2 package is often used in conjunction with the “rvest” package, which provides support for CSS selectors (described later in this lesson) and automates scraping HTML tables.
The first time you use these packages, you’ll have to install them:
Let’s start by parsing the example of a complete web page from earlier. The
xml2 function read_xml
reads an XML document, and the rvest function
read_html
reads an HTML document. Both accept an XML/HTML string or a file
path (including URLs):
html = r"(
<html>
<head>
<title>This is the page title!</title>
</head>
<body>
<h1>This is a header!</h1>
<p>This is a paragraph.
<a href="http://www.r-project.org/">Here's a website!</a>
</p>
<p id="hello">This is another paragraph.</p>
</body>
</html> )"
library(xml2)
library(rvest)
doc = read_html(html)
doc
## {html_document}
## <html>
## [1] <head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8 ...
## [2] <body>\n <h1>This is a header!</h1>\n <p>This is a paragraph.\n ...
The xml_children
function returns all of the immediate children of a given
element.
The top element of our document is the html
tag, and its immediate children
are the head
and body
tags:
The result from xml_children
is a node set (xml_nodeset
object). Think of
a node set as a vector where the elements are tags rather than numbers or
strings. Just like a vector, you can access individual elements with the
indexing (square bracket [
) operator:
## [1] 2
## {xml_nodeset (1)}
## [1] <head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8 ...
The xml_text
function returns the text contained in a tag. Let’s get the text
in the title
tag, which is beneath the head
tag. First we isolate the tag,
then use xml_text
:
## [1] "" "This is the page title!"
Navigating through the tags by hand is tedious and easy to get wrong, but fortunately there’s a better way to find the tags we want.
9.5.3 XPath
An XML document is a tree, similar to the file system on your computer:
html
├── head
│ └── title
└── body
├── h1
├── p
└── p
└── a
When we wanted to find files, we wrote file paths. We can do something similar to find XML elements.
XPath is a language for writing paths to elements in an XML document. XPath is not R-specific. At a glance, an XPath looks similar to a file path:
XPath | Description |
---|---|
/ |
root, or element separator |
. |
current tag |
.. |
parent tag |
* |
any tag (wildcard) |
The xml2 function xml_find_all
finds all elements at given XPath:
## {xml_nodeset (2)}
## [1] <p>This is a paragraph.\n <a href="http://www.r-project.org/">Here's ...
## [2] <p id="hello">This is another paragraph.</p>
Unlike a file path, an XPath can identify multiple elements. If you only want a specific element, use indexing to get it from the result.
XPath also has some features that are different from file paths. The //
separator means “at any level beneath.” It’s a useful shortcut when you want to
find a specific element but don’t care where it is.
Let’s get all of the p
elements at any level of the document:
## {xml_nodeset (2)}
## [1] <p>This is a paragraph.\n <a href="http://www.r-project.org/">Here's ...
## [2] <p id="hello">This is another paragraph.</p>
Let’s also get all a
elements at any level beneath a p
element:
## {xml_nodeset (1)}
## [1] <a href="http://www.r-project.org/">Here's a website!</a>
The vertical bar |
means “or.” You can use it to get two different sets of
elements in one query.
Let’s get all h1
or p
tags:
## {xml_nodeset (3)}
## [1] <h1>This is a header!</h1>
## [2] <p>This is a paragraph.\n <a href="http://www.r-project.org/">Here's ...
## [3] <p id="hello">This is another paragraph.</p>
9.5.3.1 Predicates
In XPath, the predicate operator []
gets elements at a position or matching a
condition. Most conditions are about the attributes of the element. In the
predicate operator, attributes are always prefixed with @
.
For example, suppose we want to find all tags where the id
attribute is equal
to "hello"
:
## {xml_nodeset (1)}
## [1] <p id="hello">This is another paragraph.</p>
Notice that the equality operator in XPath is =
, not ==
. Strings in XPath
can be quoted with single or double quotes.
You can combine multiple conditions in the predicate operator with and
and
or
. There are also several XPath functions you can use in the predicate
operator. These functions are not R functions, but rather built into XPath.
Here are a few:
XPath | Description |
---|---|
not() |
negation |
contains() |
check string x contains y |
text() |
get tag text |
substring() |
get a substring |
For instance, suppose we want to get elements that contain the word “paragraph”:
## {xml_nodeset (2)}
## [1] <p>This is a paragraph.\n <a href="http://www.r-project.org/">Here's ...
## [2] <p id="hello">This is another paragraph.</p>
Finally, note that you can also use the predicate operator to get elements at a
specific position. For example, to get the second p
element anywhere in the
document:
## {xml_nodeset (1)}
## [1] <p id="hello">This is another paragraph.</p>
Notice that this is the same as if we had used R to get the second element:
## {xml_nodeset (1)}
## [1] <p id="hello">This is another paragraph.</p>
Beware that although the XPath predicate operator resembles R’s indexing operator, the syntax is not always the same.
We’ll learn more XPath in the examples. There’s a complete list of XPath functions on Wikipedia.
9.5.4 The Web Scraping Workflow
Scraping a web page is part technology, part art. The goal is to find an XPath that’s concise but specific enough to identify only the elements you want. If you plan to scrape the web page again later or want to scrape a lot of similar web pages, the XPath also needs to be general enough that it still works even if there are small variations.
Firefox and Chrome include “web developer tools” that are invaluable
for planning a web scraping strategy. Press Ctrl + Shift + i
(Cmd + Shift + i
on OS X) in Firefox or Chrome to open the web developer tools.
We can also use the web developer tools to interactively identify the element
that corresponds to a specific part of a web page. Press Ctrl + Shift + c
and
then click on the part of the web page you want to identify.
The best way to approach web scraping (and programming in general) is as an incremental, iterative process. Use the web developer tools to come up with a basic strategy, try it out in R, check which parts don’t work, and then repeat to adjust the strategy. Expect to go back and forth between your web browser and R several times when you’re scraping.
Most scrapers follow the same four steps, regardless of the web page and the language of the scraper:
- Download pages with an HTTP request (usually
GET
) - Parse pages to extract text
- Clean up extracted text with string methods or regex
- Save cleaned results
In R, xml2’s read_xml
function takes care of step 1 for you, although you can
also use httr functions to make the request yourself.
9.5.4.1 Being Polite
Making an HTTP request is not free! It has a real cost in CPU time and also cash. Server administrators will not appreciate it if you make too many requests or make requests too quickly. So:
- If you’re making multiple requests, slow them down by using R’s
Sys.sleep
function to make R do nothing for a moment. Aim for no more than 20-30 requests per second, unless you’re using an API that says more are okay. - Avoid requesting the same page twice. One way to do this is by caching (saving) the results of the requests you make. You can do this manually, or use a package that does it automatically, like the httpcache package.
Failing to be polite can get you banned from websites! Also check the website’s terms of service to make sure scraping is not explicitly forbidden.
9.5.4.2 Case Study: CA Cities
Wikipedia has many pages that are just tables of data. For example, there’s this list of cities and towns in California. Let’s scrape the table to get a data frame.
Step 1 is to download the page:
wiki_url =
"https://en.wikipedia.org/wiki/List_of_cities_and_towns_in_California"
wiki_doc = read_html(wiki_url)
Step 2 is to extract the table element from the page. We can use Firefox or
Chrome’s web developer tools to identify the table. HTML tables usually use the
table
tag. Let’s see if it’s the only table in the page:
## {xml_nodeset (4)}
## [1] <table class="wikitable"><tbody>\n<tr>\n<th scope="row" style="background ...
## [2] <table class="wikitable plainrowheaders sortable"><tbody>\n<tr>\n<th scop ...
## [3] <table class="nowraplinks hlist mw-collapsible autocollapse navbox-inner" ...
## [4] <table class="nowraplinks mw-collapsible autocollapse navbox-inner" style ...
The page has 4 tables. We can either make our XPath more specific, or use indexing to get the table we want. Refining the XPath makes our scraper more robust, but indexing is easier.
For the sake of learning, let’s refine the XPath. Going back to the browser, we
can see that the table includes "wikitable"
and "sortable"
in its class
attribute. So let’s search for these among the table elements:
## {xml_nodeset (1)}
## [1] <table class="wikitable plainrowheaders sortable"><tbody>\n<tr>\n<th scop ...
Now we get just one table! Here we used a second XPath applied only to the
results from the first, but we also could’ve done this all with one XPath:
//table[contains(@class, 'sortable')]
.
The next part of extracting the data is to extract the value from each
individual cell in the table. HTML tables have a strict layout order, with tags
to indicate rows and cells. We could extract each cell by hand and then
reassemble them into a data frame, but the rvest function html_table
can do
it for us automatically:
## # A tibble: 6 × 7
## Name Type County Population (2010)[1]…¹ `Land area[1]` `Land area[1]`
## <chr> <chr> <chr> <chr> <chr> <chr>
## 1 Name Type County Population (2010)[1][… sq mi km2
## 2 Adelanto City San B… 31,765 56.01 145.1
## 3 Agoura Hills City Los A… 20,330 7.79 20.2
## 4 Alameda City Alame… 73,812 10.61 27.5
## 5 Albany City Alame… 18,539 1.79 4.6
## 6 Alhambra City Los A… 83,089 7.63 19.8
## # ℹ abbreviated name: ¹`Population (2010)[1][8][9]`
## # ℹ 1 more variable: `Incorporated[7]` <chr>
The fill = TRUE
argument ensures that empty cells are filled with NA
. We’ve
successfully imported the data from the web page into R, so we’re done with
step 2.
Step 3 is to clean up the data frame. The column names contain symbols, the first row is part of the header, and the column types are not correct.
# Fix column names.
names(cities) = c("city", "type", "county", "population", "mi2", "km2", "date")
# Remove fake first row.
cities = cities[-1, ]
# Reset row names.
rownames(cities) = NULL
How can we clean up the date
column? The as.Date
function converts a string
into a date R understands. The idea is to match the date string to a format
string where the components of the date are indicated by codes that start with
%
. For example, %m
stands for the month as a two-digit number. You can read
about the different date format codes in ?strptime
.
Here’s the code to convert the dates in the data frame:
We can also convert the population to a number:
## [1] "character"
# Remove commas and footnotes (e.g., [1]) before conversion
library(stringr)
pop = str_replace_all(cities$population, ",", "")
pop = str_replace_all(pop, "\\[[0-9]+\\]", "")
pop = as.numeric(pop)
# Check for missing values, which can mean conversion failed
any(is.na(pop))
## [1] FALSE
9.5.4.3 Case Study: The CA Aggie
Suppose we want to scrape The California Aggie.
In particular, we want to get all the links to news articles on the features page https://theaggie.org/category/features/. This could be one part of a larger scraping project where we go on to scrape individual articles.
First for Step 1, let’s download the features page so we can extract the links:
We know that links are in a
tags, but we only want links to articles. Looking
at the features page with the web developer tools, the links to feature
articles are all inside of a div
tag with class td_block_inner
. So for Step 2,
let’s get that tag:
## {xml_nodeset (0)}
That returns a lot of results, so let’s try using the id
attribute, which is
"tdi_113"
, instead. Usually the id of an element is unique, so this ensures
that we get the right section.
We can also add in a part about getting links now:
div = xml_find_all(doc, "//div[@id = 'tdi_113']")
# OR html_nodes(doc, "div#tdi_113")
links = xml_find_all(div, ".//a")
# OR html_nodes(div, "a")
length(links)
## [1] 0
That gives us 0 links, but there are only 15 articles on the page, so something’s still not right. Inspecting the page again, there are actually three links to each article: on the image, on the title, and on “Continue Reading”.
Let’s focus on the title link. All of the title links are inside of an h3
tag. Generally it’s more robust to rely on tags (structure) than to rely on
attributes (other than id
and class
). So let’s use the h3
tag here:
## [1] 0
Now we’ve got the 15 links, so let’s get the URLs from the href
attribute.
The other article listings (Sports, Science, etc) on The Aggie have a similar structure, so we can potentially reuse our code to scrape those.
So let’s turn our code into a function. The input will be a downloaded page, and the output will be the article links.
parse_article_links = function(page) {
div = xml_find_all(page, "//div[@id = 'tdi_113']")
links = xml_find_all(div, ".//h3/a")
xml_attr(links, "href")
}
We can test this out on the Sports page. First we download the page:
Then we call the function on the document:
## character(0)
It looks like the function works even on other pages! We can also set up the function to extract the link to the next page, in case we want to scrape multiple pages of links.
The link to the next page of features (an arrow at the bottom) is an a
tag
with attribute aria-label
in a div
with class page-nav
. Let’s see if
that’s specific enough to isolate the tag:
nav = xml_find_all(doc, "//div[contains(@class, 'page-nav')]")
# OR html_nodes(doc, "div.page-nav")
next_page = xml_find_all(nav, ".//a[contains(@aria-label, 'next-page')]")
# OR html_nodes(nav, "a[aria-label *= 'next-page']")
It looks like it is. We use contains
here rather than =
because it is
common for the class
attribute to have many parts. Using contains
makes our
code robust against changes in the future.
We can now modify our parser function to return the link to the next page:
parse_article_links = function(page) {
# Get article URLs
div = xml_find_all(page, "//div[@id = 'tdi_113']")
links = xml_find_all(div, ".//h3/a")
urls = xml_attr(links, "href")
# Get next page URL
nav = xml_find_all(page, "//div[contains(@class, 'page-nav')]")
next_page = xml_find_all(nav, ".//a[contains(@aria-label, 'next-page')]")
next_url = xml_attr(next_page, "href")
# Using a list allows us to return two objects
list(urls = urls, next_url = next_url)
}
Since our function gets URL for the next page, what happens on the last page?
Looking at the last page in the browser, there is no link to the next page. Let’s see what our scraper function does:
## $urls
## [1] "https://theaggie.org/2008/03/12/five-years-in-iraq-part-two/"
## [2] "https://theaggie.org/2008/03/12/corrections/"
## [3] "https://theaggie.org/2008/03/12/daily-calendar/"
## [4] "https://theaggie.org/2008/03/11/daily-calendar/"
## [5] "https://theaggie.org/2008/03/11/deals-around-davis/"
## [6] "https://theaggie.org/2008/03/11/five-years-in-iraq-part-one/"
##
## $next_url
## character(0)
We get an empty character vector as the URL for the next page. This is because
the xml_find_all
function returns an empty node set for the next page URL, so
there aren’t any href
fields for xml_attr
to extract. It’s convenient that
the xml2 functions behave this way, but we could also add an if-statement to
the function to check (and possibly return NA
as the next URL in this case).
Then the code becomes:
parse_article_links = function(page) {
# Get article URLs
div = xml_find_all(page, "//div[@id = 'tdi_113']")
links = xml_find_all(div, ".//h3/a")
urls = xml_attr(links, "href")
# Get next page URL
nav = xml_find_all(page, "//div[contains(@class, 'page-nav')]")
next_page = xml_find_all(nav, ".//a[contains(@aria-label, 'next-page')]")
if (length(next_page) == 0) {
next_url = NA
} else {
next_url = xml_attr(next_page, "href")
}
# Using a list allows us to return two objects
list(urls = urls, next_url = next_url)
}
Now our function should work well even on the last page.
If we want to scrape links to all of the articles in the features section, we can use our function in a loop:
# NOTE: This code is likely to take a while to run, and is meant more for
# reading than for you to run and try out.
url = "https://theaggie.org/category/features/"
article_urls = list()
i = 1
# On the last page, the next URL will be `NA`.
while (!is.na(url)) {
# Download and parse the page.
page = read_html(url)
result = parse_article_links(page)
# Save the article URLs in the `article_urls` list. The variable `i` is the
# page number.
article_urls[[i]] = result$url
i = i + 1
# Set the URL to the next URL.
url = result$next_url
# Sleep for 1/30th of a second so that we never make more than 30 requests
# per second.
Sys.sleep(1/30)
}
Now we’ve got the basis for a simple scraper.
9.5.5 CSS Selectors
Cascading style sheets (CSS) is a language used to control the formatting of an XML or HTML document.
CSS selectors are the CSS way to write paths to elements. CSS selectors are more concise than XPath, so many people prefer them. Even if you prefer CSS selectors, it’s good to know XPath because CSS selectors are less flexible.
Here’s the basic syntax of CSS selectors:
CSS | Description |
---|---|
a |
tags a |
a > b |
tags b directly beneath a |
a b |
tags b anywhere beneath a |
a, b |
tags a or b |
#hi |
tags with attribute id="hi" |
.hi |
tags with attribute class that contains "hi" |
[foo="hi"] |
tags with attribute foo="hi" |
[foo*="hi"] |
tags with attribute foo that contains "hi" |
If you want to learn more, CSS Diner is an interactive tutorial that covers the entire CSS selector language.
In Firefox, you can get CSS selectors from the web developer tool. Right-click the tag you want a selector for and choose “Copy Unique Selector”. Beware that the selectors Firefox generates are often too specific to be useful for anything beyond the simplest web scrapers.
The rvest package uses CSS selectors by default. Behind the scenes, the package translates these into XPath and passes them to xml2.
Here are a few examples of CSS selectors, using rvest’s html_nodes
function:
html = r"(
<html>
<head>
<title>This is the page title!</title>
</head>
<body>
<h1>This is a header!</h1>
<p>This is a paragraph.
<a href="http://www.r-project.org/">Here's a website!</a>
</p>
<p id="hello">This is another paragraph.</p>
</body>
</html> )"
doc = read_html(html)
# Get all p elements
html_nodes(doc, "p")
## {xml_nodeset (2)}
## [1] <p>This is a paragraph.\n <a href="http://www.r-project.org/">Here's ...
## [2] <p id="hello">This is another paragraph.</p>
## {xml_nodeset (1)}
## [1] <a href="http://www.r-project.org/">Here's a website!</a>
## {xml_nodeset (1)}
## [1] <p id="hello">This is another paragraph.</p>