2: Applied Spatial Interaction Models - Case study of Singapore public bus commuter flows

Author

Magdalene Chan

Published

December 11, 2023

Modified

December 17, 2023

Objectives

Traditionally, commuter surveys are used by transport operators and urban managers to uncover insights related to urban mobility challenges. However, commuter surveys are costly, time-consuming and often yield outdated information due to their extended completion timelines. As urban infrastructures become increasingly digitized e.g. with widespread adoption of GPS in vehicles and transport cards, digital data sets offer a framework for tracking movement patterns over space and time, promising a new way to understand commuter behavior.

Despite increasing amounts of open data available, there has not been significant practice research carried out to show how these disparate data sources can be integrated, analysed, and modelled to support policy making decisions. There is also a general lack of practical research to show how geospatial data science and analysis (GDSA) can be used to support decision-making.

This study aims to demonstrate the potential value of GDSA to integrate publicly available data from multiple sources. Specifically, it seeks to build spatial interaction models to determine factors affecting urban mobility patterns of public bus commuter flows.

Tasks

The following tasks will be undertaken in this exercise:

Geospatial Data Science

  1. Derive an analytical hexagon data of 375m (this distance is the perpendicular distance between the hexagon centre and its edges) to represent the Traffic Analysis Zone (TAZ).
  2. Construct an Origin-Destination (O-D) matrix of commuter flows at the analytics hexagon level for Weekdays Morning Peak: 6am-9am (inclusive) by integrating Passenger Volume by Origin Destination Bus Stops and Bus Stop Location from LTA DataMall.
  3. Display the O-D flows of the passenger trips by using appropriate geovisualisation methods (not more than 5 maps).
  4. Describe the spatial patterns revealed by the geovisualisation (not more than 100 words per visual).
  5. Assemble at least three propulsive and three attractiveness variables by using aspatial and geospatial data from publicly available sources.
  6. Compute a distance matrix by using the analytical hexagon data derived earlier.

Spatial Interaction Modelling

  1. Calibrate spatial interactive models to determine factors affecting urban commuting flows at the selected time interval.
  2. Present the modelling results by using appropriate geovisualisation and graphical visualisation method (not more than 5 visuals).
  3. With reference to the Spatial Interaction Model output tables, maps and data visualisation prepared, describe the modelling results (not more than 100 words per visual).

Getting Started

The code chunk below uses p_load() of pacman package to check if the required packages have been installed on the computer. If they are, the packages will be launched. The following packages will be used:

  • sf package is used for importing, managing, and processing geospatial data.
  • sp package is used for processing geospatial data.
  • spdep package is used for computing spatial weights.
  • tmap package is used for thematic mapping.
  • tidyverse package is used for aspatial data wrangling.
  • knitr package is used for dynamic report generation in R.
  • stplanr package is used for plotting desire lines on maps.
  • httr package is used for working with HTTP.
  • performance package is used for computing statistical metrics such as RMSE.
pacman::p_load(sf, sp, spdep, tmap, tidyverse, knitr, stplanr, httr, performance)

Data Sets used

The open data sets used are:

  • Bus Stop Location (Last updated Jul 2023) from LTADataMall retrieved on 18 Nov 2023.
  • Passenger Volume by Origin Destination Bus Stops for August 2023 from LTADataMall retrieved on 18 Nov 2023.

The derived data sets used are:

Derive Traffic Analysis Zone

Traffic Analysis Zones (TAZ) are used in travel demand modelling to depict the spatial layout of trip origins, destinations, population, employment, and other influential factors shaping travel demand. Urban areas are divided into zones, simplifying trips from one zone to another, despite actual travel between points.

There are at least two ways to define TAZ – in Singapore, planning subzones have been marked out by URA for urban planning purposes. However, the use of such planning subzones would divide the study area into irregular-sized polygons. An alternative would be to create spatial grids that divide the study area into equal-sized, regular polygons. This study will make use of hexagon-spatial grids as the TAZ for analysis.

Import Geospatial data: MPSZ

st_read() function of sf package is used to import MPSZ-2019 shapefile into R as a simple feature data frame called mpsz. As MPSZ-2019 uses svy21 projected coordinate system, the crs argument is set to 3414.

mpsz <- st_read(dsn = "data/geospatial", layer = "MPSZ-2019") %>%
  st_transform(crs = 3414)
Reading layer `MPSZ-2019' from data source 
  `C:\magdalenecjw\ISSS624 Geospatial\Take_Home_Exercise\Ex2\data\geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 332 features and 6 fields
Geometry type: MULTIPOLYGON
Dimension:     XY
Bounding box:  xmin: 103.6057 ymin: 1.158699 xmax: 104.0885 ymax: 1.470775
Geodetic CRS:  WGS 84

Create Spatial Grids

For this study, a hexagon layer of 375m (where 375m is the perpendicular distance between the hexagon centre and its edges) will be created to represent the TAZ.

In the code chunk below, st_make_grid() of sf package is used to create the hexagon grid TAZ using the svy21 projected coordinate system. The cellsize argument refers to the cell size in the units that the crs of the spatial data is using and can be defined as the distance between opposite edges. Since the data is set in svy21 projected coordinate system, which uses metres as the unit, the value is set as c(750,750) to create a hexagon layer of 375m. The resulting data frame is then converted into a sf data frame and an index is added for each hexagon grid.

However, this hexagon layer created covers the entire plot area, including non-land areas. As this study is only interested in the land areas of Singapore, the mpsz sf data frame is also used to create a border of the land areas. This border is then used to clip the hexagon grid layer using st_intersection() of sf package, resulting in the output hex_grid_bounded sf data frame.

Code
# Create hexagon grid layer
hex_grid <- st_make_grid(mpsz, cellsize = c(750, 750), 
                         crs = 3413, what = "polygons", square = FALSE) %>%
  st_sf() %>%
  # Apply as.factor() since index will be used as the identifier to link to other data sets
  mutate(index = as.factor(row_number()))

# Create border of Singapore's land area
mpsz_border <- mpsz %>%
  summarise()

# Clip the hexagon grid layer
hex_grid_bounded <- st_intersection(hex_grid, mpsz_border)

To ensure that the hex_grid_bounded sf data frame is created correctly, it will be plotted on a map for visual inspection using tmap functions such as tm_shape() and tm_polygons().

Code
tmap_mode("plot")

tm_shape(hex_grid_bounded) +
  tm_polygons()

While the map above shows the TAZ for the land areas correctly, some zones are cut off by the borders and hence, incomplete. This should be rectified such that all zones have a complete hexagon shape.

The code chunk below checks if the hex_grid sf data frame intersects any polygons in the hex_grid_bounded sf data frame using st_intersects(). The grid index of these intersecting hexagons are then retrieved and filtered out from the hex_grid sf data frame to create a new hex_grid_bounded2 sf data frame.

Code
# Check if hex grid intersects any polygons using st_intersects
# Returns a list of intersecting hexagons
intersection_list = hex_grid$index[lengths(st_intersects(hex_grid, hex_grid_bounded)) > 0]

# Filter for the intersecting hexagons
hex_grid_bounded2 = hex_grid %>%
  filter(index %in% intersection_list)

To ensure that the hex_grid_bounded2 sf data frame is created correctly, it will be plotted on a map for visual inspection using tmap functions.

Code
tm_shape(hex_grid_bounded2) +
  tm_polygons()

The map above now shows the complete analytical hexagon data of 375m (perpendicular distance between the centre of hexagon and its edges) that represents the TAZ.

As not all TAZ have bus stops, the map could be further refined to reflect the Bus Stop Density within each TAZ.

Import Geospatial Data: Bus Stop Locations

The code chunk below uses the st_read() function of sf package to import BusStop shapefile into R as a simple feature data frame called BusStop. As BusStop uses svy21 projected coordinate system, the crs argument is set to 3414.

BusStop <- st_read(dsn = "data/geospatial", 
                layer = "BusStop") %>%
  st_transform(crs=3414)
Reading layer `BusStop' from data source 
  `C:\magdalenecjw\ISSS624 Geospatial\Take_Home_Exercise\Ex2\data\geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 5161 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 3970.122 ymin: 26482.1 xmax: 48284.56 ymax: 52983.82
Projected CRS: SVY21
# Examine the structure of the data frame
str(BusStop)
Classes 'sf' and 'data.frame':  5161 obs. of  4 variables:
 $ BUS_STOP_N: chr  "22069" "32071" "44331" "96081" ...
 $ BUS_ROOF_N: chr  "B06" "B23" "B01" "B05" ...
 $ LOC_DESC  : chr  "OPP CEVA LOGISTICS" "AFT TRACK 13" "BLK 239" "GRACE INDEPENDENT CH" ...
 $ geometry  :sfc_POINT of length 5161; first list element:  'XY' num  13576 32884
 - attr(*, "sf_column")= chr "geometry"
 - attr(*, "agr")= Factor w/ 3 levels "constant","aggregate",..: NA NA NA
  ..- attr(*, "names")= chr [1:3] "BUS_STOP_N" "BUS_ROOF_N" "LOC_DESC"

There are a total of 5161 features in the BusStop shapefile. Notably, BUS_STOP_N is listed as a character variable. As this variable will be used as the identifier to link to the aspatial data, it should be transformed to a factor so that R treats it as a grouping variable.

Code
# Apply as.factor() to the column
BusStop$BUS_STOP_N <- as.factor(BusStop$BUS_STOP_N)

# Re-examine the structure of the data frame
str(BusStop)
Classes 'sf' and 'data.frame':  5161 obs. of  4 variables:
 $ BUS_STOP_N: Factor w/ 5145 levels "01012","01013",..: 1008 1724 2118 4972 431 3787 1160 2941 1610 4983 ...
 $ BUS_ROOF_N: chr  "B06" "B23" "B01" "B05" ...
 $ LOC_DESC  : chr  "OPP CEVA LOGISTICS" "AFT TRACK 13" "BLK 239" "GRACE INDEPENDENT CH" ...
 $ geometry  :sfc_POINT of length 5161; first list element:  'XY' num  13576 32884
 - attr(*, "sf_column")= chr "geometry"
 - attr(*, "agr")= Factor w/ 3 levels "constant","aggregate",..: NA NA NA
  ..- attr(*, "names")= chr [1:3] "BUS_STOP_N" "BUS_ROOF_N" "LOC_DESC"

Based on the output above, BUS_STOP_N is now a factor of 5145 levels. However, there are a total of 5161 observations, suggesting the presence of duplicate records. The code chunk below generates a list of duplicated bus stop codes using group_by() and filter() functions of dplyr package and displays them using datatable() function of DT package.

Code
duplicate <- BusStop %>%
  group_by(BUS_STOP_N) %>%
  filter(n() > 1) %>%
  arrange(BUS_STOP_N, LOC_DESC)

DT::datatable(duplicate)

The code chunk below uses the distinct() function of dplyr package to keep only the unique rows based on the BUS_STOP_N while preserving all other fields (through the argument .keep_all = TRUE). By default, distinct() keeps the first occurrence of each unique combination of values in the specified columns. Once duplicates are removed, the resultant sf data frame is re-examined for its structure.

Code
BusStop <- BusStop %>%
  distinct(BUS_STOP_N, .keep_all = TRUE)

# Re-examine the structure of the data frame
str(BusStop)
Classes 'sf' and 'data.frame':  5145 obs. of  4 variables:
 $ BUS_STOP_N: Factor w/ 5145 levels "01012","01013",..: 1008 1724 2118 4972 431 3787 1160 2941 1610 4983 ...
 $ BUS_ROOF_N: chr  "B06" "B23" "B01" "B05" ...
 $ LOC_DESC  : chr  "OPP CEVA LOGISTICS" "AFT TRACK 13" "BLK 239" "GRACE INDEPENDENT CH" ...
 $ geometry  :sfc_POINT of length 5145; first list element:  'XY' num  13576 32884
 - attr(*, "sf_column")= chr "geometry"
 - attr(*, "agr")= Factor w/ 3 levels "constant","aggregate",..: NA NA NA
  ..- attr(*, "names")= chr [1:3] "BUS_STOP_N" "BUS_ROOF_N" "LOC_DESC"

There are now a total of 5145 observations, aligned with the number of factor levels.

Compute Bus Stop Density

The code chunk below uses st_intersects() of sf package to return lists of bus stops that lie inside each TAZ and lengths() to count the number of bus stops in each list. This is then appended back to hex_grid_bounded2 sf data frame in a new column called busstop_count.

Code
hex_grid_bounded2$busstop_count <- lengths(st_intersects(hex_grid_bounded2, BusStop))

The map is then updated to fill by colour based on the bus stop density. This is the base map that will be used for future geovisualisation in this study.

Code
tm_shape(hex_grid_bounded2) +
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont", 
          title = "Bus Stop Density") + 
  tm_borders(col = "grey")

Construct O-D matrix of Commuter Flow

The O-D matrix is a description of movement in a certain area and is used to assess the demand for transportation. In an O-D matrix, each cell is an intersection of a trip from an origin to a destination, and a higher number of trips implies a more in-demand bus route.

Import Passenger Volume by Origin-Destination Bus Stops

The code chunk below uses the read_csv() function of readr package (imported with the tidyverse package) to import the csv files into R and glimpse() is used to examine the data frame.

odbus <- read_csv("data/aspatial/origin_destination_bus_202308.csv")

# Examine the data frame
glimpse(odbus)
Rows: 5,709,512
Columns: 7
$ YEAR_MONTH          <chr> "2023-08", "2023-08", "2023-08", "2023-08", "2023-…
$ DAY_TYPE            <chr> "WEEKDAY", "WEEKENDS/HOLIDAY", "WEEKENDS/HOLIDAY",…
$ TIME_PER_HOUR       <dbl> 16, 16, 14, 14, 17, 17, 17, 17, 7, 17, 14, 10, 10,…
$ PT_TYPE             <chr> "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "…
$ ORIGIN_PT_CODE      <chr> "04168", "04168", "80119", "80119", "44069", "4406…
$ DESTINATION_PT_CODE <chr> "10051", "10051", "90079", "90079", "17229", "1722…
$ TOTAL_TRIPS         <dbl> 7, 2, 3, 10, 5, 4, 3, 22, 3, 3, 7, 1, 3, 1, 3, 1, …

Based on the data frame structure seen above, ORIGIN_PT_CODE and DESTINATION_PT_CODE are listed as character variables. These variables are equivalent to BUS_STOP_N of BusStop sf data frame and should be transformed to factors so that R treats them as grouping variables.

Code
# Columns to convert to factors
columns_to_convert <- c("ORIGIN_PT_CODE", "DESTINATION_PT_CODE")

# Apply as.factor() to the adjusted columns
odbus[columns_to_convert] <- lapply(odbus[columns_to_convert], as.factor)

# Re-examine the data frame
glimpse(odbus)
Rows: 5,709,512
Columns: 7
$ YEAR_MONTH          <chr> "2023-08", "2023-08", "2023-08", "2023-08", "2023-…
$ DAY_TYPE            <chr> "WEEKDAY", "WEEKENDS/HOLIDAY", "WEEKENDS/HOLIDAY",…
$ TIME_PER_HOUR       <dbl> 16, 16, 14, 14, 17, 17, 17, 17, 7, 17, 14, 10, 10,…
$ PT_TYPE             <chr> "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "…
$ ORIGIN_PT_CODE      <fct> 04168, 04168, 80119, 80119, 44069, 44069, 20281, 2…
$ DESTINATION_PT_CODE <fct> 10051, 10051, 90079, 90079, 17229, 17229, 20141, 2…
$ TOTAL_TRIPS         <dbl> 7, 2, 3, 10, 5, 4, 3, 22, 3, 3, 7, 1, 3, 1, 3, 1, …

Based on the output above, ORIGIN_PT_CODE and DESTINATION_PT_CODE are now factors.

Extract Commuting Flow data

The code chunk below extracts commuting flows for the target time period of Weekdays morning peak period (defined as between 6am to 9am (inclusive)).

Code
# Commute commuting flow for target time period
od_wkday_morn <- odbus %>%
  filter(DAY_TYPE == "WEEKDAY" & TIME_PER_HOUR >= 6 & TIME_PER_HOUR <=9) %>%
  group_by(ORIGIN_PT_CODE, DESTINATION_PT_CODE) %>%
  summarise(TRIPS = sum(TOTAL_TRIPS)) %>%
  ungroup()

The extracted commuting flow data is displayed for inspection using head() function shown in the code chunk below.

Code
head(od_wkday_morn, 10)
# A tibble: 10 × 3
   ORIGIN_PT_CODE DESTINATION_PT_CODE TRIPS
   <fct>          <fct>               <dbl>
 1 01012          01112                 276
 2 01012          01113                 143
 3 01012          01121                  66
 4 01012          01211                 134
 5 01012          01311                 256
 6 01012          07371                  22
 7 01012          60011                  26
 8 01012          60021                  20
 9 01012          60031                  21
10 01012          60159                  26

Geospatial Data Wrangling

The extracted commuting flows above are in aspatial format and will need to be converted into geospatial data.

The code chunk below populates the hexagon grid index (i.e. index) of hex_grid_bounded2 sf data frame into BusStop sf data frame. st_intersection() is used to perform point and polygon overlay and the output will be in point sf object. select() of dplyr package is then use to retain only BUS_STOP_N and index in the BusStop_hex sf data frame.

Code
# Identify hexagon grid index for each bus stop
BusStop_hex <- st_intersection(BusStop, hex_grid_bounded2) %>%
  select(BUS_STOP_N, index) %>%
  st_drop_geometry()

glimpse(BusStop_hex)
Rows: 5,140
Columns: 2
$ BUS_STOP_N <fct> 25059, 25751, 26379, 26299, 25761, 26399, 25719, 25711, 263…
$ index      <fct> 118, 146, 174, 175, 200, 201, 201, 201, 201, 202, 202, 203,…

From the print result above, there are now a total of 5140 observations. Five bus stops have been excluded in the resultant data frame as they are outside of Singapore’s boundary.

Next, append the hexagon grid index from BusStop_hex data frame to od_wkday_morn data frame for both ORIGIN_PT_CODE and DESTINATION_PT_CODE fields.

Code
# Join hexagon grid index for ORIGIN_PT_CODE
od_data <- left_join(od_wkday_morn , BusStop_hex,
            by = c("ORIGIN_PT_CODE" = "BUS_STOP_N")) %>%
  rename("ORIGIN_hex" = "index")

# Join hexagon grid index for DESTINATION_PT_CODE
od_data <- left_join(od_data , BusStop_hex,
            by = c("DESTINATION_PT_CODE" = "BUS_STOP_N")) %>%
  rename("DESTIN_hex" = "index") %>%
  drop_na() %>%
  group_by(ORIGIN_hex, DESTIN_hex) %>%
  summarise(TOTAL_TRIPS = sum(TRIPS))

The resultant data frame is checked for duplicates, if any.

Code
duplicate <- od_data %>%
  group_by_all() %>%
  filter(n()>1) %>%
  ungroup()

DT::datatable(duplicate)

The output above shows that there are no duplicates in the data frame.

Visualisation of O-D flows

The constructed O-D matrix can now be visualised using desire lines, which are rays connecting a site to associated location points.

Remove intra-zonal flows

The code chunk below will be used to remove intra-zonal flows that will not be plotted.

Code
od_plot <- od_data[od_data$ORIGIN_hex!=od_data$DESTIN_hex,]

Create desire lines

In this code chunk below, od2line() of stplanr package is used to create the desire lines.

Code
flowLine <- od2line(flow = od_plot, 
                    zones = hex_grid_bounded2,
                    zone_code = "index")

Visualise desire lines

In the code chunk below, tmap functions are used to visualise the resulting desire lines. To aid in a clearer and less cluttered visualization, only desire lines with at least 5000 trips are shown.

Code
tm_shape(hex_grid_bounded2) +
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont",
          title = "Bus Stop Density") +
  tm_borders(col = "grey") +
flowLine %>%  
  filter(TOTAL_TRIPS >= 5000) %>%
tm_shape() +
  tm_lines(lwd = "TOTAL_TRIPS",
           style = "fixed",
           scale = c(1,2,3,4,5,7,9),
           n = 6, 
           alpha = 0.7,
           title.lwd = "Total Trips") + 
  tm_layout(main.title = "Desire Lines with at least 5000 trips \nbetween Traffic Analysis Zones for Weekday Morning Peak Period",
            main.title.position = "center",
            main.title.size = 1,
            frame = TRUE)

Insights

It is possible to identify centroids where people are travelling to or from during weekday morning peak period. Most centroids are in residential areas (e.g. Tampines, Jurong East, Punggol), though some are in the Central region. Notably, there are several long-distance bus routes linking the East to the North, and the Central region to the North-Western part of Singapore. The most in-demand bus route on the map appears to be between Woodlands Checkpoint and Kranji, but neither TAZ has the highest bus stop count.

It is also possible to zoom in to individual regions of Singapore to observe commuting trends. In the code chunk below, a left join is performed for hex_grid_bounded2 and mpsz sf data frames using st_join() and the left = TRUE argument. When plotting the desire lines, a filter can now be applied on the REGION_N column to zoom in to a specific region of Singapore e.g. West region.

Code
hex_grid_mpsz <- st_join(hex_grid_bounded2, mpsz, left = TRUE)

tmap_mode("view")

hex_grid_mpsz %>%
  filter(REGION_N == "WEST REGION") %>%  # Filter for West region
tm_shape() +
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont",
          title = "Bus Stop Density",
          popup.vars = c("SUBZONE_N")) + 
  tm_view(set.zoom.limits = c(11,14)) + 
  tm_borders(col = "grey") +
flowLine %>%  
  filter(TOTAL_TRIPS >= 5000) %>%
tm_shape() +
  tm_lines(lwd = "TOTAL_TRIPS",
           style = "fixed",
           scale = c(1,2,3,4,5,7,9),
           n = 6, 
           alpha = 0.7,
           popup.vars = c("TOTAL_TRIPS"))
Code
tmap_mode("plot")
Insights

When zoomed into a specific region such as the West Region, it can be observed that bus stop density does not appear to directly correlate with the number of desire lines or the line thickness. For example, while hexagon grid index 772 has the highest bus stop density in the map above, its neighbouring grid 826 has more high volume flows that start from / end at that TAZ – of which, one of the high volume flows has as many as 89k trips being made per month.

As such, there is a need to further understand what drives such trends in commuting flows.

Assemble Propulsive and Attractiveness variable

Spatial interaction represents the flow of people, material, or information between locations in geographical space. As such, Spatial Interaction Models (SIM) can be used to understand more about what propels commuters from an origin zone and what attracts commuters to a destination zone.

Before such models can be built, there is a need to assemble propulsive and attractiveness variables. The following propulsive and attractiveness variables will be used:

  • Population Density: The population density in an area can significantly impact movement patterns as higher population densities in an area can act as a propulsive force, pushing people to travel from that area to other destinations for work. However, as there is no census data publicly available on a TAZ level, the number of HDB housing units will be used as a proxy for the population density – the more housing units there are within a TAZ, it can be implied that there is likely going to be a higher population within that zone.

  • Employment Opportunities Density: The density of employment opportunities in an area can significantly impact movement patterns as fewer employment opportunities in an area can act as a propulsive force, attracting people to travel from that area to other destinations for work. Conversely, more employment opportunities in an area can act as an attractiveness force, attracting people to travel from other origins to that area for work. However, as there is no employment data publicly available on a TAZ level, the number of businesses registered under a particular address will be used as a proxy for the employment opportunities density – more businesses registered within a TAZ suggests more employment opportunities within that zone.

  • School Density: The density of education institutions in an area can significantly impact movement patterns as fewer schools in an area can act as a propulsive force, attracting people to travel from that area to other destinations for education. Conversely, more education opportunities in an area can act as an attractiveness force, attracting people to travel from other origins to that area for school.

  • Financial Services Density: Close proximity of financial services such as banks, investment firms, or financial advisors to the workplace can contribute to the overall attractiveness of a destination for employment by offering convenience, business support, and signaling economic strength, particularly for industries where financial services are integral.

  • Public Transportation Nodes Density: Accessibility to public transportation can serve as an origin propulsive variable since areas with better access tend to generate more movement since they provide easier means to travel to various destinations. At the same time, accessibility to public transportation can also serve as a destination attractiveness variable since better access also makes an area more attractive to travel to for work. While not perfectly correlated, in this study, the density of public transportation nodes will be taken as an indicator of accessibility to public transportation.

Population Density

Import Aspatial Data: HDB

The code chunk below uses read_csv() function of readr package to import the specially prepared hdb csv data. The output R object is a tibble data frame called hdb. glimpse() is used to examine the structure of the tibble data frame.

hdb <- read_csv("data/aspatial/hdb.csv")

glimpse(hdb)
Rows: 12,442
Columns: 37
$ ...1                  <dbl> 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14…
$ blk_no                <chr> "1", "1", "1", "1", "1", "1", "1", "1", "1", "1"…
$ street                <chr> "BEACH RD", "BEDOK STH AVE 1", "CANTONMENT RD", …
$ max_floor_lvl         <dbl> 16, 14, 2, 15, 4, 25, 12, 14, 12, 2, 15, 15, 13,…
$ year_completed        <dbl> 1970, 1975, 2010, 1982, 1975, 1982, 1975, 1977, …
$ residential           <chr> "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y", "Y", "N"…
$ commercial            <chr> "Y", "N", "Y", "N", "Y", "N", "N", "N", "Y", "Y"…
$ market_hawker         <chr> "N", "N", "N", "N", "N", "N", "N", "N", "N", "N"…
$ miscellaneous         <chr> "N", "Y", "N", "N", "N", "N", "Y", "Y", "N", "N"…
$ multistorey_carpark   <chr> "N", "N", "N", "N", "N", "N", "N", "N", "N", "N"…
$ precinct_pavilion     <chr> "N", "N", "N", "N", "N", "N", "N", "N", "N", "N"…
$ bldg_contract_town    <chr> "KWN", "BD", "CT", "BD", "PRC", "BM", "QT", "GL"…
$ total_dwelling_units  <dbl> 142, 206, 0, 102, 55, 96, 125, 247, 95, 0, 220, …
$ `1room_sold`          <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
$ `2room_sold`          <dbl> 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
$ `3room_sold`          <dbl> 138, 204, 0, 0, 54, 0, 118, 0, 62, 0, 216, 214, …
$ `4room_sold`          <dbl> 1, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,…
$ `5room_sold`          <dbl> 2, 2, 0, 92, 1, 96, 7, 0, 33, 0, 4, 5, 0, 4, 0, …
$ exec_sold             <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
$ multigen_sold         <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
$ studio_apartment_sold <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
$ `1room_rental`        <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 0, 0, 0…
$ `2room_rental`        <dbl> 0, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, 56, …
$ `3room_rental`        <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 1,…
$ other_room_rental     <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0,…
$ lat                   <dbl> 1.295097, 1.320852, 1.275488, 1.327969, 1.388610…
$ lng                   <dbl> 103.8541, 103.9337, 103.8414, 103.9227, 103.9881…
$ building              <chr> "RAFFLES HOTEL", "NIL", "PINNACLE @ DUXTON", "PI…
$ addr                  <chr> "1 BEACH ROAD RAFFLES HOTEL SINGAPORE 189673", "…
$ postal                <chr> "189673", "460001", "080001", "461001", "500001"…
$ SUBZONE_NO            <dbl> 2, 6, 3, 3, 1, 9, 10, 5, 3, 5, 1, 5, 2, 2, 1, 7,…
$ SUBZONE_N             <chr> "CITY HALL", "BEDOK SOUTH", "CHINATOWN", "KEMBAN…
$ SUBZONE_C             <chr> "DTSZ02", "BDSZ06", "OTSZ03", "BDSZ03", "CHSZ01"…
$ PLN_AREA_N            <chr> "DOWNTOWN CORE", "BEDOK", "OUTRAM", "BEDOK", "CH…
$ PLN_AREA_C            <chr> "DT", "BD", "OT", "BD", "CH", "BM", "QT", "GL", …
$ REGION_N              <chr> "CENTRAL REGION", "EAST REGION", "CENTRAL REGION…
$ REGION_C              <chr> "CR", "ER", "CR", "ER", "ER", "CR", "CR", "CR", …

The hdb tibble data frame consists of 12,442 rows and 37 columns. Each row of data shows one address (with postal code) and its corresponding number of dwelling units at that address. Based on the column names, there appears to be different building types i.e. “residential”, “commercial” , “market_hawker” and “miscellaneous”. For the purpose of computing a proxy for population density, filter() of dplyr package will be used to extract residential units.

Code
hdb_residential <- hdb %>%
  filter(residential == "Y")

# Examine the data
head(hdb_residential, 10)
# A tibble: 10 × 37
    ...1 blk_no street   max_f…¹ year_…² resid…³ comme…⁴ marke…⁵ misce…⁶ multi…⁷
   <dbl> <chr>  <chr>      <dbl>   <dbl> <chr>   <chr>   <chr>   <chr>   <chr>  
 1     0 1      BEACH RD      16    1970 Y       Y       N       N       N      
 2     1 1      BEDOK S…      14    1975 Y       N       N       Y       N      
 3     3 1      CHAI CH…      15    1982 Y       N       N       N       N      
 4     4 1      CHANGI …       4    1975 Y       Y       N       N       N      
 5     5 1      DELTA A…      25    1982 Y       N       N       N       N      
 6     6 1      DOVER RD      12    1975 Y       N       N       Y       N      
 7     7 1      EUNOS C…      14    1977 Y       N       N       Y       N      
 8     8 1      EVERTON…      12    1980 Y       Y       N       N       N      
 9    10 1      GHIM MO…      15    1975 Y       N       N       Y       N      
10    11 1      HAIG RD       15    1976 Y       N       N       Y       N      
# … with 27 more variables: precinct_pavilion <chr>, bldg_contract_town <chr>,
#   total_dwelling_units <dbl>, `1room_sold` <dbl>, `2room_sold` <dbl>,
#   `3room_sold` <dbl>, `4room_sold` <dbl>, `5room_sold` <dbl>,
#   exec_sold <dbl>, multigen_sold <dbl>, studio_apartment_sold <dbl>,
#   `1room_rental` <dbl>, `2room_rental` <dbl>, `3room_rental` <dbl>,
#   other_room_rental <dbl>, lat <dbl>, lng <dbl>, building <chr>, addr <chr>,
#   postal <chr>, SUBZONE_NO <dbl>, SUBZONE_N <chr>, SUBZONE_C <chr>, …

Among the residential units, there appears to be some outliers such as Raffles Hotel being indicated as a residential dwelling. Given this, the data will be checked for buildings which contain a “hotel” in its name using the grepl() function.

Code
hotels <- hdb_residential %>%
  filter(grepl("HOTEL", building, ignore.case = TRUE))

kable(hotels)
…1 blk_no street max_floor_lvl year_completed residential commercial market_hawker miscellaneous multistorey_carpark precinct_pavilion bldg_contract_town total_dwelling_units 1room_sold 2room_sold 3room_sold 4room_sold 5room_sold exec_sold multigen_sold studio_apartment_sold 1room_rental 2room_rental 3room_rental other_room_rental lat lng building addr postal SUBZONE_NO SUBZONE_N SUBZONE_C PLN_AREA_N PLN_AREA_C REGION_N REGION_C
0 1 BEACH RD 16 1970 Y Y N N N N KWN 142 0 1 138 1 2 0 0 0 0 0 0 0 1.295097 103.8541 RAFFLES HOTEL 1 BEACH ROAD RAFFLES HOTEL SINGAPORE 189673 189673 2 CITY HALL DTSZ02 DOWNTOWN CORE DT CENTRAL REGION CR
4580 3 BEACH RD 16 1970 Y Y N N N N KWN 138 0 1 134 0 3 0 0 0 0 0 0 0 1.294801 103.8545 RAFFLES HOTEL SINGAPORE 3 BEACH ROAD RAFFLES HOTEL SINGAPORE SINGAPORE 189674 189674 2 CITY HALL DTSZ02 DOWNTOWN CORE DT CENTRAL REGION CR

The output above shows two listings which appear to be hotels. Upon checking, there appears to be an error with the geocoding due to similarities in address names. “Block 1 Beach Road” is indeed a HDB block while Raffles Hotel has a similar address name of “1 Beach Road”. However, both of these addresses have different postal codes. This could be due to an issue with the geocoding process as the original data set did not provide postal codes, leading to a confusion when there are similar addresses.

Given that 1 Beach Rd and 2 Beach Rd faced issues with geocoding, the data will be filtered for other similar addresses to ensure the geocoding has been done correctly.

Code
beach_rd <- hdb_residential %>%
  filter(grepl("BEACH RD", street, ignore.case = TRUE))

kable(beach_rd)
…1 blk_no street max_floor_lvl year_completed residential commercial market_hawker miscellaneous multistorey_carpark precinct_pavilion bldg_contract_town total_dwelling_units 1room_sold 2room_sold 3room_sold 4room_sold 5room_sold exec_sold multigen_sold studio_apartment_sold 1room_rental 2room_rental 3room_rental other_room_rental lat lng building addr postal SUBZONE_NO SUBZONE_N SUBZONE_C PLN_AREA_N PLN_AREA_C REGION_N REGION_C
0 1 BEACH RD 16 1970 Y Y N N N N KWN 142 0 1 138 1 2 0 0 0 0 0 0 0 1.295097 103.8541 RAFFLES HOTEL 1 BEACH ROAD RAFFLES HOTEL SINGAPORE 189673 189673 2 CITY HALL DTSZ02 DOWNTOWN CORE DT CENTRAL REGION CR
1660 15 BEACH RD 20 1974 Y Y N N N N KWN 76 0 0 0 76 0 0 0 0 0 0 0 0 1.295796 103.8555 NIL 15 BEACH ROAD NIL 1 BUGIS DTSZ01 DOWNTOWN CORE DT CENTRAL REGION CR
2079 17 BEACH RD 20 1974 Y Y N N N N KWN 76 0 0 0 76 0 0 0 0 0 0 0 0 1.303689 103.8636 GOLDEN BEACH VISTA 17 BEACH ROAD GOLDEN BEACH VISTA SINGAPORE 190017 190017 9 CRAWFORD KLSZ09 KALLANG KL CENTRAL REGION CR
2567 2 BEACH RD 16 1970 Y Y N N N N KWN 139 0 1 136 0 2 0 0 0 0 0 0 0 1.390462 103.9753 CHANGI BEACH CLUB 2 ANDOVER ROAD CHANGI BEACH CLUB SINGAPORE 509984 509984 1 CHANGI POINT CHSZ01 CHANGI CH EAST REGION ER
4580 3 BEACH RD 16 1970 Y Y N N N N KWN 138 0 1 134 0 3 0 0 0 0 0 0 0 1.294801 103.8545 RAFFLES HOTEL SINGAPORE 3 BEACH ROAD RAFFLES HOTEL SINGAPORE SINGAPORE 189674 189674 2 CITY HALL DTSZ02 DOWNTOWN CORE DT CENTRAL REGION CR
6028 4 BEACH RD 16 1968 Y N N Y N N KWN 336 0 0 0 0 0 0 0 0 336 0 0 0 1.304716 103.8652 NIL 4 BEACH ROAD SINGAPORE 190004 190004 9 CRAWFORD KLSZ09 KALLANG KL CENTRAL REGION CR
7743 5 BEACH RD 16 1968 Y N N Y N N KWN 336 0 0 0 0 0 0 0 0 336 0 0 0 1.298092 103.8569 BEACH ROAD CONSERVATION AREA 5 TAN QUEE LAN STREET BEACH ROAD CONSERVATION AREA SINGAPORE 188094 188094 1 BUGIS DTSZ01 DOWNTOWN CORE DT CENTRAL REGION CR
8956 6 BEACH RD 16 1968 Y Y N N N N KWN 198 0 45 1 28 0 0 0 0 57 67 0 0 1.303992 103.8644 BEACH ROAD GARDENS 6 BEACH ROAD BEACH ROAD GARDENS SINGAPORE 190006 190006 9 CRAWFORD KLSZ09 KALLANG KL CENTRAL REGION CR

According to postal code conventions, the postal codes for these HDB dwellings should be in the format of 1900XX, where XX is replaced by the block number. However, apart from 1 and 3 Beach Road identified earlier, 2, 5 and 15 Beach Road also do not have the correct postal codes, which suggests that the coordinates for these addresses are inaccurate.

The data will be modified using the mutate() and ifelse() functions of dplyr package. The correct coordinates values will be searched for using the OneMap service. The final output is then saved out as a new tibble data frame hdb_residential2.

Code
hdb_residential2 <- hdb_residential %>%
  mutate(postal = ifelse(blk_no == 1 & street == "BEACH RD", 190001, postal)) %>%
  mutate(lat = ifelse(blk_no == 1 & street == "BEACH RD", 1.3036714, lat)) %>%
  mutate(lng = ifelse(blk_no == 1 & street == "BEACH RD", 103.8644787, lng)) %>%
  mutate(postal = ifelse(blk_no == 2 & street == "BEACH RD", 190002, postal)) %>%
  mutate(lat = ifelse(blk_no == 2 & street == "BEACH RD", 1.3040331, lat)) %>%
  mutate(lng = ifelse(blk_no == 2 & street == "BEACH RD", 103.8649285, lng)) %>%
  mutate(postal = ifelse(blk_no == 3 & street == "BEACH RD", 190003, postal)) %>%
  mutate(lat = ifelse(blk_no == 3 & street == "BEACH RD", 1.3041872, lat)) %>%
  mutate(lng = ifelse(blk_no == 3 & street == "BEACH RD", 103.8651934, lng)) %>%
  mutate(postal = ifelse(blk_no == 5 & street == "BEACH RD", 190005, postal)) %>%
  mutate(lat = ifelse(blk_no == 5 & street == "BEACH RD", 1.3043463, lat)) %>%
  mutate(lng = ifelse(blk_no == 5 & street == "BEACH RD", 103.8648158, lng)) %>%
  mutate(postal = ifelse(blk_no == 15 & street == "BEACH RD", 190015, postal)) %>%
  mutate(lat = ifelse(blk_no == 15 & street == "BEACH RD", 1.3034254, lat)) %>%
  mutate(lng = ifelse(blk_no == 15 & street == "BEACH RD", 103.8631535, lng))

The resultant data frame is checked for duplicates, if any.

Code
duplicate <- hdb_residential2 %>%
  group_by_all() %>%
  filter(n()>1) %>%
  ungroup()

DT::datatable(duplicate)

The output above shows that there are no duplicate rows in the data set.

Convert Aspatial data to Geospatial data

To convert the aspatial data to geospatial data, the latitude (lat) and longitude (lng) columns will be used. These columns are in decimal degree format, indicating that the data is in wgs84 geographic coordinate system.

The code chunk below converts hdb_residential2 data frame into a sf data frame using st_as_sf() of sf package. The coords argument requires the column name of the x-coordinates first followed by the column name of the y-coordinates. Lastly, as the resultant data frame has many columns, only the required columns will be selected using select() function of dplyr package.

Code
hdb_residential_sf <- st_as_sf(hdb_residential2, 
                   coords = c("lng", "lat"),
                   crs=4326) %>%
  st_transform(crs = 3414) %>%
  select(postal, total_dwelling_units, geometry)

# Examine the structure of the data frame
str(hdb_residential_sf)
sf [10,181 × 3] (S3: sf/tbl_df/tbl/data.frame)
 $ postal              : chr [1:10181] "190001" "460001" "461001" "500001" ...
 $ total_dwelling_units: num [1:10181] 142 206 102 55 96 125 247 95 220 219 ...
 $ geometry            :sfc_POINT of length 10181; first list element:  'XY' num [1:2] 31468 31779
 - attr(*, "sf_column")= chr "geometry"
 - attr(*, "agr")= Factor w/ 3 levels "constant","aggregate",..: NA NA
  ..- attr(*, "names")= chr [1:2] "postal" "total_dwelling_units"

The table above shows the structure of hdb_residential_sf. A new column called geometry has been added into the data frame while the lng and lat columns have been dropped. To ensure that the hdb_residential_sf sf data frame is projected and converted correctly, it will be plotted on a map for visual inspection.

Code
# boundary map
tm_shape(hex_grid_bounded2) +
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont",
          title = "Bus Stop Density") +
  tm_borders(col = "grey") +
# plot housing locations
tm_shape(hdb_residential_sf) +
  tm_dots() + 
  tm_layout(main.title = "Location of HDB Residential Units",
            main.title.position = "center",
            main.title.size = 1,
            frame = TRUE)

All the HDB Residential Units are encompassed in TAZ with bus stops, which aligns with the urban planning for Singapore where all HDB estates would have access to public transportation.

Performing in-polygon count

In the code chunk below, st_join() and st_intersects() is used to join hex_grid_bounded2 and hdb_residential_sf. The left = TRUE argument ensures that all elements from the hex_grid_bounded2 are retained in the result. Once the hexagon grid indexes are obtained for each point feature, the geometry can be dropped using st_drop_geometry(). group_by() function of dplyr package is then used to group the data by hexagon grid index before adding up the total count of dwelling units within each TAZ. Lastly, is.na() is used to check for missing counts and replaces them with 0 using the mutate() and ifelse() functions, ensuring a clean data set without missing values for further analysis and visualization.

Code
housing_count <- st_join(hex_grid_bounded2, hdb_residential_sf, 
                     join = st_intersects, left = TRUE) %>%
  st_drop_geometry() %>%
  group_by(index) %>%
  summarise(housing_count = sum(total_dwelling_units)) %>%
  ungroup() %>%
  mutate(housing_count = ifelse(is.na(housing_count), 0, housing_count))

A new hex_grid_bounded3 sf data frame is created using left_join() on hex_grid_bounded2 and housing_count. A summary of this new column is generated using summary().

Code
hex_grid_bounded3 <- left_join(hex_grid_bounded2, housing_count,
                               by = c("index" = "index"))

summary(hex_grid_bounded3$housing_count)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
    0.0     0.0     0.0   560.8     0.0  8324.0 

The new variable is also plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) +
  tm_fill(col = "housing_count",
          palette = "Blues",
          style = "cont", 
          title = "Housing Density") + 
  tm_borders(col = "grey")

Based on the summary stats and the choropleth map above, it can be observed that there is a large number of zero values in the field housing_count. If log() is going to be used to transform this field, an additional step is required to ensure that all zero values are replaced with a negligible offset that is between the values of 0 and 1 (but not either value).

Employment Opportunities Density

Import Geospatial data: Business

The code chunk below uses the st_read() function of sf package to import the specially prepared Business shapefile into R as a simple feature data frame called biz. As Business uses svy21 projected coordinate system, the crs argument is set to 3414.

Code
biz <- st_read(dsn = "data/geospatial", layer = "Business") %>%
  st_transform(crs = 3414)
Reading layer `Business' from data source 
  `C:\magdalenecjw\ISSS624 Geospatial\Take_Home_Exercise\Ex2\data\geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 6550 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 3669.148 ymin: 25408.41 xmax: 47034.83 ymax: 50148.54
Projected CRS: SVY21 / Singapore TM

To ensure that the biz sf data frame is projected and converted correctly, it will be plotted on a map for visual inspection.

Code
# boundary map
tm_shape(hex_grid_bounded3) +
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont",
          title = "Bus Stop Density") +
  tm_borders(col = "grey") +
# plot biz locations
tm_shape(biz) +
  tm_dots() + 
  tm_layout(main.title = "Location of Businesses",
            main.title.position = "center",
            main.title.size = 1,
            frame = TRUE)

The locations of businesses appear to be most densely concentrated in the central and west regions, which aligns with known business zones i.e. CBD and Jurong Industrial Area.

Perform point-in-polygon count

The code chunk below uses st_intersects() to return a list of businesses that lie inside each TAZ and lengths() to count the number of businesses in each list. This is then appended to the hex_grid_bounded3 sf data frame in a new column called biz_count and a summary of this new column is generated.

Code
hex_grid_bounded3$biz_count <- lengths(st_intersects(hex_grid_bounded3, biz))

summary(hex_grid_bounded3$biz_count)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
  0.000   0.000   0.000   3.368   1.000 126.000 

The new variable is also plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) +
  tm_fill(col = "biz_count",
          palette = "Blues",
          style = "cont", 
          title = "Business Density") + 
  tm_borders(col = "grey")

Based on the summary stats and the choropleth map above, it can be observed that the distribution of biz_count is extremely skewed with a large number of zero values. If log() is going to be used to transform this field, an additional step is required to ensure that all zero values are replaced with a negligible offset that is between the values of 0 and 1 (but not either value).

Schools Density

Geocode Aspatial data: Schools

Address geocoding is the process of taking an aspatial description of a location, such as an address or postcode, and returning geographic coordinates, frequently latitude/longitude pair, to identify a location on the Earth’s surface.

Singapore Land Authority (SLA) supports an online geocoding service called OneMap API. Within which, the Search API service can be used to look up the address data or 6-digit postal code for an entered value, and returns both latitude, longitude and x,y coordinates of the searched location.

The code chunks below will perform geocoding using SLA OneMap API. The input data Generalinformationofschools is given in csv file format and read into R Studio environment using read_csv() function of readr package. A collection of http call functions of httr package of R will then be used to pass the individual records to the geocoding server at OneMap.

After completion of the geocoding process, two tibble data frames will be created: found and not_found. found contains all records that are geocoded correctly and not_found contains records that fail to be geocoded. The found data table will then be joined with the initial csv data table by using a unique identifier (i.e. postal code) common to both data tables and saved out as a csv file called schools.

Code
url <- "https://www.onemap.gov.sg/api/common/elastic/search"

csv <- read_csv("data/aspatial/Generalinformationofschools.csv")
postcodes <- csv$postal_code

found <- data.frame()
not_found <- data.frame()

for (postcode in postcodes) {
  query <- list('searchVal'=postcode, 'returnGeom'='Y', 'getAddrDetails'='Y', 'pageNum'='1')
  res <- GET(url, query=query)
  
  if ((content(res)$found)!=0){
    found <- rbind(found, data.frame(content(res))[4:13])
  } else {
    not_found = data.frame(postcode)
  }
}

merged <- merge(csv, found, by.x = "postal_code", by.y = "results.POSTAL", all = T)

write_csv(merged, "data/aspatial/schools.csv")
write_csv(not_found, "data/aspatial/not_found.csv")

Next, the csv file for the school(s) where the geocoding could not be completed is manually updated outside of the R environment before it is reloaded as a schools tibble data frame. A pipe operation is done to rename the coordinates columns and select only required columns.

Code
schools <- read_csv("data/aspatial/schools.csv")

schools <- schools %>%
  rename("latitude" = "results.LATITUDE",
         "longitude" = "results.LONGITUDE") %>%
  select(postal_code, school_name, latitude, longitude)

Conversion of Aspatial data to Geospatial data

Next, convert the aspatial data frame into a sf tibble data frame called schools_sf using st_as_sf() of sf package. The data frame is then converted into the svy21 projected coordinate system. The coordinates in the coords argument are specified in the order of longitude followed by latitude.

Code
schools_sf <- st_as_sf(schools, coords = c("longitude", "latitude"), 
                       crs = st_crs(4326)) %>%
  st_transform(crs = 3414)

To ensure that the schools_sf data frame is projected and converted correctly, it will be plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) + 
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont",
          title = "Bus Stop Density") +
  tm_borders(col = "grey") +
tm_shape(schools_sf) + 
  tm_dots() + 
  tm_layout(main.title = "Location of Schools",
            main.title.position = "center",
            main.title.size = 1,
            frame = TRUE)

All schools plotted are either encompassed in TAZ with bus stops, or are at the edge of a neighbouring TAZ, which aligns with the urban planning for Singapore where all schools are in close proximity to a bus stop.

Perform point-in-polygon count

The code chunk below uses st_intersects() to return a list of schools that lie inside each TAZ and lengths() to count the number of schools in each list. This is then appended back to hex_grid_bounded3 sf data frame in a new column called school_count. Lastly, a summary of this new column is generated.

Code
hex_grid_bounded3$school_count <- lengths(st_intersects(hex_grid_bounded3, schools_sf))

summary(hex_grid_bounded3$school_count)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
 0.0000  0.0000  0.0000  0.1799  0.0000  5.0000 

The new column is also plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) +
  tm_fill(col = "school_count",
          palette = "Blues",
          style = "cont", 
          title = "School Density") + 
  tm_borders(col = "grey")

Based on the summary stats and the choropleth map above, it can be observed that there is a large number of zero values in the field school_count. If log() is going to be used to transform this field, an additional step is required to ensure that all zero values are replaced with a negligible offset that is between the values of 0 and 1 (but not either value).

Financial Services Density

Import Geospatial data: Train Stations

The code chunk below uses the st_read() function of sf package to import FinServ shapefile into R as a simple feature data frame called FinServ. As FinServ uses svy21 projected coordinate system, the crs argument is set to 3414.

Code
FinServ <- st_read(dsn = "data/geospatial", layer = "FinServ") %>%
  st_transform(crs = 3414)
Reading layer `FinServ' from data source 
  `C:\magdalenecjw\ISSS624 Geospatial\Take_Home_Exercise\Ex2\data\geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 3320 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 4881.527 ymin: 25171.88 xmax: 46526.16 ymax: 49338.02
Projected CRS: SVY21 / Singapore TM

The FinServ sf data frame will now be plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) + 
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont",
          title = "Bus Stop Density") +
  tm_borders(col = "grey") +
tm_shape(FinServ) + 
  tm_dots() + 
  tm_layout(main.title = "Location of Financial Services",
            main.title.position = "center",
            main.title.size = 1,
            frame = TRUE)

The location of most financial services overlaps with TAZ with bus stops, though there are several financial services in the south region that are not served by bus stops.

Perform point-in-polygon count

The code chunk below uses st_intersects() to return a list of financial service centres that lie inside each TAZ and lengths() to count the number of financial service centres in each list. This is then appended back to hex_grid_bounded3 sf data frame in a new column called fin_count. Lastly, a summary of this new column is generated.

Code
hex_grid_bounded3$fin_count <- lengths(st_intersects(hex_grid_bounded3, FinServ))

summary(hex_grid_bounded3$fin_count)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
  0.000   0.000   0.000   1.707   0.000 176.000 

The new column is also plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) +
  tm_fill(col = "fin_count",
          palette = "Blues",
          style = "cont", 
          title = "Financial Services Density") + 
  tm_borders(col = "grey")

Based on the summary stats and the choropleth map above, the distribution of fin_count is extremely skewed with a large number of zero values. If log() is going to be used to transform this field, an additional step is required to ensure that all zero values are replaced with a negligible offset that is between the values of 0 and 1 (but not either value).

Public Transportation Density

Bus stop counts has previously been computed. Another critical component of Singapore’s public transportation is the MRT / LRT system.

Import Geospatial data: Train Stations

The code chunk below uses the st_read() function of sf package to import RapidTransitSystemStation shapefile into R as a simple feature data frame called mrt_lrt. As RapidTransitSystemStation uses svy21 projected coordinate system, the crs argument is set to 3414.

Code
mrt_lrt <- st_read(dsn = "data/geospatial", layer = "RapidTransitSystemStation") %>%
  st_transform(crs = 3414)
Reading layer `RapidTransitSystemStation' from data source 
  `C:\magdalenecjw\ISSS624 Geospatial\Take_Home_Exercise\Ex2\data\geospatial' 
  using driver `ESRI Shapefile'
Warning in CPL_read_ogr(dsn, layer, query, as.character(options), quiet, :
GDAL Message 1: Non closed ring detected. To avoid accepting it, set the
OGR_GEOMETRY_ACCEPT_UNCLOSED_RING configuration option to NO
Simple feature collection with 220 features and 4 fields
Geometry type: POLYGON
Dimension:     XY
Bounding box:  xmin: 6068.209 ymin: 27478.44 xmax: 45377.5 ymax: 47913.58
Projected CRS: SVY21

In the output above, there is a warning that a non closed ring is detected in the geometry of the sf data frame. The code chunk below uses st_is_valid() to check for the error.

Code
st_is_valid(mrt_lrt)
  [1]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [13]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [25]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [37]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [49]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [61]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [73]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [85]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
 [97]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[109]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[121]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[133]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[145]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[157]  TRUE  TRUE FALSE  TRUE  TRUE  TRUE    NA  TRUE  TRUE  TRUE  TRUE  TRUE
[169]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[181]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[193]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[205]  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE  TRUE
[217]  TRUE FALSE  TRUE  TRUE

From the output above, it can be observed that there are two types of issues:

  1. There are two invalid geometries (i.e. FALSE outcomes).
  2. There is one geometry with an NA outcome.

The specific stations can be identified and addressed using the following code chunks.

Code
# Identify problematic geometries
problematic_geoms <- mrt_lrt[which(!st_is_valid(mrt_lrt)), ]

kable(problematic_geoms)
TYP_CD STN_NAM TYP_CD_DES STN_NAM_DE geometry
159 0 NA MRT HARBOURFRONT MRT STATION POLYGON ((26736.44 27495.44…
218 0 NA MRT UPPER THOMSON MRT STATION POLYGON ((27808.12 37518.2,…

Based on the output above, the invalid geometries are for Harbourfront MRT Station and Upper Thomson MRT Station. These two invalid geometries will be fixed using the st_make_valid() function from the sf package.

Code
# Identify NA geometries
na_geoms <- mrt_lrt[is.na(st_is_valid(mrt_lrt)), ]

kable(na_geoms)
TYP_CD STN_NAM TYP_CD_DES STN_NAM_DE geometry
163 0 NA MRT BOCC POLYGON ((42614.11 35130.09…

Based on the output above, the NA geometry is for BOCC, which refers to the Bus Operations Control Centre. Given that this is not a public transportation node that is accessible to the general public, this feature will be dropped from the final mrt_lrt sf data frame.

The code chunk below fixes the mrt_lrt data frame by first filtering out the 163th feature, which corresponds to the BOCC station with the NA geometry, then applying st_make_valid() to resolve the two invalid geometries. The geometries are verified again after fixing.

Code
mrt_lrt_fixed <- mrt_lrt[-163, ] %>%
  st_make_valid()

# Verify that the geometries are valid after fixing
st_is_valid(mrt_lrt_fixed)
  [1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
 [16] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
 [31] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
 [46] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
 [61] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
 [76] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
 [91] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[106] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[121] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[136] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[151] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[166] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[181] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[196] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
[211] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE

The output above now shows that all the geometries are valid. The mrt_lrt_fixed sf data frame will now be plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) + 
  tm_fill(col = "busstop_count",
          palette = "Blues",
          style = "cont", 
          title = "Bus Stop Density") +
  tm_borders(col = "grey") +
tm_shape(mrt_lrt_fixed) + 
  tm_polygons(col = "brown") + 
  tm_layout(main.title = "Location of MRT / LRT Stations",
            main.title.position = "center",
            main.title.size = 1,
            frame = TRUE)

Most MRT / LRT Stations are in a TAZ that contains at least one bus stop. However, some MRT / LRT Stations appear to cut across multiple TAZ.

Perform point-in-polygon count

As the geometries for the MRT / LRT stations are polygons that may cut across multiple TAZ, there is a need to convert them into points before Perform point-in-polygon count. A simple way could be to use st_centroid() to get the centroid of each polygon. Using centroids requires fewer computational resources than computing based on all points along polygon edges, especially with complex polygons featuring many vertices. Additionally, centroids act as singular points summarizing the entire shape, providing a simplified representation in contrast to edges.

Code
mrt_lrt_points <- st_centroid(mrt_lrt_fixed)

The code chunk below then uses st_intersects() to return a list of MRT / LRT stations that lie inside each TAZ and lengths() to count the number of stations in each list. This is then appended back to hex_grid_bounded2 sf data frame in a new column called mrtlrt_count. Lastly, a summary of this new column is generated.

Code
hex_grid_bounded3$mrtlrt_count <- lengths(st_intersects(hex_grid_bounded3, mrt_lrt_points))

summary(hex_grid_bounded3$mrtlrt_count)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
 0.0000  0.0000  0.0000  0.1126  0.0000  4.0000 

The new column is also plotted on a map for visual inspection.

Code
tm_shape(hex_grid_bounded3) +
  tm_fill(col = "mrtlrt_count",
          palette = "Blues",
          style = "cont", 
          title = "MRT/LRT Station Count") + 
  tm_borders(col = "grey")

Based on the summary stats and the choropleth map above, it can be observed that there is a large number of zero values in the field mrtlrt_count. If log() is going to be used to transform this field, an additional step is required to ensure that all zero values are replaced with a negligible offset that is between the values of 0 and 1 (but not either value).

Assemble the variables

The propulsive and attractiveness variables will be compiled into a tibble data frame called propulsive to be used for the Spatial Interaction Model later. A prefix of “o_” will be added to the column names to identify them as origin variables.

Code
propulsive <- hex_grid_bounded3 %>%
  st_drop_geometry() %>%
  select(index, housing_count, biz_count, 
         school_count, busstop_count, mrtlrt_count)
  

origin <- names(propulsive) %>%
  modify_at(-1, ~ paste0("o_", .))  # Add prefix to all except index

# Assign modified names back to the data frame
names(propulsive) <- origin

Prepare destination variables

The attractiveness variables will be compiled into a tibble data frame called attractiveness to be used for the Spatial Interaction Model later. A prefix of “d_” will be added to the column names to identify them as origin variables.

Code
attractiveness <- hex_grid_bounded3 %>%
  st_drop_geometry() %>%
  select(index, biz_count, school_count, 
         fin_count, busstop_count, mrtlrt_count)

destin <- names(attractiveness) %>%
  modify_at(-1, ~ paste0("d_", .))  # Add prefix to all except index

# Assign modified names back to the data frame
names(attractiveness) <- destin

Compute Distance Matrix

In spatial interaction, a distance matrix is a table that shows the distance between pairs of locations. A location’s distance from itself, which is shown in the main diagonal of a distance matrix table, is 0.

There are at least two ways to compute the required distance matrix – one based on sf and the other based on sp. However, past experience has shown that computing the distance matrix using sf function takes relatively longer than sp method especially when the data set is large. In view of this, sp method will be used in the code chunks below.

Converting sf data frame to SpatialPolygonsDataFrame

First as.Spatial() is used to convert the hex_grid_bounded2 sf tibble data frame to SpatialPolygonsDataFrame of sp object as shown in the code chunk below.

Code
hex_grid_sp <- as(hex_grid_bounded2, "Spatial")
hex_grid_sp
class       : SpatialPolygonsDataFrame 
features    : 1945 
extent      : 2292.538, 57042.54, 15315.71, 50606.24  (xmin, xmax, ymin, ymax)
crs         : +proj=tmerc +lat_0=1.36666666666667 +lon_0=103.833333333333 +k=1 +x_0=28001.642 +y_0=38744.572 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs 
variables   : 2
names       : index, busstop_count 
min values  :  1001,             0 
max values  :   997,            20 

The code chunk below is used to measure the distance between the central points of each pair of spatial shapes using the function spDists() of sp package. This method is widely used due to its computational simplicity, providing a reasonably accurate indication of spatial connections between the shapes. As mentioned above, calculating distances between centroids demands less computational resources than calculations between all points along polygon edges, especially for intricate polygons with many vertices. Centroids also act as single point representations that provide an overview of the shape. While edges offer intricate shape details, the generalized perspective of centroids could be valuable when precise edge shapes are less critical.

Code
dist <- spDists(hex_grid_sp, longlat = FALSE)

# Examine the resultant matrix
head(dist, n=c(10, 10))
          [,1]     [,2]     [,3]     [,4]     [,5]     [,6]     [,7]     [,8]
 [1,]    0.000 1299.038 2598.076 3897.114 5196.152  750.000 1984.313 3269.174
 [2,] 1299.038    0.000 1299.038 2598.076 3897.114  750.000  750.000 1984.313
 [3,] 2598.076 1299.038    0.000 1299.038 2598.076 1984.313  750.000  750.000
 [4,] 3897.114 2598.076 1299.038    0.000 1299.038 3269.174 1984.313  750.000
 [5,] 5196.152 3897.114 2598.076 1299.038    0.000 4562.072 3269.174 1984.313
 [6,]  750.000  750.000 1984.313 3269.174 4562.072    0.000 1299.038 2598.076
 [7,] 1984.313  750.000  750.000 1984.313 3269.174 1299.038    0.000 1299.038
 [8,] 3269.174 1984.313  750.000  750.000 1984.313 2598.076 1299.038    0.000
 [9,] 4562.072 3269.174 1984.313  750.000  750.000 3897.114 2598.076 1299.038
[10,] 5857.687 4562.072 3269.174 1984.313  750.000 5196.152 3897.114 2598.076
          [,9]    [,10]
 [1,] 4562.072 5857.687
 [2,] 3269.174 4562.072
 [3,] 1984.313 3269.174
 [4,]  750.000 1984.313
 [5,]  750.000  750.000
 [6,] 3897.114 5196.152
 [7,] 2598.076 3897.114
 [8,] 1299.038 2598.076
 [9,]    0.000 1299.038
[10,] 1299.038    0.000

As seen in the output above, the result is a matrix object class and the column and row headers are not labeled with the hexagon grid index representing the TAZ.

Label column and row headers of distance matrix

To add the column and row headers, first create a list sorted according to the the distance matrix by TAZ.

Code
hex_names <- hex_grid_bounded2$index

Next, attach the hexagon grid index to row and column for distance matrix matching.

Code
colnames(dist) <- paste0(hex_names)
rownames(dist) <- paste0(hex_names)

Pivot distance value by hexagon grid index

Next, the distance matrix is pivoted into a long table by using the melt() function of reshape2 package and the row and column TAZ codes as show in the code chunk below.

Code
distPair <- reshape2::melt(dist) %>%
  rename(dist = value)

head(distPair, 10)
   Var1 Var2     dist
1    33   33    0.000
2    34   33 1299.038
3    35   33 2598.076
4    36   33 3897.114
5    37   33 5196.152
6    60   33  750.000
7    61   33 1984.313
8    62   33 3269.174
9    63   33 4562.072
10   64   33 5857.687

Notice that the within zone distance (intra-zonal distance) is 0.

Update intra-zonal distances

A constant value will be appended to the data frame to replace the intra-zonal distance of 0. To do so, first find the minimum non-zero value of the distance by using summary().

Code
distPair %>%
  filter(dist > 0) %>%
  summary()
      Var1           Var2           dist      
 Min.   :  33   Min.   :  33   Min.   :  750  
 1st Qu.: 966   1st Qu.: 966   1st Qu.:10894  
 Median :1667   Median :1667   Median :17477  
 Mean   :1752   Mean   :1752   Mean   :18932  
 3rd Qu.:2420   3rd Qu.:2420   3rd Qu.:25401  
 Max.   :3937   Max.   :3937   Max.   :57862  

Given that the minimum distance is 750m, any values smaller than 750m can be used to represent intra-zonal distance. As such, in the code chunk below, a value of 375m (half of 750m) will be appended to intra-zonal distance to replace the current value of 0.

Code
distPair$dist <- ifelse(distPair$dist == 0,
                        375, distPair$dist)

# Examine data frame
summary(distPair)
      Var1           Var2           dist      
 Min.   :  33   Min.   :  33   Min.   :  375  
 1st Qu.: 966   1st Qu.: 966   1st Qu.:10894  
 Median :1667   Median :1667   Median :17477  
 Mean   :1752   Mean   :1752   Mean   :18923  
 3rd Qu.:2420   3rd Qu.:2420   3rd Qu.:25401  
 Max.   :3937   Max.   :3937   Max.   :57862  

The minimum value is now 375m.

Lastly, the code chunk below is used to rename the origin and destination fields and to convert these two fields into factor data type.

Code
distPair <- distPair %>%
  rename(orig = Var1,
         dest = Var2) %>%
  mutate(across(c(orig, dest), as.factor))

Calibrate Spatial Interaction Model using Poisson Regression method

Spatial Interaction Models (SIM) are mathematical models for estimating flows between spatial entities.

There are four main types of traditional SIM: Unconstrained, Production-constrained, Attraction-constrained and Doubly-constrained.

All four SIM will be done for comparison.

Ordinary least square (OLS), log-normal, Poisson and negative binomial (NB) regression methods have been used extensively to calibrate OD flow models by processing flow data as different types of dependent variables.

The Poisson regression method is used for modelling when the dependent variable represents count outcomes that are discrete and non-negative, such as the number of occurrences of an event within a fixed unit of time or space.

Separating intra-flow from passenger volume

The code chunk below is used to add three new fields into the od_data dataframe.

Firstly, a new column FlowNoIntra is created to differentiate intra-zone trips from inter-zone trips based on the comparison of origin and destination zones. The ifelse() function is used to check if the values in columns ORIGIN_hex and DESTIN_hex are equal; if so, it is an indication that such trips start and end in the same zone, hence, the FlowNoIntra column is set to a value of 0. Otherwise, it holds the value from the TOTAL_TRIPS column.

Next, an offset column is created using another ifelse() statement where for intra-zone trips, the offset column is set to a negligible offset value of 0.000001. Otherwise, for inter-zone trips, it is set to 1.

Code
od_data$FlowNoIntra <- ifelse(
  od_data$ORIGIN_hex == od_data$DESTIN_hex, 0, od_data$TOTAL_TRIPS)
od_data$offset <- ifelse(
  od_data$ORIGIN_hex == od_data$DESTIN_hex, 0.000001, 1)

Next, inter-zonal flow will be selected from od_data and save into a new output data.frame called inter_zonal_flow by using the code chunk below.

Code
od_data <- od_data %>%
  filter(FlowNoIntra > 0)

Combining passenger volume data with distance value

Before joining od_data and distPair, convert the data value type of ORIGIN_hex and DESTIN_hex fields of od_data dataframe into factor data type.

Code
od_data$ORIGIN_hex <- as.factor(od_data$ORIGIN_hex)
od_data$DESTIN_hex <- as.factor(od_data$DESTIN_hex)

Next, left_join() of dplyr will be used to join od_data data frame and distPair data frame to give an output called flow_data.

Code
flow_data <- od_data %>%
  left_join (distPair,
             by = c("ORIGIN_hex" = "orig",
                    "DESTIN_hex" = "dest"))

Prepare origin attributes

Next, left_join() is used to join flow_data to the origin attributes prepared earlier (propulsive tibble data frame) using the hexagon grid index as a common identifier.

Code
flow_data <- flow_data %>%
  left_join(propulsive, by = c("ORIGIN_hex" = "index"))

Prepare destination attributes

Lastly, left_join() is used to join flow_data to the destination attributes prepared earlier (attractiveness tibble data frame) using the hexagon grid index as a common identifier.

Code
flow_data <- flow_data %>%
  left_join(attractiveness, by = c("DESTIN_hex" = "index"))

Visualising the dependent variable

The code chunk below plots the distribution of the dependent variable (i.e. TOTAL_TRIPS) as a histogram.

Code
ggplot(data = flow_data,
       aes(x = TOTAL_TRIPS)) +
  geom_histogram() + 
  labs(title = "Distribution of Trips across TAZ",
       x = "Total Trips",
       y = "Counts") +
  theme(plot.title = element_text(hjust = 0.5))

The distribution shown is highly skewed and does not resemble a normal distribution (bell-shaped curve).

The code chunk below visualises the relationship between the dependent variable and a key independent variable (i.e. dist) of the SIM. Specifying the argument method = lm within the geom_smooth() function fits a linear regression line to the data.

Code
ggplot(data = flow_data,
       aes(x = dist,
           y = TOTAL_TRIPS)) +
  geom_point() +
  geom_smooth(method = lm) + 
  labs(title = "Relationship between Distance and Total Trips", 
       x = "Distance", 
       y = "Total Trips") +
  theme(plot.title = element_text(hjust = 0.5))

The relationship between these two variables appears to be non-linear.

The scatterplot is re-plotted after applying a log transformation on both variables.

Code
ggplot(data = flow_data,
       aes(x = log(dist),
           y = log(TOTAL_TRIPS))) +
  geom_point() +
  geom_smooth(method = lm) + 
  labs(title = "Relationship between Log Distance and Log Total Trips", 
       x = "Log Distance", 
       y = "Log Total Trips") +
  theme(plot.title = element_text(hjust = 0.5))

While the relationship is still non-linear, it is less skewed than before.

Check for variables with zero values

Since Poisson Regression is based on log and log 0 is undefined, it is important to ensure that no 0 values in the explanatory variables before running the model. In the code chunk below, summary() is used to compute the summary statistics of all variables in the flow_data data frame.

Code
summary(flow_data)
   ORIGIN_hex      DESTIN_hex     TOTAL_TRIPS       FlowNoIntra     
 2634   :  285   2010   :  364   Min.   :    1.0   Min.   :    1.0  
 1849   :  284   1982   :  355   1st Qu.:    7.0   1st Qu.:    7.0  
 2010   :  283   2009   :  342   Median :   37.0   Median :   37.0  
 2038   :  282   1984   :  317   Mean   :  378.3   Mean   :  378.3  
 1987   :  281   2634   :  299   3rd Qu.:  177.0   3rd Qu.:  177.0  
 1990   :  280   1849   :  298   Max.   :89347.0   Max.   :89347.0  
 (Other):63356   (Other):63076                                      
     offset       dist       o_housing_count  o_biz_count      o_school_count  
 Min.   :1   Min.   :  750   Min.   :   0    Min.   :  0.000   Min.   :0.0000  
 1st Qu.:1   1st Qu.: 3000   1st Qu.:   0    1st Qu.:  0.000   1st Qu.:0.0000  
 Median :1   Median : 5408   Median : 976    Median :  1.000   Median :0.0000  
 Mean   :1   Mean   : 6280   Mean   :1848    Mean   :  6.571   Mean   :0.5865  
 3rd Qu.:1   3rd Qu.: 8842   3rd Qu.:3399    3rd Qu.:  6.000   3rd Qu.:1.0000  
 Max.   :1   Max.   :25200   Max.   :8324    Max.   :126.000   Max.   :5.0000  
                                                                               
 o_busstop_count  o_mrtlrt_count    d_biz_count      d_school_count  
 Min.   : 1.000   Min.   :0.0000   Min.   :  0.000   Min.   :0.0000  
 1st Qu.: 5.000   1st Qu.:0.0000   1st Qu.:  0.000   1st Qu.:0.0000  
 Median : 8.000   Median :0.0000   Median :  1.000   Median :0.0000  
 Mean   : 7.825   Mean   :0.4422   Mean   :  7.355   Mean   :0.5578  
 3rd Qu.:10.000   3rd Qu.:1.0000   3rd Qu.:  7.000   3rd Qu.:1.0000  
 Max.   :20.000   Max.   :4.0000   Max.   :126.000   Max.   :5.0000  
                                                                     
  d_fin_count      d_busstop_count  d_mrtlrt_count  
 Min.   :  0.000   Min.   : 1.000   Min.   :0.0000  
 1st Qu.:  0.000   1st Qu.: 5.000   1st Qu.:0.0000  
 Median :  3.000   Median : 8.000   Median :0.0000  
 Mean   :  8.999   Mean   : 7.766   Mean   :0.4669  
 3rd Qu.:  9.000   3rd Qu.:10.000   3rd Qu.:1.0000  
 Max.   :176.000   Max.   :20.000   Max.   :4.0000  
                                                    

The print report above reveals that all the count variables except o_busstop_count and d_busstop_count consist of 0 values, which should be replaced to a negligible value of 0.99.

In the code chunk below, vars(ends_with("_count")) selects all columns with names ending in “_count”, while ifelse() function checks if the values in these columns are equal to 0. If so, it replaces them with 0.99; otherwise, it leaves them unchanged.

Code
flow_data <- flow_data %>%
  mutate_at(vars(ends_with("_count")), ~ ifelse(. == 0, 0.99, .))

Run summary() again to check that the replacement has been done correctly.

Code
summary(flow_data)
   ORIGIN_hex      DESTIN_hex     TOTAL_TRIPS       FlowNoIntra     
 2634   :  285   2010   :  364   Min.   :    1.0   Min.   :    1.0  
 1849   :  284   1982   :  355   1st Qu.:    7.0   1st Qu.:    7.0  
 2010   :  283   2009   :  342   Median :   37.0   Median :   37.0  
 2038   :  282   1984   :  317   Mean   :  378.3   Mean   :  378.3  
 1987   :  281   2634   :  299   3rd Qu.:  177.0   3rd Qu.:  177.0  
 1990   :  280   1849   :  298   Max.   :89347.0   Max.   :89347.0  
 (Other):63356   (Other):63076                                      
     offset       dist       o_housing_count    o_biz_count     
 Min.   :1   Min.   :  750   Min.   :   0.99   Min.   :  0.990  
 1st Qu.:1   1st Qu.: 3000   1st Qu.:   0.99   1st Qu.:  0.990  
 Median :1   Median : 5408   Median : 976.00   Median :  1.000  
 Mean   :1   Mean   : 6280   Mean   :1848.20   Mean   :  6.987  
 3rd Qu.:1   3rd Qu.: 8842   3rd Qu.:3399.00   3rd Qu.:  6.000  
 Max.   :1   Max.   :25200   Max.   :8324.00   Max.   :126.000  
                                                                
 o_school_count  o_busstop_count  o_mrtlrt_count   d_biz_count     
 Min.   :0.990   Min.   : 1.000   Min.   :0.990   Min.   :  0.990  
 1st Qu.:0.990   1st Qu.: 5.000   1st Qu.:0.990   1st Qu.:  0.990  
 Median :0.990   Median : 8.000   Median :0.990   Median :  1.000  
 Mean   :1.183   Mean   : 7.825   Mean   :1.103   Mean   :  7.749  
 3rd Qu.:1.000   3rd Qu.:10.000   3rd Qu.:1.000   3rd Qu.:  7.000  
 Max.   :5.000   Max.   :20.000   Max.   :4.000   Max.   :126.000  
                                                                   
 d_school_count   d_fin_count      d_busstop_count  d_mrtlrt_count 
 Min.   :0.990   Min.   :  0.990   Min.   : 1.000   Min.   :0.990  
 1st Qu.:0.990   1st Qu.:  0.990   1st Qu.: 5.000   1st Qu.:0.990  
 Median :0.990   Median :  3.000   Median : 8.000   Median :0.990  
 Mean   :1.173   Mean   :  9.268   Mean   : 7.766   Mean   :1.122  
 3rd Qu.:1.000   3rd Qu.:  9.000   3rd Qu.:10.000   3rd Qu.:1.000  
 Max.   :5.000   Max.   :176.000   Max.   :20.000   Max.   :4.000  
                                                                   

All 0 values in the count columns have now been replaced by 0.99.

Apply log() transformation to explanatory variables

As Poisson Regression is based on log, log() will be applied to all the explanatory variables before calibrating the various SIM.

Code
flow_data_log <- flow_data %>%
  mutate_at(vars(ends_with("_count")), log) %>%
  mutate(dist = log(dist))

summary(flow_data_log)
   ORIGIN_hex      DESTIN_hex     TOTAL_TRIPS       FlowNoIntra     
 2634   :  285   2010   :  364   Min.   :    1.0   Min.   :    1.0  
 1849   :  284   1982   :  355   1st Qu.:    7.0   1st Qu.:    7.0  
 2010   :  283   2009   :  342   Median :   37.0   Median :   37.0  
 2038   :  282   1984   :  317   Mean   :  378.3   Mean   :  378.3  
 1987   :  281   2634   :  299   3rd Qu.:  177.0   3rd Qu.:  177.0  
 1990   :  280   1849   :  298   Max.   :89347.0   Max.   :89347.0  
 (Other):63356   (Other):63076                                      
     offset       dist        o_housing_count     o_biz_count      
 Min.   :1   Min.   : 6.620   Min.   :-0.01005   Min.   :-0.01005  
 1st Qu.:1   1st Qu.: 8.006   1st Qu.:-0.01005   1st Qu.:-0.01005  
 Median :1   Median : 8.596   Median : 6.88346   Median : 0.00000  
 Mean   :1   Mean   : 8.484   Mean   : 4.87339   Mean   : 0.91389  
 3rd Qu.:1   3rd Qu.: 9.087   3rd Qu.: 8.13124   3rd Qu.: 1.79176  
 Max.   :1   Max.   :10.135   Max.   : 9.02690   Max.   : 4.83628  
                                                                   
 o_school_count     o_busstop_count o_mrtlrt_count      d_biz_count      
 Min.   :-0.01005   Min.   :0.000   Min.   :-0.01005   Min.   :-0.01005  
 1st Qu.:-0.01005   1st Qu.:1.609   1st Qu.:-0.01005   1st Qu.:-0.01005  
 Median :-0.01005   Median :2.079   Median :-0.01005   Median : 0.00000  
 Mean   : 0.11104   Mean   :1.934   Mean   : 0.05941   Mean   : 0.99195  
 3rd Qu.: 0.00000   3rd Qu.:2.303   3rd Qu.: 0.00000   3rd Qu.: 1.94591  
 Max.   : 1.60944   Max.   :2.996   Max.   : 1.38629   Max.   : 4.83628  
                                                                         
 d_school_count      d_fin_count       d_busstop_count d_mrtlrt_count    
 Min.   :-0.01005   Min.   :-0.01005   Min.   :0.000   Min.   :-0.01005  
 1st Qu.:-0.01005   1st Qu.:-0.01005   1st Qu.:1.609   1st Qu.:-0.01005  
 Median :-0.01005   Median : 1.09861   Median :2.079   Median :-0.01005  
 Mean   : 0.10488   Mean   : 1.29848   Mean   :1.920   Mean   : 0.07033  
 3rd Qu.: 0.00000   3rd Qu.: 2.19722   3rd Qu.:2.303   3rd Qu.: 0.00000  
 Max.   : 1.60944   Max.   : 5.17048   Max.   :2.996   Max.   : 1.38629  
                                                                         

Unconstrained Spatial Interaction Model

Next, calibrate an unconstrained SIM by using glm() of Base Stats. The explanatory variables are all the origin and destination variables created earlier and distance between origin and destination (i.e. dist).

The code chunk used to calibrate the model is shown below:

Code
# Generate propulsive variables names
origin_var <- propulsive %>%
  select(-(index)) %>%
  names()

# Generate attractiveness variables names
destin_var <- attractiveness %>%
  select(-(index)) %>%
  names()

# Generate the formula dynamically
formula_string <- paste("TOTAL_TRIPS ~", paste(origin_var, collapse = " + "), 
                        "+", paste(destin_var, collapse = " + "), "+ dist")

# Convert the string to a formula
formula <- as.formula(formula_string)

uncSIM <- glm(formula,
              family = poisson(link = "log"),
              data = flow_data_log,
              na.action = na.exclude)

uncSIM

Call:  glm(formula = formula, family = poisson(link = "log"), data = flow_data_log, 
    na.action = na.exclude)

Coefficients:
    (Intercept)  o_housing_count      o_biz_count   o_school_count  
       14.83292          0.12078         -0.13711          0.18786  
o_busstop_count   o_mrtlrt_count      d_biz_count   d_school_count  
        0.55197          0.08988          0.04594          0.36963  
    d_fin_count  d_busstop_count   d_mrtlrt_count             dist  
        0.31038          0.23907         -0.01979         -1.45763  

Degrees of Freedom: 65050 Total (i.e. Null);  65039 Residual
Null Deviance:      98250000 
Residual Deviance: 49120000     AIC: 49470000

Positive coefficients suggest that as the counts of the explanatory variable increase by one unit, the number of trips is also expected to increase by the value of the coefficient, holding other variables constant. Conversely, negative coefficients suggest that as the counts of the explanatory variable increase by one unit, the number of trips is expected to decrease by the value of the coefficient, holding other variables constant.

Insights
  • By absolute value, the most influential variable is the Distance between origin and destination. The negative coefficient means there is an inverse relationship between Distance and Number of Trips: More trips are made when the distance is nearer, while less trips are made when the distance is further.
  • The most propulsive origin variable is Bus Stop counts with a coefficient of 0.551: More trips are made when there is higher bus stop density at the origin site, while less trips are made when there is lower bus stop density at the origin site.
  • There is an inverse relationship between Business counts at the origin and number of trips: More trips are made when there are fewer businesses at the origin site, while less trips are made when there are more businesses at the origin.
  • Conversely, the most attractive destination variables are School and Financial Services counts with a coefficient of 0.369 and 0.310 respectively: More trips are made when there is higher school / financial services density at the destination site, while less trips are made when there is lower school / financial services density at the destination site.
  • Notably, there appears to be an inverse relationship between the number of trips with the Business density at the origin and the MRT / LRT station density at the destination. This means that more trips are made when there are less businesses at the origin, while less trips are made when there are more businesses at the origin. Similarly, more bus trips are made when there are less MRT / LRT stations at the destination – suggesting a complementary role between bus services and MRT / LRT services.

In statistical modelling, the goodness-of-fit of a model looks at how well the proportion of variance in the dependent variable (i.e. TOTAL_TRIPS) can be explained by the explanatory variables. This can be answered by comparing the R2 statistics. However, R2 is not an output of glm(). Hence, in the code chunk below, a function called CalcRSquared is written to measure how much variation of the trips can be accounted for by the model.

Code
CalcRSquared <- function(observed,estimated){
  r <- cor(observed,estimated)
  R2 <- r^2
  R2
}

Next, compute the R-squared of the unconstrained SIM by using the code chunk below.

Code
CalcRSquared(uncSIM$data$TOTAL_TRIPS, uncSIM$fitted.values)
[1] 0.237972
Insights

With reference to the R2 above, it can be concluded that the model accounts for 23.79% of the variation of flows.

Origin (Production) Constrained Spatial Interaction Model

Next, fit an origin constrained SIM by using the code chunk below.

  • For origin constrained SIM, only explanatory variables representing the attractiveness at the destinations will be used. This is because such models emphasize the limitations or capacities of the origins rather than the demand or attractiveness of the destinations. The capacity or limitation at the origin sites determines the potential for generating interactions or flows.
  • Additionally, “-1” is added to the formula to remove the intercept that is inserted by glm into the model by default. Since the origin has already been constrained, the concept of an intercept would not be relevant.
Code
# Generate the formula dynamically
formula_string <- paste("TOTAL_TRIPS ~ ORIGIN_hex +", 
                        paste(destin_var, collapse = " + "), "+ dist - 1")

# Convert the string to a formula
formula <- as.formula(formula_string)

orcSIM <- glm(formula,
              family = poisson(link = "log"),
              data = flow_data_log,
              na.action = na.exclude)

summary() is used to print out the results of the model.

Code
options(max.print=9999, scipen = 999, digits = 10)

summary(orcSIM)

Call:
glm(formula = formula, family = poisson(link = "log"), data = flow_data_log, 
    na.action = na.exclude)

Deviance Residuals: 
       Min          1Q      Median          3Q         Max  
-166.23959   -12.10816    -5.36754     0.60571   618.58598  

Coefficients:
                     Estimate    Std. Error     z value               Pr(>|z|)
ORIGIN_hex118   13.9366038450  0.1270153766   109.72375 < 0.000000000000000222
ORIGIN_hex146   14.7724327742  0.1414385229   104.44420 < 0.000000000000000222
ORIGIN_hex174   14.1811015041  0.1507727138    94.05615 < 0.000000000000000222
ORIGIN_hex175   12.7981750246  0.1104490056   115.87406 < 0.000000000000000222
ORIGIN_hex200   14.0645945955  0.0803371769   175.06956 < 0.000000000000000222
ORIGIN_hex201   15.0041443507  0.0259650906   577.85835 < 0.000000000000000222
ORIGIN_hex202   16.3629847660  0.0227318405   719.82666 < 0.000000000000000222
ORIGIN_hex203   13.9838534024  0.0496043336   281.90790 < 0.000000000000000222
ORIGIN_hex227   14.5175802768  0.0643115124   225.73844 < 0.000000000000000222
ORIGIN_hex228   14.1747020359  0.0319354049   443.85540 < 0.000000000000000222
ORIGIN_hex229   14.2080246363  0.0762749124   186.27389 < 0.000000000000000222
ORIGIN_hex230   16.5682661182  0.0130600811  1268.61893 < 0.000000000000000222
ORIGIN_hex231   13.4089529693  0.0685507709   195.60616 < 0.000000000000000222
ORIGIN_hex254   16.8102537450  0.0159997761  1050.65556 < 0.000000000000000222
ORIGIN_hex255   13.9459358616  0.0672993562   207.22243 < 0.000000000000000222
ORIGIN_hex256   13.9915576944  0.0500906588   279.32469 < 0.000000000000000222
ORIGIN_hex257   15.7845295619  0.0185539684   850.73604 < 0.000000000000000222
ORIGIN_hex258   13.3447722108  0.0702141352   190.05820 < 0.000000000000000222
ORIGIN_hex259   13.5843468688  0.0493097055   275.49033 < 0.000000000000000222
ORIGIN_hex281   15.6546677854  0.0446788383   350.38216 < 0.000000000000000222
ORIGIN_hex282   14.3220124593  0.0518166927   276.39766 < 0.000000000000000222
ORIGIN_hex284   14.4397501353  0.0375854726   384.18434 < 0.000000000000000222
ORIGIN_hex285   15.0946379471  0.0225632418   668.99243 < 0.000000000000000222
ORIGIN_hex286   17.5298391153  0.0061030080  2872.32772 < 0.000000000000000222
ORIGIN_hex312   13.1751808870  0.0672985707   195.77208 < 0.000000000000000222
ORIGIN_hex313   13.6131827521  0.0496728307   274.05692 < 0.000000000000000222
ORIGIN_hex314   14.4287843204  0.0347131528   415.65756 < 0.000000000000000222
ORIGIN_hex336   13.8038852484  0.1324702304   104.20368 < 0.000000000000000222
ORIGIN_hex338   14.3249593202  0.0404754517   353.91722 < 0.000000000000000222
ORIGIN_hex339   16.7243501681  0.0078763664  2123.35859 < 0.000000000000000222
ORIGIN_hex340   12.4957978248  0.1443512868    86.56520 < 0.000000000000000222
ORIGIN_hex366   17.2541268742  0.0068662177  2512.90124 < 0.000000000000000222
ORIGIN_hex367   14.6178866306  0.0256597487   569.68160 < 0.000000000000000222
ORIGIN_hex391   14.3570155902  0.0864163279   166.13777 < 0.000000000000000222
ORIGIN_hex392   17.0803817912  0.0077756831  2196.64068 < 0.000000000000000222
ORIGIN_hex393   14.6843821525  0.0254803344   576.30257 < 0.000000000000000222
ORIGIN_hex394   12.1220097544  0.2425429317    49.97882 < 0.000000000000000222
ORIGIN_hex419   12.9360137792  0.0860895662   150.26227 < 0.000000000000000222
ORIGIN_hex420   14.7421233994  0.0311575024   473.14843 < 0.000000000000000222
ORIGIN_hex421   13.9219648479  0.1204063391   115.62485 < 0.000000000000000222
ORIGIN_hex445   15.1874988120  0.0324022221   468.71782 < 0.000000000000000222
ORIGIN_hex446   15.9409967658  0.0129167397  1234.13471 < 0.000000000000000222
ORIGIN_hex447   13.7539372110  0.0555966795   247.38775 < 0.000000000000000222
ORIGIN_hex472   13.0895312866  0.1336467077    97.94129 < 0.000000000000000222
ORIGIN_hex473   13.8823193646  0.0488365696   284.26074 < 0.000000000000000222
ORIGIN_hex474   13.6713025472  0.0497331481   274.89317 < 0.000000000000000222
ORIGIN_hex499   14.0271765285  0.0422268382   332.18629 < 0.000000000000000222
ORIGIN_hex500   16.0901119155  0.0108577453  1481.90176 < 0.000000000000000222
ORIGIN_hex526   14.7821542251  0.0296256364   498.96495 < 0.000000000000000222
ORIGIN_hex527   14.5320400510  0.0504200501   288.21947 < 0.000000000000000222
ORIGIN_hex528   14.6552449305  0.0336942210   434.94832 < 0.000000000000000222
ORIGIN_hex552   14.1076316515  0.0547551111   257.64959 < 0.000000000000000222
ORIGIN_hex553   11.8380040852  0.1291152595    91.68555 < 0.000000000000000222
ORIGIN_hex554   14.5030024103  0.0365685920   396.59723 < 0.000000000000000222
ORIGIN_hex555   14.1516010769  0.0406715593   347.94833 < 0.000000000000000222
ORIGIN_hex581   14.4698579965  0.0303441269   476.85860 < 0.000000000000000222
ORIGIN_hex582   14.0263363936  0.0310332399   451.97783 < 0.000000000000000222
ORIGIN_hex607   14.3969622526  0.0426472801   337.58219 < 0.000000000000000222
ORIGIN_hex608   13.8914937966  0.0411139037   337.87825 < 0.000000000000000222
ORIGIN_hex609   18.6593137625  0.0032343889  5769.03838 < 0.000000000000000222
ORIGIN_hex610   14.3431170006  0.0534901000   268.14526 < 0.000000000000000222
ORIGIN_hex611   13.2113692050  0.2672716131    49.43050 < 0.000000000000000222
ORIGIN_hex634   15.1746946281  0.0343392210   441.90562 < 0.000000000000000222
ORIGIN_hex635   13.0063760475  0.0619292756   210.01983 < 0.000000000000000222
ORIGIN_hex636   15.1722421188  0.0138614762  1094.56178 < 0.000000000000000222
ORIGIN_hex638   15.2277011780  0.0223668947   680.81427 < 0.000000000000000222
ORIGIN_hex661   14.2974102581  0.0578703891   247.05917 < 0.000000000000000222
ORIGIN_hex662   14.2980793531  0.0363742022   393.08297 < 0.000000000000000222
ORIGIN_hex663   14.2019040267  0.0240744165   589.91685 < 0.000000000000000222
ORIGIN_hex664   14.4493189375  0.0457374314   315.91890 < 0.000000000000000222
ORIGIN_hex665   16.0763453980  0.0128956841  1246.64541 < 0.000000000000000222
ORIGIN_hex689   13.6115409380  0.0402421232   338.24112 < 0.000000000000000222
ORIGIN_hex690   14.0765386666  0.0316916175   444.17230 < 0.000000000000000222
ORIGIN_hex692   16.3439901989  0.0125038303  1307.11869 < 0.000000000000000222
ORIGIN_hex693   15.4124118062  0.0249905803   616.72885 < 0.000000000000000222
ORIGIN_hex715   13.9297297024  0.0553212217   251.79722 < 0.000000000000000222
ORIGIN_hex716   14.4524792597  0.0362127470   399.09923 < 0.000000000000000222
ORIGIN_hex717   15.1216437349  0.0171843287   879.96709 < 0.000000000000000222
ORIGIN_hex718   18.4758103791  0.0040185204  4597.66494 < 0.000000000000000222
ORIGIN_hex719   15.9780639760  0.0179327501   890.99909 < 0.000000000000000222
ORIGIN_hex720   11.7524781736  0.2582068688    45.51575 < 0.000000000000000222
ORIGIN_hex743   15.0737405181  0.0239868106   628.41787 < 0.000000000000000222
ORIGIN_hex744   14.7538191780  0.0252595868   584.08791 < 0.000000000000000222
ORIGIN_hex745   16.7702224080  0.0061774940  2714.72905 < 0.000000000000000222
ORIGIN_hex746   17.9904158440  0.0040863943  4402.51584 < 0.000000000000000222
ORIGIN_hex747   14.9589736422  0.0242710418   616.33010 < 0.000000000000000222
ORIGIN_hex748   13.7228298831  0.0597952196   229.49711 < 0.000000000000000222
ORIGIN_hex769   13.6609312603  0.0664019117   205.73099 < 0.000000000000000222
ORIGIN_hex770   14.7189717423  0.0245448867   599.67568 < 0.000000000000000222
ORIGIN_hex771   15.6544773835  0.0112489650  1391.63713 < 0.000000000000000222
ORIGIN_hex772   17.7232960619  0.0039684593  4466.03948 < 0.000000000000000222
ORIGIN_hex773   16.7518142194  0.0095406990  1755.82672 < 0.000000000000000222
ORIGIN_hex774   14.4629329738  0.0393713837   367.34632 < 0.000000000000000222
ORIGIN_hex775   15.1762305040  0.0254527823   596.25036 < 0.000000000000000222
ORIGIN_hex776   12.7295260947  0.2041355695    62.35820 < 0.000000000000000222
ORIGIN_hex777   12.9567368541  0.2085275273    62.13442 < 0.000000000000000222
ORIGIN_hex797   14.1246149718  0.0353986721   399.01539 < 0.000000000000000222
ORIGIN_hex798   13.5625514381  0.1078508311   125.75287 < 0.000000000000000222
ORIGIN_hex799   17.6802199736  0.0042956563  4115.83670 < 0.000000000000000222
ORIGIN_hex800   18.3746434120  0.0035175631  5223.68550 < 0.000000000000000222
ORIGIN_hex802   12.7918863617  0.0857738282   149.13508 < 0.000000000000000222
ORIGIN_hex803   12.2856360847  0.1313218010    93.55367 < 0.000000000000000222
ORIGIN_hex805   13.1094664846  0.0976107535   134.30351 < 0.000000000000000222
ORIGIN_hex806   15.3756989012  0.0436191335   352.49895 < 0.000000000000000222
ORIGIN_hex823   13.8123658636  0.0558679551   247.23235 < 0.000000000000000222
ORIGIN_hex824   13.6395184928  0.0523594178   260.49790 < 0.000000000000000222
ORIGIN_hex825   15.5323502359  0.0210751493   736.99835 < 0.000000000000000222
ORIGIN_hex826   18.7202357726  0.0026927158  6952.17654 < 0.000000000000000222
ORIGIN_hex827   17.9820864572  0.0041712390  4310.97011 < 0.000000000000000222
ORIGIN_hex832   12.3904342198  1.0000023263    12.39041 < 0.000000000000000222
ORIGIN_hex833   12.6977880164  0.1280528801    99.16050 < 0.000000000000000222
ORIGIN_hex851   12.3311089432  0.0980767963   125.72912 < 0.000000000000000222
ORIGIN_hex852   15.1920348314  0.0216729532   700.96746 < 0.000000000000000222
ORIGIN_hex853   15.7731292432  0.0090816336  1736.81631 < 0.000000000000000222
ORIGIN_hex854   17.0996487663  0.0049065281  3485.08116 < 0.000000000000000222
ORIGIN_hex856   11.7187939348  0.2041342199    57.40730 < 0.000000000000000222
ORIGIN_hex861   13.1092242594  0.1091280534   120.12699 < 0.000000000000000222
ORIGIN_hex862   15.0352693364  0.1010467995   148.79511 < 0.000000000000000222
ORIGIN_hex878   14.1868546739  0.0382308458   371.08399 < 0.000000000000000222
ORIGIN_hex879   14.2859123018  0.0251636143   567.72100 < 0.000000000000000222
ORIGIN_hex880   16.3075478175  0.0065182812  2501.81716 < 0.000000000000000222
ORIGIN_hex881   15.9868102466  0.0112198283  1424.87120 < 0.000000000000000222
ORIGIN_hex888   13.7972218246  0.1857111846    74.29397 < 0.000000000000000222
ORIGIN_hex889   15.5127869366  0.0591791702   262.13255 < 0.000000000000000222
ORIGIN_hex905   13.9474062868  0.0451314294   309.03976 < 0.000000000000000222
ORIGIN_hex906   11.6887837221  0.1270173726    92.02508 < 0.000000000000000222
ORIGIN_hex907   14.1038012619  0.0251065238   561.75842 < 0.000000000000000222
ORIGIN_hex908   17.9412459325  0.0035499503  5053.94281 < 0.000000000000000222
ORIGIN_hex910   13.8093769117  0.0658333289   209.76270 < 0.000000000000000222
ORIGIN_hex932   15.2289968379  0.0173364634   878.43734 < 0.000000000000000222
ORIGIN_hex933   15.1713886772  0.0148312274  1022.93548 < 0.000000000000000222
ORIGIN_hex934   16.4995524378  0.0061093352  2700.71160 < 0.000000000000000222
ORIGIN_hex935   17.5487381623  0.0042634970  4116.04324 < 0.000000000000000222
ORIGIN_hex937   17.7054062984  0.0069394186  2551.42503 < 0.000000000000000222
ORIGIN_hex959   15.7591370993  0.0149801551  1052.00093 < 0.000000000000000222
ORIGIN_hex960   16.4028299786  0.0068670638  2388.62349 < 0.000000000000000222
ORIGIN_hex961   17.4393923777  0.0043070758  4049.00988 < 0.000000000000000222
ORIGIN_hex962   17.8625860023  0.0037148873  4808.37898 < 0.000000000000000222
ORIGIN_hex986   12.5561997709  0.0894653714   140.34704 < 0.000000000000000222
ORIGIN_hex987   17.4955979303  0.0042207052  4145.18357 < 0.000000000000000222
ORIGIN_hex988   16.5519406633  0.0067086353  2467.25898 < 0.000000000000000222
ORIGIN_hex989   17.8392654041  0.0037309583  4781.41643 < 0.000000000000000222
ORIGIN_hex991   14.6013058815  0.0318207140   458.86167 < 0.000000000000000222
ORIGIN_hex1013  12.7087136520  0.1042778563   121.87356 < 0.000000000000000222
ORIGIN_hex1014  15.7600094234  0.0107666518  1463.77998 < 0.000000000000000222
ORIGIN_hex1015  16.5511285854  0.0075811796  2183.18646 < 0.000000000000000222
ORIGIN_hex1016  16.7102776429  0.0053370532  3130.99328 < 0.000000000000000222
ORIGIN_hex1042  16.4276382867  0.0083711705  1962.40637 < 0.000000000000000222
ORIGIN_hex1043  17.0761129714  0.0051067527  3343.83000 < 0.000000000000000222
ORIGIN_hex1045  13.9565540972  0.0403796199   345.63362 < 0.000000000000000222
ORIGIN_hex1067  15.6213615904  0.0145736519  1071.89068 < 0.000000000000000222
ORIGIN_hex1068  14.4737000654  0.0264508616   547.19201 < 0.000000000000000222
ORIGIN_hex1069  14.2408811183  0.0195412622   728.75953 < 0.000000000000000222
ORIGIN_hex1070  17.3978231965  0.0040596424  4285.55563 < 0.000000000000000222
ORIGIN_hex1078  13.7293427113  0.0743608075   184.63144 < 0.000000000000000222
ORIGIN_hex1093  13.8441783117  0.0436506288   317.15874 < 0.000000000000000222
ORIGIN_hex1094  16.7475625353  0.0067092830  2496.17767 < 0.000000000000000222
ORIGIN_hex1095  13.5351063129  0.0275579154   491.15131 < 0.000000000000000222
ORIGIN_hex1096  17.0518727782  0.0045156099  3776.20590 < 0.000000000000000222
ORIGIN_hex1097  17.2221290648  0.0054694112  3148.80858 < 0.000000000000000222
ORIGIN_hex1099  18.6889218251  0.0035435166  5274.11725 < 0.000000000000000222
ORIGIN_hex1100  14.8101239584  0.0411842176   359.60678 < 0.000000000000000222
ORIGIN_hex1122  17.4568308528  0.0045591249  3828.98718 < 0.000000000000000222
ORIGIN_hex1123  17.8005623208  0.0033681608  5284.95028 < 0.000000000000000222
ORIGIN_hex1124  16.9813784576  0.0050209435  3382.10902 < 0.000000000000000222
ORIGIN_hex1125  17.6668283583  0.0046999467  3758.94231 < 0.000000000000000222
ORIGIN_hex1126  16.6180755166  0.0131663280  1262.16479 < 0.000000000000000222
ORIGIN_hex1127  17.7268404539  0.0041656113  4255.51959 < 0.000000000000000222
ORIGIN_hex1128  18.0335989775  0.0056032822  3218.39923 < 0.000000000000000222
ORIGIN_hex1132  11.4232884898  0.2425430237    47.09799 < 0.000000000000000222
ORIGIN_hex1147  12.5004210863  0.0795812283   157.07751 < 0.000000000000000222
ORIGIN_hex1148  15.9804775135  0.0089535880  1784.81269 < 0.000000000000000222
ORIGIN_hex1149  15.0754853153  0.0124414707  1211.71248 < 0.000000000000000222
ORIGIN_hex1150  17.7941517324  0.0035393753  5027.48378 < 0.000000000000000222
ORIGIN_hex1151  17.3660964382  0.0041406733  4194.02720 < 0.000000000000000222
ORIGIN_hex1152  17.4193748977  0.0048521202  3590.05428 < 0.000000000000000222
ORIGIN_hex1153  18.6492206770  0.0040959852  4553.04888 < 0.000000000000000222
ORIGIN_hex1154  18.1954658106  0.0034572052  5263.05634 < 0.000000000000000222
ORIGIN_hex1155  14.7551830120  0.0290125784   508.57882 < 0.000000000000000222
ORIGIN_hex1158  15.9595920370  0.0150812862  1058.23812 < 0.000000000000000222
ORIGIN_hex1174  14.0786137794  0.0372712170   377.73421 < 0.000000000000000222
ORIGIN_hex1175  14.7340018190  0.0315786240   466.58150 < 0.000000000000000222
ORIGIN_hex1176  16.4524149333  0.0060579292  2715.84802 < 0.000000000000000222
ORIGIN_hex1177  15.5236896026  0.0095558684  1624.51898 < 0.000000000000000222
ORIGIN_hex1178  17.2326794151  0.0044431003  3878.52582 < 0.000000000000000222
ORIGIN_hex1179  16.8160966477  0.0056942456  2953.17375 < 0.000000000000000222
ORIGIN_hex1180  16.2894149304  0.0077211085  2109.72490 < 0.000000000000000222
ORIGIN_hex1181  17.4400182496  0.0042739945  4080.49615 < 0.000000000000000222
ORIGIN_hex1182  17.7066513734  0.0049005709  3613.18134 < 0.000000000000000222
ORIGIN_hex1183  18.5005906255  0.0054865162  3372.01056 < 0.000000000000000222
ORIGIN_hex1185  14.7384613712  0.0258847934   569.38686 < 0.000000000000000222
ORIGIN_hex1201  14.3078638255  0.0328376002   435.71588 < 0.000000000000000222
ORIGIN_hex1202  16.3806644430  0.0073986413  2214.00981 < 0.000000000000000222
ORIGIN_hex1203  15.1959262954  0.0145194411  1046.59168 < 0.000000000000000222
ORIGIN_hex1205  17.8234898532  0.0034240873  5205.32580 < 0.000000000000000222
ORIGIN_hex1206  17.1665436720  0.0053773752  3192.36488 < 0.000000000000000222
ORIGIN_hex1207  16.7711692995  0.0056730388  2956.29378 < 0.000000000000000222
ORIGIN_hex1209  17.5405451025  0.0059681057  2939.04730 < 0.000000000000000222
ORIGIN_hex1210  14.9844626452  0.0275508289   543.88428 < 0.000000000000000222
ORIGIN_hex1211  14.4268984625  0.0293024566   492.34433 < 0.000000000000000222
ORIGIN_hex1212  13.9264917854  0.0376317675   370.07275 < 0.000000000000000222
ORIGIN_hex1228  13.7387158930  0.0449482067   305.65660 < 0.000000000000000222
ORIGIN_hex1229  14.8237684433  0.0166159164   892.14270 < 0.000000000000000222
ORIGIN_hex1230  16.3441705717  0.0068691827  2379.34718 < 0.000000000000000222
ORIGIN_hex1231  17.4611745240  0.0060835707  2870.21806 < 0.000000000000000222
ORIGIN_hex1232  17.6447338300  0.0037143834  4750.38039 < 0.000000000000000222
ORIGIN_hex1233  17.4403292344  0.0059852342  2913.89253 < 0.000000000000000222
ORIGIN_hex1235  17.6220129715  0.0048434157  3638.34414 < 0.000000000000000222
ORIGIN_hex1236  16.1396868943  0.0085041596  1897.85796 < 0.000000000000000222
ORIGIN_hex1237  16.8653375151  0.0073711863  2288.00858 < 0.000000000000000222
ORIGIN_hex1238  14.2495563893  0.0314401962   453.22734 < 0.000000000000000222
ORIGIN_hex1239  12.5156773440  0.0783505554   159.73948 < 0.000000000000000222
ORIGIN_hex1240  13.3295926508  0.1270185938   104.94206 < 0.000000000000000222
ORIGIN_hex1255  16.3541264203  0.0128766708  1270.05860 < 0.000000000000000222
ORIGIN_hex1256  15.6214117748  0.0097416240  1603.57367 < 0.000000000000000222
ORIGIN_hex1257  14.8923246021  0.0162319584   917.46937 < 0.000000000000000222
ORIGIN_hex1258  16.5287193130  0.0072894231  2267.49346 < 0.000000000000000222
ORIGIN_hex1259  17.3233302271  0.0044330542  3907.76414 < 0.000000000000000222
ORIGIN_hex1261  17.1703423828  0.0045907947  3740.16776 < 0.000000000000000222
ORIGIN_hex1262  17.4055668286  0.0046422028  3749.41973 < 0.000000000000000222
ORIGIN_hex1263  14.9881876719  0.0191700973   781.85246 < 0.000000000000000222
ORIGIN_hex1264  15.8945853055  0.0131052520  1212.84087 < 0.000000000000000222
ORIGIN_hex1265  13.7512794778  0.0342390010   401.62619 < 0.000000000000000222
ORIGIN_hex1266  15.1250324821  0.0227109235   665.98051 < 0.000000000000000222
ORIGIN_hex1282  16.4711124878  0.0114062791  1444.03906 < 0.000000000000000222
ORIGIN_hex1283  16.9533429954  0.0048057022  3527.75564 < 0.000000000000000222
ORIGIN_hex1284  16.6331443490  0.0061073611  2723.45848 < 0.000000000000000222
ORIGIN_hex1285  15.2775322174  0.0127897385  1194.51482 < 0.000000000000000222
ORIGIN_hex1286  16.7296690911  0.0053999414  3098.12048 < 0.000000000000000222
ORIGIN_hex1287  16.7843410293  0.0065251888  2572.23836 < 0.000000000000000222
ORIGIN_hex1288  14.1780482622  0.0212160289   668.27059 < 0.000000000000000222
ORIGIN_hex1289  17.3767488479  0.0040826647  4256.22725 < 0.000000000000000222
ORIGIN_hex1293  13.3914339598  0.0695324952   192.59246 < 0.000000000000000222
ORIGIN_hex1308  15.3391344461  0.0140635573  1090.70089 < 0.000000000000000222
ORIGIN_hex1309  17.5601581381  0.0041820445  4198.94096 < 0.000000000000000222
ORIGIN_hex1310  18.4828808785  0.0028140539  6568.06212 < 0.000000000000000222
ORIGIN_hex1311  15.2549586475  0.0200053761   762.54296 < 0.000000000000000222
ORIGIN_hex1312  15.3755282139  0.0134063090  1146.88750 < 0.000000000000000222
ORIGIN_hex1314  16.0876029152  0.0085097791  1890.48421 < 0.000000000000000222
ORIGIN_hex1315  17.6998219539  0.0036844712  4803.89743 < 0.000000000000000222
ORIGIN_hex1316  16.6062814089  0.0085150267  1950.23245 < 0.000000000000000222
ORIGIN_hex1318  14.5038194752  0.0467721070   310.09549 < 0.000000000000000222
ORIGIN_hex1319  18.3572064732  0.0039166067  4687.01807 < 0.000000000000000222
ORIGIN_hex1320  17.0805100179  0.0094021157  1816.66664 < 0.000000000000000222
ORIGIN_hex1335  12.1114237939  0.1581285423    76.59227 < 0.000000000000000222
ORIGIN_hex1336  16.1901084763  0.0073336596  2207.64384 < 0.000000000000000222
ORIGIN_hex1337  17.4591045144  0.0036321365  4806.84146 < 0.000000000000000222
ORIGIN_hex1338  16.8544551947  0.0066116002  2549.22480 < 0.000000000000000222
ORIGIN_hex1339  14.8392332918  0.0225341992   658.52055 < 0.000000000000000222
ORIGIN_hex1340  15.0416087498  0.0134782638  1115.99009 < 0.000000000000000222
ORIGIN_hex1341  16.6545312949  0.0062404458  2668.80472 < 0.000000000000000222
ORIGIN_hex1342  15.3268478570  0.0116082752  1320.33809 < 0.000000000000000222
ORIGIN_hex1343  17.3931112003  0.0045499696  3822.68736 < 0.000000000000000222
ORIGIN_hex1347  14.1748632592  0.0300822515   471.20353 < 0.000000000000000222
ORIGIN_hex1348  18.4365896619  0.0037270159  4946.74297 < 0.000000000000000222
ORIGIN_hex1362  15.8446138728  0.0086913200  1823.03884 < 0.000000000000000222
ORIGIN_hex1363  16.5008272729  0.0062012202  2660.90007 < 0.000000000000000222
ORIGIN_hex1364  16.7405282115  0.0053611522  3122.56166 < 0.000000000000000222
ORIGIN_hex1366  16.8033841897  0.0054685764  3072.71639 < 0.000000000000000222
ORIGIN_hex1367  14.7751485383  0.0161759622   913.40152 < 0.000000000000000222
ORIGIN_hex1368  15.6402726681  0.0117916167  1326.38917 < 0.000000000000000222
ORIGIN_hex1369  17.8421346013  0.0037740593  4727.57140 < 0.000000000000000222
ORIGIN_hex1370  18.2835719275  0.0042321711  4320.14003 < 0.000000000000000222
ORIGIN_hex1372  13.0095389457  0.1666778585    78.05199 < 0.000000000000000222
ORIGIN_hex1374  16.4196123410  0.0071945206  2282.23855 < 0.000000000000000222
ORIGIN_hex1375  18.7780096032  0.0035083201  5352.42202 < 0.000000000000000222
ORIGIN_hex1389  15.9504683115  0.0088163982  1809.18193 < 0.000000000000000222
ORIGIN_hex1390  14.4625429041  0.0245673288   588.69009 < 0.000000000000000222
ORIGIN_hex1391  15.1472821078  0.0112099600  1351.23427 < 0.000000000000000222
ORIGIN_hex1392  16.1188505364  0.0073399436  2196.04555 < 0.000000000000000222
ORIGIN_hex1394  16.2224085063  0.0080448210  2016.50336 < 0.000000000000000222
ORIGIN_hex1396  16.9887850188  0.0072943740  2329.02578 < 0.000000000000000222
ORIGIN_hex1397  16.9478704067  0.0074225700  2283.28872 < 0.000000000000000222
ORIGIN_hex1401  17.7865180019  0.0042279011  4206.93803 < 0.000000000000000222
ORIGIN_hex1402  17.8238903433  0.0041191530  4327.07653 < 0.000000000000000222
ORIGIN_hex1416  11.7915192777  0.1825850855    64.58096 < 0.000000000000000222
ORIGIN_hex1417  14.5277099943  0.0221742382   655.16163 < 0.000000000000000222
ORIGIN_hex1418  15.7473168520  0.0117700303  1337.91643 < 0.000000000000000222
ORIGIN_hex1419  15.4710679449  0.0107826729  1434.80824 < 0.000000000000000222
ORIGIN_hex1420  17.1440392351  0.0047186207  3633.27345 < 0.000000000000000222
ORIGIN_hex1422  14.3744960249  0.0315240194   455.98551 < 0.000000000000000222
ORIGIN_hex1423  19.3503873439  0.0053425978  3621.90604 < 0.000000000000000222
ORIGIN_hex1426  15.9884511839  0.0180319872   886.67161 < 0.000000000000000222
ORIGIN_hex1428  17.0944742372  0.0051337654  3329.81213 < 0.000000000000000222
ORIGIN_hex1429  17.2512603575  0.0060651188  2844.34006 < 0.000000000000000222
ORIGIN_hex1443  14.9080528633  0.0144024247  1035.10716 < 0.000000000000000222
ORIGIN_hex1444  13.7678019585  0.0263644788   522.21028 < 0.000000000000000222
ORIGIN_hex1445  16.7487658946  0.0057540760  2910.76552 < 0.000000000000000222
ORIGIN_hex1446  15.2449225335  0.0119276689  1278.11416 < 0.000000000000000222
ORIGIN_hex1447  16.8279853930  0.0052376415  3212.89370 < 0.000000000000000222
ORIGIN_hex1455  16.6726265399  0.0078049812  2136.15204 < 0.000000000000000222
ORIGIN_hex1456  17.4315338071  0.0048138276  3621.13796 < 0.000000000000000222
ORIGIN_hex1457  13.4924819744  0.0498542715   270.63843 < 0.000000000000000222
ORIGIN_hex1469  17.1702438768  0.0050019014  3432.74338 < 0.000000000000000222
ORIGIN_hex1470  16.5001256609  0.0060797755  2713.93666 < 0.000000000000000222
ORIGIN_hex1471  17.1833610001  0.0043046096  3991.85119 < 0.000000000000000222
ORIGIN_hex1472  15.2948555834  0.0112084394  1364.58386 < 0.000000000000000222
ORIGIN_hex1480  12.2864939240  0.1386895114    88.58993 < 0.000000000000000222
ORIGIN_hex1482  17.2373586975  0.0047566289  3623.86029 < 0.000000000000000222
ORIGIN_hex1483  17.3197990115  0.0065497625  2644.34002 < 0.000000000000000222
ORIGIN_hex1496  15.2124189619  0.0142703988  1066.01218 < 0.000000000000000222
ORIGIN_hex1497  13.4734956626  0.0490125586   274.89884 < 0.000000000000000222
ORIGIN_hex1498  15.6093030420  0.0082654113  1888.50894 < 0.000000000000000222
ORIGIN_hex1499  16.5916680197  0.0056693303  2926.56578 < 0.000000000000000222
ORIGIN_hex1500  14.0000928441  0.0248115474   564.25714 < 0.000000000000000222
ORIGIN_hex1501  16.2616873826  0.0071138575  2285.91694 < 0.000000000000000222
ORIGIN_hex1507  14.0309903438  0.0629029794   223.05764 < 0.000000000000000222
ORIGIN_hex1509  16.6832359305  0.0074841459  2229.14359 < 0.000000000000000222
ORIGIN_hex1510  18.7271728324  0.0028685038  6528.55083 < 0.000000000000000222
ORIGIN_hex1511  16.6026586471  0.0102607854  1618.06900 < 0.000000000000000222
ORIGIN_hex1523  13.7738237153  0.0459326492   299.87000 < 0.000000000000000222
ORIGIN_hex1524  13.8263418573  0.0364480560   379.34374 < 0.000000000000000222
ORIGIN_hex1525  17.2020723872  0.0038932865  4418.39367 < 0.000000000000000222
ORIGIN_hex1526  14.5786277667  0.0153017518   952.74240 < 0.000000000000000222
ORIGIN_hex1527  13.2289004509  0.0508045250   260.38823 < 0.000000000000000222
ORIGIN_hex1534  12.8421236474  0.0976092220   131.56670 < 0.000000000000000222
ORIGIN_hex1536  17.6502405473  0.0043319781  4074.40665 < 0.000000000000000222
ORIGIN_hex1537  17.0823287163  0.0063963491  2670.63732 < 0.000000000000000222
ORIGIN_hex1550  15.8716940680  0.0092334049  1718.94272 < 0.000000000000000222
ORIGIN_hex1551  14.2026280183  0.0204818097   693.42642 < 0.000000000000000222
ORIGIN_hex1552  14.0844128593  0.0223669835   629.69657 < 0.000000000000000222
ORIGIN_hex1553  16.2799807486  0.0058547949  2780.62357 < 0.000000000000000222
ORIGIN_hex1554  14.9810347760  0.0140560740  1065.80506 < 0.000000000000000222
ORIGIN_hex1555  15.0560447856  0.0132079483  1139.92306 < 0.000000000000000222
ORIGIN_hex1562  14.6667781469  0.0599109375   244.80969 < 0.000000000000000222
ORIGIN_hex1563  17.2061172882  0.0076437817  2250.99538 < 0.000000000000000222
ORIGIN_hex1564  18.1772385778  0.0034637708  5247.81795 < 0.000000000000000222
ORIGIN_hex1565  16.8269475498  0.0096834636  1737.69926 < 0.000000000000000222
ORIGIN_hex1576  15.2616146150  0.0270663967   563.85838 < 0.000000000000000222
ORIGIN_hex1578  14.9295656221  0.0108680202  1373.71530 < 0.000000000000000222
ORIGIN_hex1579  17.1761427057  0.0039772198  4318.63044 < 0.000000000000000222
ORIGIN_hex1581  16.3649896567  0.0065289593  2506.52347 < 0.000000000000000222
ORIGIN_hex1588  14.1493230364  0.1031648483   137.15256 < 0.000000000000000222
ORIGIN_hex1590  18.2834053788  0.0037283257  4903.91850 < 0.000000000000000222
ORIGIN_hex1591  18.0724750833  0.0039881720  4531.51844 < 0.000000000000000222
ORIGIN_hex1592  14.5499173471  0.0286453864   507.93231 < 0.000000000000000222
ORIGIN_hex1604  15.2424686575  0.0103172884  1477.37158 < 0.000000000000000222
ORIGIN_hex1605  16.5316221225  0.0050422607  3278.61310 < 0.000000000000000222
ORIGIN_hex1606  16.1611268731  0.0060264377  2681.70481 < 0.000000000000000222
ORIGIN_hex1607  15.2515030203  0.0093854967  1625.00755 < 0.000000000000000222
ORIGIN_hex1616  14.2353226094  0.0474473015   300.02386 < 0.000000000000000222
ORIGIN_hex1617  16.6832546145  0.0097297683  1714.66103 < 0.000000000000000222
ORIGIN_hex1618  18.1635747335  0.0036226051  5013.95377 < 0.000000000000000222
ORIGIN_hex1619  17.0039375955  0.0066866888  2542.95333 < 0.000000000000000222
ORIGIN_hex1620  14.6315922137  0.0276381797   529.39782 < 0.000000000000000222
ORIGIN_hex1630  14.6750197434  0.0145405377  1009.24877 < 0.000000000000000222
ORIGIN_hex1631  15.4758440324  0.0082060470  1885.90730 < 0.000000000000000222
ORIGIN_hex1632  16.7122018726  0.0049847821  3352.64440 < 0.000000000000000222
ORIGIN_hex1633  15.4473159873  0.0094145838  1640.78585 < 0.000000000000000222
ORIGIN_hex1634  16.6188078895  0.0056382430  2947.51535 < 0.000000000000000222
ORIGIN_hex1635  14.7552139865  0.0144567347  1020.64638 < 0.000000000000000222
ORIGIN_hex1642  13.5178502689  0.1037147991   130.33675 < 0.000000000000000222
ORIGIN_hex1644  17.1821395168  0.0064895891  2647.64675 < 0.000000000000000222
ORIGIN_hex1645  17.8525332680  0.0041698088  4281.37936 < 0.000000000000000222
ORIGIN_hex1646  15.9484301643  0.0119234460  1337.56887 < 0.000000000000000222
ORIGIN_hex1647  10.8150051184  0.4472182333    24.18284 < 0.000000000000000222
ORIGIN_hex1658  17.0071459064  0.0056405538  3015.15533 < 0.000000000000000222
ORIGIN_hex1659  16.6150763607  0.0048287653  3440.85400 < 0.000000000000000222
ORIGIN_hex1660  15.6075608814  0.0126901726  1229.89351 < 0.000000000000000222
ORIGIN_hex1661  15.0954453924  0.0117225587  1287.72615 < 0.000000000000000222
ORIGIN_hex1662  16.4474011230  0.0061698732  2665.75999 < 0.000000000000000222
ORIGIN_hex1669  12.1169208756  0.1889928452    64.11312 < 0.000000000000000222
ORIGIN_hex1670  13.7150977439  0.0916974424   149.56903 < 0.000000000000000222
ORIGIN_hex1672  17.3307891953  0.0089956202  1926.58081 < 0.000000000000000222
ORIGIN_hex1673  16.7704659228  0.0139029076  1206.25602 < 0.000000000000000222
ORIGIN_hex1674  16.0284126497  0.0125268627  1279.52330 < 0.000000000000000222
ORIGIN_hex1684  17.0458143504  0.0045066166  3782.39726 < 0.000000000000000222
ORIGIN_hex1685  15.9198161587  0.0069009929  2306.88776 < 0.000000000000000222
ORIGIN_hex1686  16.4917967075  0.0050925088  3238.44244 < 0.000000000000000222
ORIGIN_hex1687  13.9505627837  0.0208545588   668.94548 < 0.000000000000000222
ORIGIN_hex1688  14.0785956959  0.0187449006   751.06270 < 0.000000000000000222
ORIGIN_hex1689  14.1052053239  0.0476203691   296.20109 < 0.000000000000000222
ORIGIN_hex1695  11.6528071689  0.2236157953    52.11084 < 0.000000000000000222
ORIGIN_hex1699  16.8772982027  0.0061785145  2731.61101 < 0.000000000000000222
ORIGIN_hex1700  13.1512478850  0.0588608641   223.42941 < 0.000000000000000222
ORIGIN_hex1701  14.8159615480  0.0335055110   442.19476 < 0.000000000000000222
ORIGIN_hex1712  15.8651340099  0.0074783725  2121.46880 < 0.000000000000000222
ORIGIN_hex1713  17.0195003834  0.0039819895  4274.11989 < 0.000000000000000222
ORIGIN_hex1714  14.3865545603  0.0185302253   776.38314 < 0.000000000000000222
ORIGIN_hex1716  16.0421925145  0.0068345574  2347.21745 < 0.000000000000000222
ORIGIN_hex1723  14.5142133369  0.0464176320   312.68750 < 0.000000000000000222
ORIGIN_hex1726  14.6186954034  0.0299605739   487.93109 < 0.000000000000000222
ORIGIN_hex1727  18.0013390321  0.0043462545  4141.80513 < 0.000000000000000222
ORIGIN_hex1728  15.5692393645  0.0134816648  1154.84545 < 0.000000000000000222
ORIGIN_hex1738  15.3577839707  0.0087656713  1752.03739 < 0.000000000000000222
ORIGIN_hex1739  16.4047734284  0.0049604137  3307.13814 < 0.000000000000000222
ORIGIN_hex1740  15.1376759983  0.0097315398  1555.52731 < 0.000000000000000222
ORIGIN_hex1741  15.4533842835  0.0091801626  1683.34539 < 0.000000000000000222
ORIGIN_hex1743  14.1148841078  0.0338554516   416.91614 < 0.000000000000000222
ORIGIN_hex1744  12.3246575402  0.1361006131    90.55549 < 0.000000000000000222
ORIGIN_hex1748  11.5047682970  0.1767886828    65.07638 < 0.000000000000000222
ORIGIN_hex1749  17.3367573251  0.0060323170  2873.97984 < 0.000000000000000222
ORIGIN_hex1753  17.9709880299  0.0039854111  4509.19304 < 0.000000000000000222
ORIGIN_hex1754  16.8445618909  0.0064916460  2594.80598 < 0.000000000000000222
ORIGIN_hex1765  17.2921164682  0.0043801248  3947.85934 < 0.000000000000000222
ORIGIN_hex1766  17.0783823172  0.0042904978  3980.51304 < 0.000000000000000222
ORIGIN_hex1767  16.6808517641  0.0044547501  3744.50898 < 0.000000000000000222
ORIGIN_hex1768  13.1908893449  0.0314102502   419.95493 < 0.000000000000000222
ORIGIN_hex1770  14.7563170643  0.0156686517   941.77325 < 0.000000000000000222
ORIGIN_hex1771  13.4300348642  0.0478864024   280.45612 < 0.000000000000000222
ORIGIN_hex1776  12.0984811335  0.1240514271    97.52795 < 0.000000000000000222
ORIGIN_hex1777  16.0982092644  0.0110586816  1455.70782 < 0.000000000000000222
ORIGIN_hex1778  13.8908261487  0.0341694587   406.52754 < 0.000000000000000222
ORIGIN_hex1780  15.6109278117  0.0151218435  1032.34291 < 0.000000000000000222
ORIGIN_hex1781  17.7440718216  0.0044330192  4002.70580 < 0.000000000000000222
ORIGIN_hex1792  16.4070806381  0.0054482887  3011.41911 < 0.000000000000000222
ORIGIN_hex1793  17.0804168165  0.0037206976  4590.64898 < 0.000000000000000222
ORIGIN_hex1794  15.9341821825  0.0062861725  2534.79876 < 0.000000000000000222
ORIGIN_hex1795  15.0319021064  0.0100134209  1501.17550 < 0.000000000000000222
ORIGIN_hex1796  15.7880255407  0.0091174142  1731.63412 < 0.000000000000000222
ORIGIN_hex1798  11.3380481150  0.1561881727    72.59223 < 0.000000000000000222
ORIGIN_hex1800  14.1103351779  0.0352868648   399.87500 < 0.000000000000000222
ORIGIN_hex1802  12.9594646301  0.0615823728   210.44114 < 0.000000000000000222
ORIGIN_hex1804  11.9793903849  0.1170601421   102.33535 < 0.000000000000000222
ORIGIN_hex1805  15.6476714094  0.0112543571  1390.36565 < 0.000000000000000222
ORIGIN_hex1806  16.7632433585  0.0062621092  2676.93245 < 0.000000000000000222
ORIGIN_hex1807  16.9722307288  0.0055615367  3051.71601 < 0.000000000000000222
ORIGIN_hex1808  14.5166394898  0.0317229481   457.60689 < 0.000000000000000222
ORIGIN_hex1820  16.5457801215  0.0048830964  3388.37878 < 0.000000000000000222
ORIGIN_hex1821  17.2199638748  0.0035547762  4844.17664 < 0.000000000000000222
ORIGIN_hex1822  14.9958178973  0.0094006298  1595.19289 < 0.000000000000000222
ORIGIN_hex1823  15.0539966587  0.0118119844  1274.46805 < 0.000000000000000222
ORIGIN_hex1824  16.3616792980  0.0058876121  2779.00092 < 0.000000000000000222
ORIGIN_hex1827  16.3450659301  0.0070054984  2333.17675 < 0.000000000000000222
ORIGIN_hex1828  16.0985630895  0.0092467453  1740.99779 < 0.000000000000000222
ORIGIN_hex1829  15.8157707214  0.0109451188  1445.00676 < 0.000000000000000222
ORIGIN_hex1831  15.1737319660  0.0177825576   853.29300 < 0.000000000000000222
ORIGIN_hex1833  17.8135632958  0.0038688247  4604.38628 < 0.000000000000000222
ORIGIN_hex1834  16.6107044034  0.0068767790  2415.47742 < 0.000000000000000222
ORIGIN_hex1835  17.1842223951  0.0058120416  2956.65852 < 0.000000000000000222
ORIGIN_hex1846  12.5589201646  0.0504225995   249.07324 < 0.000000000000000222
ORIGIN_hex1847  16.1949668067  0.0091336222  1773.11546 < 0.000000000000000222
ORIGIN_hex1848  15.8408814406  0.0060047146  2638.07399 < 0.000000000000000222
ORIGIN_hex1849  16.5541099265  0.0043821407  3777.63090 < 0.000000000000000222
ORIGIN_hex1850  15.6536608209  0.0095454475  1639.90854 < 0.000000000000000222
ORIGIN_hex1852  12.9255974438  0.0471904332   273.90292 < 0.000000000000000222
ORIGIN_hex1853  16.0288193792  0.0079103493  2026.30994 < 0.000000000000000222
ORIGIN_hex1854  15.6398018483  0.0097072982  1611.13850 < 0.000000000000000222
ORIGIN_hex1855  15.4651707439  0.0112268045  1377.52205 < 0.000000000000000222
ORIGIN_hex1856  13.9452202415  0.0605590572   230.27473 < 0.000000000000000222
ORIGIN_hex1857  12.5803336145  0.1154932609   108.92699 < 0.000000000000000222
ORIGIN_hex1858  16.1749345488  0.0082547893  1959.46061 < 0.000000000000000222
ORIGIN_hex1859  16.7481229939  0.0060419748  2771.96175 < 0.000000000000000222
ORIGIN_hex1860  17.2373321562  0.0047314155  3643.16598 < 0.000000000000000222
ORIGIN_hex1861  18.2325536020  0.0044856930  4064.60131 < 0.000000000000000222
ORIGIN_hex1862  14.1901478359  0.0408127723   347.68890 < 0.000000000000000222
ORIGIN_hex1874  15.9948452992  0.0057406634  2786.23639 < 0.000000000000000222
ORIGIN_hex1875  16.0338273484  0.0051812208  3094.60416 < 0.000000000000000222
ORIGIN_hex1876  13.7010603768  0.0192093935   713.24794 < 0.000000000000000222
ORIGIN_hex1877  15.8083548245  0.0067797548  2331.70008 < 0.000000000000000222
ORIGIN_hex1878  14.9680768515  0.0128123434  1168.25443 < 0.000000000000000222
ORIGIN_hex1879  14.4123918802  0.0153784835   937.17900 < 0.000000000000000222
ORIGIN_hex1882  16.8572182932  0.0052662304  3201.00283 < 0.000000000000000222
ORIGIN_hex1883  16.4708619366  0.0068249876  2413.31750 < 0.000000000000000222
ORIGIN_hex1884  15.5436386621  0.0142402877  1091.52560 < 0.000000000000000222
ORIGIN_hex1886  18.1866464249  0.0034136816  5327.57542 < 0.000000000000000222
ORIGIN_hex1887  18.0424690739  0.0033022973  5463.61142 < 0.000000000000000222
ORIGIN_hex1888  16.5869571649  0.0071102697  2332.81688 < 0.000000000000000222
ORIGIN_hex1889  14.0263361312  0.0559398090   250.73979 < 0.000000000000000222
ORIGIN_hex1890  14.9597165106  0.0407417996   367.18350 < 0.000000000000000222
ORIGIN_hex1900  14.6117475250  0.0143486165  1018.33843 < 0.000000000000000222
ORIGIN_hex1901  16.1227550346  0.0049043798  3287.41975 < 0.000000000000000222
ORIGIN_hex1902  15.4603634332  0.0076479585  2021.50199 < 0.000000000000000222
ORIGIN_hex1903  14.8662429358  0.0146679859  1013.51631 < 0.000000000000000222
ORIGIN_hex1904  15.1572222016  0.0097862306  1548.83150 < 0.000000000000000222
ORIGIN_hex1905  15.2938139207  0.0084736559  1804.86606 < 0.000000000000000222
ORIGIN_hex1906  15.5816786459  0.0076024767  2049.55296 < 0.000000000000000222
ORIGIN_hex1907  16.3446193909  0.0058622333  2788.12160 < 0.000000000000000222
ORIGIN_hex1908  16.1744567277  0.0081022106  1996.30170 < 0.000000000000000222
ORIGIN_hex1909  17.3633053119  0.0046807137  3709.54227 < 0.000000000000000222
ORIGIN_hex1910  15.9830260389  0.0090671171  1762.74619 < 0.000000000000000222
ORIGIN_hex1912  15.4154241198  0.0154883065   995.29436 < 0.000000000000000222
ORIGIN_hex1913  16.4453477382  0.0069885078  2353.19874 < 0.000000000000000222
ORIGIN_hex1914  17.8692936329  0.0040239121  4440.77635 < 0.000000000000000222
ORIGIN_hex1916  16.9995691176  0.0156517829  1086.11072 < 0.000000000000000222
ORIGIN_hex1928  15.8676629478  0.0058754730  2700.66138 < 0.000000000000000222
ORIGIN_hex1929  15.4530668329  0.0066136143  2336.55398 < 0.000000000000000222
ORIGIN_hex1930  15.3132148599  0.0068643290  2230.83931 < 0.000000000000000222
ORIGIN_hex1931  15.3012078874  0.0078619215  1946.24277 < 0.000000000000000222
ORIGIN_hex1932  15.8949428602  0.0065078577  2442.42323 < 0.000000000000000222
ORIGIN_hex1933  16.1178766045  0.0084242247  1913.27715 < 0.000000000000000222
ORIGIN_hex1934  14.5713522146  0.0128681887  1132.35457 < 0.000000000000000222
ORIGIN_hex1935  16.7558316444  0.0050791182  3298.96471 < 0.000000000000000222
ORIGIN_hex1936  17.2081764433  0.0048363782  3558.07089 < 0.000000000000000222
ORIGIN_hex1937  16.7153097443  0.0059871623  2791.85845 < 0.000000000000000222
ORIGIN_hex1938  13.5988317950  0.0407140172   334.00860 < 0.000000000000000222
ORIGIN_hex1940  18.0886279502  0.0037755513  4790.98990 < 0.000000000000000222
ORIGIN_hex1941  17.1312680063  0.0052968138  3234.25907 < 0.000000000000000222
ORIGIN_hex1942  16.5154572241  0.0095797133  1724.00328 < 0.000000000000000222
ORIGIN_hex1954  14.8322633713  0.0141177328  1050.61228 < 0.000000000000000222
ORIGIN_hex1955  15.9690590789  0.0051921269  3075.62961 < 0.000000000000000222
ORIGIN_hex1956  14.7273426385  0.0093817912  1569.77940 < 0.000000000000000222
ORIGIN_hex1958  16.2840343151  0.0052267476  3115.51953 < 0.000000000000000222
ORIGIN_hex1959  16.8748027510  0.0039893347  4229.97920 < 0.000000000000000222
ORIGIN_hex1960  16.9424412652  0.0052193177  3246.10272 < 0.000000000000000222
ORIGIN_hex1961  16.5416808626  0.0052219634  3167.71291 < 0.000000000000000222
ORIGIN_hex1962  17.1556182360  0.0041954916  4089.06029 < 0.000000000000000222
ORIGIN_hex1963  16.2336832364  0.0061342645  2646.39439 < 0.000000000000000222
ORIGIN_hex1964  15.5220847529  0.0103085368  1505.75052 < 0.000000000000000222
ORIGIN_hex1967  18.3336266087  0.0036191702  5065.69892 < 0.000000000000000222
ORIGIN_hex1968  17.9080793907  0.0044805584  3996.84099 < 0.000000000000000222
ORIGIN_hex1982  15.0686562576  0.0084746317  1778.08981 < 0.000000000000000222
ORIGIN_hex1983  15.1964985178  0.0068732348  2210.96748 < 0.000000000000000222
ORIGIN_hex1984  16.2297218825  0.0043600053  3722.40879 < 0.000000000000000222
ORIGIN_hex1985  15.1623286552  0.0086113140  1760.74507 < 0.000000000000000222
ORIGIN_hex1986  16.3198590842  0.0059213954  2756.08331 < 0.000000000000000222
ORIGIN_hex1987  17.6441611244  0.0031253437  5645.51061 < 0.000000000000000222
ORIGIN_hex1988  16.0712306216  0.0059569515  2697.89515 < 0.000000000000000222
ORIGIN_hex1989  17.0394367710  0.0041762822  4080.04921 < 0.000000000000000222
ORIGIN_hex1990  18.2073537656  0.0029202240  6234.91675 < 0.000000000000000222
ORIGIN_hex1991  17.9677197689  0.0035176801  5107.83219 < 0.000000000000000222
ORIGIN_hex1992  15.3186258641  0.0146603658  1044.90066 < 0.000000000000000222
ORIGIN_hex1994  16.6380987488  0.0083496679  1992.66592 < 0.000000000000000222
ORIGIN_hex1995  18.3844760181  0.0038264139  4804.62290 < 0.000000000000000222
ORIGIN_hex2009  14.9742610630  0.0088691994  1688.34416 < 0.000000000000000222
ORIGIN_hex2010  15.6330356564  0.0054990258  2842.87368 < 0.000000000000000222
ORIGIN_hex2011  16.4606767373  0.0041395234  3976.46664 < 0.000000000000000222
ORIGIN_hex2012  15.6825705581  0.0066622770  2353.93552 < 0.000000000000000222
ORIGIN_hex2013  16.2505378830  0.0052851707  3074.74227 < 0.000000000000000222
ORIGIN_hex2014  16.6626850896  0.0045490541  3662.89011 < 0.000000000000000222
ORIGIN_hex2015  16.5054915804  0.0054086330  3051.69374 < 0.000000000000000222
ORIGIN_hex2016  17.0467244358  0.0044973117  3790.42537 < 0.000000000000000222
ORIGIN_hex2017  16.8775602973  0.0052835470  3194.36174 < 0.000000000000000222
ORIGIN_hex2021  16.8132235281  0.0073286638  2294.17314 < 0.000000000000000222
ORIGIN_hex2036  11.0464600232  0.1015533198   108.77498 < 0.000000000000000222
ORIGIN_hex2037  13.6439417597  0.0152754964   893.19138 < 0.000000000000000222
ORIGIN_hex2038  15.9955777206  0.0047939778  3336.59821 < 0.000000000000000222
ORIGIN_hex2039  17.0522432393  0.0051525601  3309.47001 < 0.000000000000000222
ORIGIN_hex2040  17.0692218187  0.0039254511  4348.34660 < 0.000000000000000222
ORIGIN_hex2041  17.9108175651  0.0037328492  4798.16264 < 0.000000000000000222
ORIGIN_hex2042  16.8513166366  0.0045975242  3665.30242 < 0.000000000000000222
ORIGIN_hex2043  15.3691293147  0.0091909682  1672.19916 < 0.000000000000000222
ORIGIN_hex2044  17.5857207036  0.0037913623  4638.36466 < 0.000000000000000222
ORIGIN_hex2046  16.1870476142  0.0096613341  1675.44642 < 0.000000000000000222
ORIGIN_hex2049  17.0546393841  0.0076396452  2232.38630 < 0.000000000000000222
ORIGIN_hex2063  13.5517679643  0.0218418235   620.45039 < 0.000000000000000222
ORIGIN_hex2064  14.4364684445  0.0115083910  1254.42979 < 0.000000000000000222
ORIGIN_hex2065  15.7131005080  0.0055663285  2822.88417 < 0.000000000000000222
ORIGIN_hex2066  15.9025085794  0.0056884413  2795.58278 < 0.000000000000000222
ORIGIN_hex2067  16.8680436242  0.0039938874  4223.46502 < 0.000000000000000222
ORIGIN_hex2068  15.8479247054  0.0073158533  2166.24420 < 0.000000000000000222
ORIGIN_hex2069  15.0243895634  0.0109867540  1367.50032 < 0.000000000000000222
ORIGIN_hex2070  17.6458246394  0.0041935214  4207.87762 < 0.000000000000000222
ORIGIN_hex2071  16.4851994578  0.0070641522  2333.64161 < 0.000000000000000222
ORIGIN_hex2072  15.2704325891  0.0220868680   691.38062 < 0.000000000000000222
ORIGIN_hex2074  11.5927576765  0.1644130077    70.50998 < 0.000000000000000222
ORIGIN_hex2089  13.2010968701  0.0864090928   152.77439 < 0.000000000000000222
ORIGIN_hex2090   9.7783950972  1.0000015672     9.77838 < 0.000000000000000222
ORIGIN_hex2091  13.1918694788  0.0245944946   536.37490 < 0.000000000000000222
ORIGIN_hex2092  14.8791472623  0.0092621132  1606.45276 < 0.000000000000000222
ORIGIN_hex2093  16.1176791859  0.0050735955  3176.77653 < 0.000000000000000222
ORIGIN_hex2094  16.7892794699  0.0043840193  3829.65456 < 0.000000000000000222
ORIGIN_hex2095  17.6010936724  0.0051671881  3406.31953 < 0.000000000000000222
ORIGIN_hex2096  14.6001752650  0.0147934847   986.93280 < 0.000000000000000222
ORIGIN_hex2097  14.7205587478  0.0249034418   591.10539 < 0.000000000000000222
ORIGIN_hex2098  15.8574304225  0.0082754210  1916.20831 < 0.000000000000000222
ORIGIN_hex2100  14.3088127754  0.0310571325   460.72550 < 0.000000000000000222
ORIGIN_hex2101  13.3450979686  0.0624166350   213.80675 < 0.000000000000000222
ORIGIN_hex2102  13.4765428026  0.0502964177   267.94240 < 0.000000000000000222
ORIGIN_hex2116  14.0745296656  0.0593710373   237.06053 < 0.000000000000000222
ORIGIN_hex2117  10.5992841309  1.0000018264    10.59926 < 0.000000000000000222
ORIGIN_hex2119  16.2262121680  0.0049998736  3245.32447 < 0.000000000000000222
ORIGIN_hex2120  15.7491084991  0.0064321841  2448.48535 < 0.000000000000000222
ORIGIN_hex2121  16.2377621206  0.0059370627  2734.98241 < 0.000000000000000222
ORIGIN_hex2122  13.5057228347  0.0457881321   294.96121 < 0.000000000000000222
ORIGIN_hex2123  16.3235187437  0.0057162064  2855.65593 < 0.000000000000000222
ORIGIN_hex2124  16.0062956837  0.0091656946  1746.32654 < 0.000000000000000222
ORIGIN_hex2125  15.9467046959  0.0093405492  1707.25558 < 0.000000000000000222
ORIGIN_hex2126  15.3419242847  0.0137526518  1115.56117 < 0.000000000000000222
ORIGIN_hex2129  12.7010866053  0.0958069075   132.56963 < 0.000000000000000222
ORIGIN_hex2146  16.0583723817  0.0146733518  1094.39020 < 0.000000000000000222
ORIGIN_hex2147  16.2976585675  0.0047416059  3437.16010 < 0.000000000000000222
ORIGIN_hex2148  17.1372517791  0.0037153341  4612.57359 < 0.000000000000000222
ORIGIN_hex2149  16.6913937395  0.0054544014  3060.16965 < 0.000000000000000222
ORIGIN_hex2150  15.3287829617  0.0095001549  1613.52980 < 0.000000000000000222
ORIGIN_hex2151  15.8304145772  0.0075961585  2084.00266 < 0.000000000000000222
ORIGIN_hex2152  17.0895825014  0.0048468750  3525.89709 < 0.000000000000000222
ORIGIN_hex2153  14.0942913470  0.0291927446   482.80117 < 0.000000000000000222
ORIGIN_hex2154  16.8254823860  0.0064414371  2612.06965 < 0.000000000000000222
ORIGIN_hex2155  13.8249418577  0.0402824787   343.19988 < 0.000000000000000222
ORIGIN_hex2171  11.7962805498  0.2582075834    45.68526 < 0.000000000000000222
ORIGIN_hex2172  16.8615698054  0.0108198023  1558.39907 < 0.000000000000000222
ORIGIN_hex2174  15.4078863834  0.0100906493  1526.94697 < 0.000000000000000222
ORIGIN_hex2175  17.0942177698  0.0041672230  4102.06460 < 0.000000000000000222
ORIGIN_hex2176  16.7400973741  0.0048286506  3466.82721 < 0.000000000000000222
ORIGIN_hex2177  17.4675665382  0.0035046164  4984.15935 < 0.000000000000000222
ORIGIN_hex2178  16.2392250455  0.0060657533  2677.19842 < 0.000000000000000222
ORIGIN_hex2179  16.7332480434  0.0057723914  2898.84157 < 0.000000000000000222
ORIGIN_hex2180  17.1702946644  0.0049591699  3462.33240 < 0.000000000000000222
ORIGIN_hex2181  17.3742573531  0.0050260217  3456.86077 < 0.000000000000000222
ORIGIN_hex2182  14.4018227883  0.0502404961   286.65765 < 0.000000000000000222
ORIGIN_hex2200  15.5261506137  0.0180262820   861.30632 < 0.000000000000000222
ORIGIN_hex2201  16.8878003575  0.0040251901  4195.52861 < 0.000000000000000222
ORIGIN_hex2202  14.8194903073  0.0164488399   900.94441 < 0.000000000000000222
ORIGIN_hex2203  16.8006825451  0.0054461247  3084.88760 < 0.000000000000000222
ORIGIN_hex2204  16.0807621816  0.0059929667  2683.27240 < 0.000000000000000222
ORIGIN_hex2205  16.1145250046  0.0063797808  2525.87438 < 0.000000000000000222
ORIGIN_hex2206  17.6095653619  0.0036174782  4867.91190 < 0.000000000000000222
ORIGIN_hex2207  16.4673970702  0.0062498396  2634.85113 < 0.000000000000000222
ORIGIN_hex2208  17.7926968850  0.0042338429  4202.49346 < 0.000000000000000222
ORIGIN_hex2209  12.8273984068  0.0718272037   178.58691 < 0.000000000000000222
ORIGIN_hex2227  15.2668987532  0.0093285123  1636.58451 < 0.000000000000000222
ORIGIN_hex2228  16.8314004945  0.0047206351  3565.49489 < 0.000000000000000222
ORIGIN_hex2229  16.0053686469  0.0061425147  2605.67037 < 0.000000000000000222
ORIGIN_hex2230  16.1687553295  0.0088681901  1823.23058 < 0.000000000000000222
ORIGIN_hex2231  16.6457829415  0.0048544097  3429.00248 < 0.000000000000000222
ORIGIN_hex2233  17.7678468443  0.0034841458  5099.62782 < 0.000000000000000222
ORIGIN_hex2234  13.6683199052  0.0422044353   323.85980 < 0.000000000000000222
ORIGIN_hex2235  14.6186814679  0.0324419202   450.61086 < 0.000000000000000222
ORIGIN_hex2254  15.2820005932  0.0162719630   939.16147 < 0.000000000000000222
ORIGIN_hex2255  16.7013477539  0.0046399779  3599.44554 < 0.000000000000000222
ORIGIN_hex2256  16.0169900926  0.0058989732  2715.21663 < 0.000000000000000222
ORIGIN_hex2257  15.3299757945  0.0110971602  1381.43232 < 0.000000000000000222
ORIGIN_hex2258  16.0188805378  0.0069801202  2294.92903 < 0.000000000000000222
ORIGIN_hex2259  15.1392988429  0.0118583742  1276.67576 < 0.000000000000000222
ORIGIN_hex2260  17.5032225674  0.0041091940  4259.52693 < 0.000000000000000222
ORIGIN_hex2261  17.5961127432  0.0042190480  4170.63579 < 0.000000000000000222
ORIGIN_hex2262  17.0186986400  0.0057153906  2977.69648 < 0.000000000000000222
ORIGIN_hex2281  16.7214082594  0.0051088296  3273.04093 < 0.000000000000000222
ORIGIN_hex2282  16.5728498246  0.0048488106  3417.92065 < 0.000000000000000222
ORIGIN_hex2283  16.6459570592  0.0046392283  3588.08753 < 0.000000000000000222
ORIGIN_hex2284  15.5001903169  0.0083173744  1863.59174 < 0.000000000000000222
ORIGIN_hex2285  17.4143761343  0.0042225283  4124.15851 < 0.000000000000000222
ORIGIN_hex2286  15.8176260621  0.0077260000  2047.32412 < 0.000000000000000222
ORIGIN_hex2287  17.8501614139  0.0035583336  5016.43844 < 0.000000000000000222
ORIGIN_hex2288  16.4630351632  0.0080112794  2054.98203 < 0.000000000000000222
ORIGIN_hex2308  16.0671296253  0.0084384545  1904.03701 < 0.000000000000000222
ORIGIN_hex2309  16.8145229807  0.0042512768  3955.17015 < 0.000000000000000222
ORIGIN_hex2310  16.2708324125  0.0050575411  3217.14289 < 0.000000000000000222
ORIGIN_hex2311  16.4975303470  0.0049783176  3313.87666 < 0.000000000000000222
ORIGIN_hex2312  14.1060449865  0.0206180190   684.16102 < 0.000000000000000222
ORIGIN_hex2313  16.6627125607  0.0053147366  3135.19066 < 0.000000000000000222
ORIGIN_hex2314  17.5009895887  0.0034927474  5010.66571 < 0.000000000000000222
ORIGIN_hex2315  16.6841346992  0.0059818923  2789.10650 < 0.000000000000000222
ORIGIN_hex2316  17.9416893736  0.0039477476  4544.79145 < 0.000000000000000222
ORIGIN_hex2317  17.6541737539  0.0092598506  1906.52901 < 0.000000000000000222
ORIGIN_hex2335  15.2228344939  0.0099573711  1528.80055 < 0.000000000000000222
ORIGIN_hex2336  16.7908554394  0.0041355136  4060.16204 < 0.000000000000000222
ORIGIN_hex2337  15.5771538256  0.0069960921  2226.55070 < 0.000000000000000222
ORIGIN_hex2338  13.6124797807  0.0269357056   505.36934 < 0.000000000000000222
ORIGIN_hex2339  16.9769074118  0.0047626844  3564.56698 < 0.000000000000000222
ORIGIN_hex2340  17.5523434726  0.0035379925  4961.10247 < 0.000000000000000222
ORIGIN_hex2341  17.2323388083  0.0041421307  4160.25960 < 0.000000000000000222
ORIGIN_hex2342  17.0850120907  0.0045722191  3736.70018 < 0.000000000000000222
ORIGIN_hex2343  17.2619996021  0.0050336445  3429.32431 < 0.000000000000000222
ORIGIN_hex2362  15.6368333189  0.0103573301  1509.73592 < 0.000000000000000222
ORIGIN_hex2363  16.1115383867  0.0062231513  2588.96783 < 0.000000000000000222
ORIGIN_hex2364  12.8162934270  0.0343986208   372.58161 < 0.000000000000000222
ORIGIN_hex2365  15.0614880859  0.0100811786  1494.02055 < 0.000000000000000222
ORIGIN_hex2366  11.1549525918  0.1825856796    61.09435 < 0.000000000000000222
ORIGIN_hex2367  16.6043857749  0.0058271371  2849.49290 < 0.000000000000000222
ORIGIN_hex2368  17.1551919716  0.0042662490  4021.14174 < 0.000000000000000222
ORIGIN_hex2369  17.1333010424  0.0044426225  3856.57371 < 0.000000000000000222
ORIGIN_hex2370  17.7000221855  0.0036523354  4846.22042 < 0.000000000000000222
ORIGIN_hex2371  17.7839671861  0.0041537471  4281.42754 < 0.000000000000000222
ORIGIN_hex2389  15.9544653080  0.0069424641  2298.09836 < 0.000000000000000222
ORIGIN_hex2390  16.7073707049  0.0045296667  3688.43271 < 0.000000000000000222
ORIGIN_hex2391  16.3594618689  0.0058876517  2778.60559 < 0.000000000000000222
ORIGIN_hex2392  15.3710018756  0.0160416125   958.19556 < 0.000000000000000222
ORIGIN_hex2393  15.2499393937  0.0264947885   575.58261 < 0.000000000000000222
ORIGIN_hex2394  15.7371569571  0.0093081216  1690.69094 < 0.000000000000000222
ORIGIN_hex2395  17.2855785780  0.0042456718  4071.34122 < 0.000000000000000222
ORIGIN_hex2396  17.5907322885  0.0037658595  4671.10692 < 0.000000000000000222
ORIGIN_hex2397  16.5225725449  0.0067022609  2465.22373 < 0.000000000000000222
ORIGIN_hex2398  17.1360349326  0.0073941112  2317.52465 < 0.000000000000000222
ORIGIN_hex2416  16.0646384264  0.0074173322  2165.82431 < 0.000000000000000222
ORIGIN_hex2417  16.4372441493  0.0071006895  2314.88001 < 0.000000000000000222
ORIGIN_hex2418  16.2201159593  0.0057022601  2844.50650 < 0.000000000000000222
ORIGIN_hex2419  15.9791052514  0.0066176386  2414.62344 < 0.000000000000000222
ORIGIN_hex2420  15.3319274843  0.0242885651   631.24056 < 0.000000000000000222
ORIGIN_hex2422  16.0001977983  0.0125933051  1270.53205 < 0.000000000000000222
ORIGIN_hex2423  16.8925844880  0.0054110709  3121.85604 < 0.000000000000000222
ORIGIN_hex2424  18.2479676929  0.0031789339  5740.27905 < 0.000000000000000222
ORIGIN_hex2425  17.7567513950  0.0038825613  4573.46326 < 0.000000000000000222
ORIGIN_hex2426  17.1580763862  0.0090972759  1886.06749 < 0.000000000000000222
ORIGIN_hex2443  17.0205559927  0.0043945189  3873.13300 < 0.000000000000000222
ORIGIN_hex2444  17.1338375036  0.0038518663  4448.19110 < 0.000000000000000222
ORIGIN_hex2445  17.2704535828  0.0036795764  4693.59830 < 0.000000000000000222
ORIGIN_hex2448  14.3106592717  0.0312013057   458.65578 < 0.000000000000000222
ORIGIN_hex2449  17.2909034002  0.0056883533  3039.70276 < 0.000000000000000222
ORIGIN_hex2450  17.2898537241  0.0046893474  3687.04900 < 0.000000000000000222
ORIGIN_hex2451  18.4004367171  0.0030970043  5941.36628 < 0.000000000000000222
ORIGIN_hex2452  13.8559503550  0.0350627036   395.17633 < 0.000000000000000222
ORIGIN_hex2471  16.3491031740  0.0056468185  2895.27688 < 0.000000000000000222
ORIGIN_hex2472  15.6866895534  0.0151758956  1033.65824 < 0.000000000000000222
ORIGIN_hex2473  17.0205296649  0.0049154848  3462.63496 < 0.000000000000000222
ORIGIN_hex2476  14.9280920966  0.0249038668   599.42868 < 0.000000000000000222
ORIGIN_hex2478  16.9524548047  0.0056726407  2988.45913 < 0.000000000000000222
ORIGIN_hex2479  15.6374714616  0.0114871440  1361.30195 < 0.000000000000000222
ORIGIN_hex2480  14.6009489096  0.0358857610   406.87305 < 0.000000000000000222
ORIGIN_hex2497  17.2475029464  0.0041023106  4204.33868 < 0.000000000000000222
ORIGIN_hex2498  15.4996608430  0.0090754686  1707.86341 < 0.000000000000000222
ORIGIN_hex2499  17.3202011631  0.0046274433  3742.93106 < 0.000000000000000222
ORIGIN_hex2500  13.2108453141  0.0430836773   306.63226 < 0.000000000000000222
ORIGIN_hex2503  11.8434267553  0.1525124995    77.65545 < 0.000000000000000222
ORIGIN_hex2504  15.8771741110  0.0136713611  1161.34553 < 0.000000000000000222
ORIGIN_hex2505  17.1056942501  0.0056347079  3035.77301 < 0.000000000000000222
ORIGIN_hex2525  15.9121030422  0.0077150619  2062.47250 < 0.000000000000000222
ORIGIN_hex2526  16.8530902174  0.0049346014  3415.28910 < 0.000000000000000222
ORIGIN_hex2527  17.1899687015  0.0043310900  3968.97059 < 0.000000000000000222
ORIGIN_hex2531  11.2484178635  0.4472188434    25.15193 < 0.000000000000000222
ORIGIN_hex2532  17.1734508373  0.0058979408  2911.77063 < 0.000000000000000222
ORIGIN_hex2533  17.6522720128  0.0066489371  2654.90133 < 0.000000000000000222
ORIGIN_hex2551  16.2059525734  0.0072130021  2246.76943 < 0.000000000000000222
ORIGIN_hex2552  15.3813930894  0.0122670732  1253.87636 < 0.000000000000000222
ORIGIN_hex2553  16.6994498055  0.0077821203  2145.87403 < 0.000000000000000222
ORIGIN_hex2554  15.5871402334  0.0104013505  1498.56889 < 0.000000000000000222
ORIGIN_hex2557  15.0365464083  0.0255846997   587.71635 < 0.000000000000000222
ORIGIN_hex2559  16.9434660775  0.0076236606  2222.48432 < 0.000000000000000222
ORIGIN_hex2579  16.2121783792  0.0069186399  2343.26090 < 0.000000000000000222
ORIGIN_hex2580  17.0779548188  0.0043857764  3893.94111 < 0.000000000000000222
ORIGIN_hex2581  16.7671725536  0.0059726654  2807.31826 < 0.000000000000000222
ORIGIN_hex2584  13.4894108372  0.0622923682   216.54998 < 0.000000000000000222
ORIGIN_hex2605  16.2874561167  0.0093552524  1740.99591 < 0.000000000000000222
ORIGIN_hex2606  15.8243353178  0.0145586533  1086.93675 < 0.000000000000000222
ORIGIN_hex2607  17.6886169612  0.0036561097  4838.09801 < 0.000000000000000222
ORIGIN_hex2608  16.2425616619  0.0079058924  2054.48807 < 0.000000000000000222
ORIGIN_hex2609  15.6032070216  0.0142714008  1093.31993 < 0.000000000000000222
ORIGIN_hex2610  14.9348288298  0.0238811954   625.38029 < 0.000000000000000222
ORIGIN_hex2611  13.2459825346  0.0825043271   160.54894 < 0.000000000000000222
ORIGIN_hex2633  16.2667238857  0.0068099321  2388.67635 < 0.000000000000000222
ORIGIN_hex2634  17.8564475041  0.0032086243  5565.14127 < 0.000000000000000222
ORIGIN_hex2635  17.1729740700  0.0050536519  3398.13157 < 0.000000000000000222
ORIGIN_hex2636  17.3539115150  0.0045625599  3803.54710 < 0.000000000000000222
ORIGIN_hex2637  15.9735653470  0.0097736717  1634.34643 < 0.000000000000000222
ORIGIN_hex2638  15.8623298594  0.0103508540  1532.46580 < 0.000000000000000222
ORIGIN_hex2660  15.7322691797  0.0081811960  1922.97913 < 0.000000000000000222
ORIGIN_hex2661  17.1459183703  0.0041521345  4129.42270 < 0.000000000000000222
ORIGIN_hex2662  16.2526716693  0.0063709592  2551.05569 < 0.000000000000000222
ORIGIN_hex2663  17.8792847258  0.0037691651  4743.56631 < 0.000000000000000222
ORIGIN_hex2664  16.4909270659  0.0066690783  2472.74457 < 0.000000000000000222
ORIGIN_hex2665  17.2499732949  0.0050480264  3417.17179 < 0.000000000000000222
ORIGIN_hex2687  16.2857549433  0.0071065218  2291.66326 < 0.000000000000000222
ORIGIN_hex2688  17.1314855241  0.0041614477  4116.71296 < 0.000000000000000222
ORIGIN_hex2689  17.2042078323  0.0043515028  3953.62443 < 0.000000000000000222
ORIGIN_hex2690  16.5481077419  0.0056416238  2933.21716 < 0.000000000000000222
ORIGIN_hex2691  17.9236206878  0.0035396498  5063.67067 < 0.000000000000000222
ORIGIN_hex2693  17.6222241704  0.0046109143  3821.85031 < 0.000000000000000222
ORIGIN_hex2714  16.6948865125  0.0054627973  3056.10583 < 0.000000000000000222
ORIGIN_hex2715  17.4942744090  0.0043912339  3983.90858 < 0.000000000000000222
ORIGIN_hex2716  13.4240585092  0.0258614638   519.07574 < 0.000000000000000222
ORIGIN_hex2717  16.7356469362  0.0047075466  3555.06772 < 0.000000000000000222
ORIGIN_hex2718  17.0403137496  0.0056103140  3037.31906 < 0.000000000000000222
ORIGIN_hex2719  17.7470326441  0.0043093044  4118.30567 < 0.000000000000000222
ORIGIN_hex2742  17.3744207353  0.0041675865  4168.94059 < 0.000000000000000222
ORIGIN_hex2743  16.1230301639  0.0106745414  1510.41900 < 0.000000000000000222
ORIGIN_hex2744  17.2425195750  0.0037837110  4557.03923 < 0.000000000000000222
ORIGIN_hex2745  17.2725363958  0.0039722265  4348.32621 < 0.000000000000000222
ORIGIN_hex2746  16.1606560527  0.0101694797  1589.13303 < 0.000000000000000222
ORIGIN_hex2747  16.9859025078  0.0063559257  2672.45141 < 0.000000000000000222
ORIGIN_hex2768  17.0697518131  0.0052338807  3261.39490 < 0.000000000000000222
ORIGIN_hex2769  17.5557690900  0.0039884418  4401.66107 < 0.000000000000000222
ORIGIN_hex2770  15.6246563414  0.0082958405  1883.43260 < 0.000000000000000222
ORIGIN_hex2771  17.9771628872  0.0031073948  5785.28440 < 0.000000000000000222
ORIGIN_hex2772  16.4208304044  0.0085502874  1920.50041 < 0.000000000000000222
ORIGIN_hex2773  17.1044941396  0.0050453342  3390.16081 < 0.000000000000000222
ORIGIN_hex2795  13.5090544628  0.0985601494   137.06406 < 0.000000000000000222
ORIGIN_hex2796  14.7468421273  0.0212268206   694.72685 < 0.000000000000000222
ORIGIN_hex2797  15.8568425542  0.0078093432  2030.49631 < 0.000000000000000222
ORIGIN_hex2798  16.3672904552  0.0056532072  2895.22213 < 0.000000000000000222
ORIGIN_hex2799  17.0089310330  0.0044905326  3787.73131 < 0.000000000000000222
ORIGIN_hex2800  17.0427544706  0.0051841637  3287.46460 < 0.000000000000000222
ORIGIN_hex2801  14.9765461024  0.0269667488   555.37085 < 0.000000000000000222
ORIGIN_hex2822  14.7158635607  0.0177932983   827.04529 < 0.000000000000000222
ORIGIN_hex2823  15.1335300561  0.0121030819  1250.38649 < 0.000000000000000222
ORIGIN_hex2824  16.8635918156  0.0056046565  3008.85379 < 0.000000000000000222
ORIGIN_hex2825  17.4450595854  0.0037252956  4682.86581 < 0.000000000000000222
ORIGIN_hex2826  17.3823299925  0.0051742740  3359.37566 < 0.000000000000000222
ORIGIN_hex2827  17.4818189274  0.0041911253  4171.15159 < 0.000000000000000222
ORIGIN_hex2850  16.0822304293  0.0107468821  1496.45547 < 0.000000000000000222
ORIGIN_hex2851  14.5781690079  0.0159200533   915.71107 < 0.000000000000000222
ORIGIN_hex2852  17.0880700847  0.0047222466  3618.63146 < 0.000000000000000222
ORIGIN_hex2853  17.8032769294  0.0034042358  5229.74255 < 0.000000000000000222
ORIGIN_hex2854  17.7035393463  0.0040416911  4380.23063 < 0.000000000000000222
ORIGIN_hex2877  15.1296973669  0.0171480366   882.29910 < 0.000000000000000222
ORIGIN_hex2878  16.5257430178  0.0060125002  2748.56425 < 0.000000000000000222
ORIGIN_hex2879  17.2881670937  0.0057116727  3026.81334 < 0.000000000000000222
ORIGIN_hex2880  16.9707275911  0.0049876065  3402.57947 < 0.000000000000000222
ORIGIN_hex2881  17.5867596855  0.0045340413  3878.82655 < 0.000000000000000222
ORIGIN_hex2905  16.6352374382  0.0073934341  2250.00146 < 0.000000000000000222
ORIGIN_hex2906  16.2287268983  0.0095937500  1691.59367 < 0.000000000000000222
ORIGIN_hex2907  17.0231874462  0.0047597130  3576.51550 < 0.000000000000000222
ORIGIN_hex2908  17.3036661334  0.0049111967  3523.30953 < 0.000000000000000222
ORIGIN_hex2909  16.8143153474  0.0199914578   841.07500 < 0.000000000000000222
ORIGIN_hex2931  13.3611215059  0.0434828727   307.27320 < 0.000000000000000222
ORIGIN_hex2932  12.2307805882  0.0695341837   175.89594 < 0.000000000000000222
ORIGIN_hex2933  15.5426108415  0.0124840373  1244.99875 < 0.000000000000000222
ORIGIN_hex2934  16.6308266570  0.0059920957  2775.46080 < 0.000000000000000222
ORIGIN_hex2959  14.0438879995  0.0287974686   487.67786 < 0.000000000000000222
ORIGIN_hex2960  16.4357804140  0.0180023718   912.97861 < 0.000000000000000222
ORIGIN_hex2961  16.5958259456  0.0076583860  2167.01352 < 0.000000000000000222
ORIGIN_hex2962  16.4051436234  0.0082917078  1978.49996 < 0.000000000000000222
ORIGIN_hex2963  13.4556037311  0.0735514505   182.94138 < 0.000000000000000222
ORIGIN_hex2987  14.6391247318  0.0396746468   368.97933 < 0.000000000000000222
ORIGIN_hex2988  14.7384879346  0.0216931673   679.40692 < 0.000000000000000222
ORIGIN_hex2989  14.7770617241  0.0192213169   768.78508 < 0.000000000000000222
ORIGIN_hex2990  14.6473494786  0.0377949384   387.54791 < 0.000000000000000222
ORIGIN_hex3015  16.5120597528  0.0186554735   885.10537 < 0.000000000000000222
ORIGIN_hex3016  15.7041113153  0.0156977734  1000.40374 < 0.000000000000000222
ORIGIN_hex3017  13.7922573932  0.0353699366   389.94295 < 0.000000000000000222
ORIGIN_hex3040  16.9099890407  0.0088311129  1914.81971 < 0.000000000000000222
ORIGIN_hex3043  14.9850598276  0.0171914889   871.65573 < 0.000000000000000222
ORIGIN_hex3044  15.0999098386  0.0185086265   815.83092 < 0.000000000000000222
ORIGIN_hex3068  15.4360851928  0.0188737725   817.85903 < 0.000000000000000222
ORIGIN_hex3070  13.1769719820  0.0674529719   195.35050 < 0.000000000000000222
ORIGIN_hex3072  14.0507787450  0.0487235943   288.37730 < 0.000000000000000222
ORIGIN_hex3092  17.6419491058  0.0146893659  1201.00141 < 0.000000000000000222
ORIGIN_hex3098  16.5528705960  0.0087734250  1886.70567 < 0.000000000000000222
ORIGIN_hex3123  18.0039695526  0.0062314686  2889.20167 < 0.000000000000000222
ORIGIN_hex3126  12.1644456219  0.2672689452    45.51388 < 0.000000000000000222
ORIGIN_hex3151  16.1076190097  0.0144454402  1115.06598 < 0.000000000000000222
ORIGIN_hex3152  12.1560309103  0.1147262281   105.95686 < 0.000000000000000222
ORIGIN_hex3173  17.6211916693  0.0163062590  1080.63975 < 0.000000000000000222
ORIGIN_hex3178  15.6906462701  0.0198832462   789.13906 < 0.000000000000000222
ORIGIN_hex3179  15.2496939945  0.0218284434   698.61573 < 0.000000000000000222
ORIGIN_hex3205  15.5563549298  0.0297270447   523.30647 < 0.000000000000000222
ORIGIN_hex3206  17.0473063799  0.0100181368  1701.64440 < 0.000000000000000222
ORIGIN_hex3232  15.2033118056  0.0426084229   356.81470 < 0.000000000000000222
ORIGIN_hex3233  14.6718734593  0.0574819470   255.24315 < 0.000000000000000222
ORIGIN_hex3308  16.5205235738  0.0384733559   429.40168 < 0.000000000000000222
d_biz_count      0.0909976747  0.0001815626   501.19170 < 0.000000000000000222
d_school_count   0.3345523258  0.0006533345   512.06899 < 0.000000000000000222
d_fin_count      0.3967295545  0.0002024874  1959.28028 < 0.000000000000000222
d_busstop_count  0.1774197134  0.0004526890   391.92405 < 0.000000000000000222
d_mrtlrt_count   0.0133830959  0.0008712696    15.36045 < 0.000000000000000222
dist            -1.4944107983  0.0002602126 -5743.03770 < 0.000000000000000222
                   
ORIGIN_hex118   ***
ORIGIN_hex146   ***
ORIGIN_hex174   ***
ORIGIN_hex175   ***
ORIGIN_hex200   ***
ORIGIN_hex201   ***
ORIGIN_hex202   ***
ORIGIN_hex203   ***
ORIGIN_hex227   ***
ORIGIN_hex228   ***
ORIGIN_hex229   ***
ORIGIN_hex230   ***
ORIGIN_hex231   ***
ORIGIN_hex254   ***
ORIGIN_hex255   ***
ORIGIN_hex256   ***
ORIGIN_hex257   ***
ORIGIN_hex258   ***
ORIGIN_hex259   ***
ORIGIN_hex281   ***
ORIGIN_hex282   ***
ORIGIN_hex284   ***
ORIGIN_hex285   ***
ORIGIN_hex286   ***
ORIGIN_hex312   ***
ORIGIN_hex313   ***
ORIGIN_hex314   ***
ORIGIN_hex336   ***
ORIGIN_hex338   ***
ORIGIN_hex339   ***
ORIGIN_hex340   ***
ORIGIN_hex366   ***
ORIGIN_hex367   ***
ORIGIN_hex391   ***
ORIGIN_hex392   ***
ORIGIN_hex393   ***
ORIGIN_hex394   ***
ORIGIN_hex419   ***
ORIGIN_hex420   ***
ORIGIN_hex421   ***
ORIGIN_hex445   ***
ORIGIN_hex446   ***
ORIGIN_hex447   ***
ORIGIN_hex472   ***
ORIGIN_hex473   ***
ORIGIN_hex474   ***
ORIGIN_hex499   ***
ORIGIN_hex500   ***
ORIGIN_hex526   ***
ORIGIN_hex527   ***
ORIGIN_hex528   ***
ORIGIN_hex552   ***
ORIGIN_hex553   ***
ORIGIN_hex554   ***
ORIGIN_hex555   ***
ORIGIN_hex581   ***
ORIGIN_hex582   ***
ORIGIN_hex607   ***
ORIGIN_hex608   ***
ORIGIN_hex609   ***
ORIGIN_hex610   ***
ORIGIN_hex611   ***
ORIGIN_hex634   ***
ORIGIN_hex635   ***
ORIGIN_hex636   ***
ORIGIN_hex638   ***
ORIGIN_hex661   ***
ORIGIN_hex662   ***
ORIGIN_hex663   ***
ORIGIN_hex664   ***
ORIGIN_hex665   ***
ORIGIN_hex689   ***
ORIGIN_hex690   ***
ORIGIN_hex692   ***
ORIGIN_hex693   ***
ORIGIN_hex715   ***
ORIGIN_hex716   ***
ORIGIN_hex717   ***
ORIGIN_hex718   ***
ORIGIN_hex719   ***
ORIGIN_hex720   ***
ORIGIN_hex743   ***
ORIGIN_hex744   ***
ORIGIN_hex745   ***
ORIGIN_hex746   ***
ORIGIN_hex747   ***
ORIGIN_hex748   ***
ORIGIN_hex769   ***
ORIGIN_hex770   ***
ORIGIN_hex771   ***
ORIGIN_hex772   ***
ORIGIN_hex773   ***
ORIGIN_hex774   ***
ORIGIN_hex775   ***
ORIGIN_hex776   ***
ORIGIN_hex777   ***
ORIGIN_hex797   ***
ORIGIN_hex798   ***
ORIGIN_hex799   ***
ORIGIN_hex800   ***
ORIGIN_hex802   ***
ORIGIN_hex803   ***
ORIGIN_hex805   ***
ORIGIN_hex806   ***
ORIGIN_hex823   ***
ORIGIN_hex824   ***
ORIGIN_hex825   ***
ORIGIN_hex826   ***
ORIGIN_hex827   ***
ORIGIN_hex832   ***
ORIGIN_hex833   ***
ORIGIN_hex851   ***
ORIGIN_hex852   ***
ORIGIN_hex853   ***
ORIGIN_hex854   ***
ORIGIN_hex856   ***
ORIGIN_hex861   ***
ORIGIN_hex862   ***
ORIGIN_hex878   ***
ORIGIN_hex879   ***
ORIGIN_hex880   ***
ORIGIN_hex881   ***
ORIGIN_hex888   ***
ORIGIN_hex889   ***
ORIGIN_hex905   ***
ORIGIN_hex906   ***
ORIGIN_hex907   ***
ORIGIN_hex908   ***
ORIGIN_hex910   ***
ORIGIN_hex932   ***
ORIGIN_hex933   ***
ORIGIN_hex934   ***
ORIGIN_hex935   ***
ORIGIN_hex937   ***
ORIGIN_hex959   ***
ORIGIN_hex960   ***
ORIGIN_hex961   ***
ORIGIN_hex962   ***
ORIGIN_hex986   ***
ORIGIN_hex987   ***
ORIGIN_hex988   ***
ORIGIN_hex989   ***
ORIGIN_hex991   ***
ORIGIN_hex1013  ***
ORIGIN_hex1014  ***
ORIGIN_hex1015  ***
ORIGIN_hex1016  ***
ORIGIN_hex1042  ***
ORIGIN_hex1043  ***
ORIGIN_hex1045  ***
ORIGIN_hex1067  ***
ORIGIN_hex1068  ***
ORIGIN_hex1069  ***
ORIGIN_hex1070  ***
ORIGIN_hex1078  ***
ORIGIN_hex1093  ***
ORIGIN_hex1094  ***
ORIGIN_hex1095  ***
ORIGIN_hex1096  ***
ORIGIN_hex1097  ***
ORIGIN_hex1099  ***
ORIGIN_hex1100  ***
ORIGIN_hex1122  ***
ORIGIN_hex1123  ***
ORIGIN_hex1124  ***
ORIGIN_hex1125  ***
ORIGIN_hex1126  ***
ORIGIN_hex1127  ***
ORIGIN_hex1128  ***
ORIGIN_hex1132  ***
ORIGIN_hex1147  ***
ORIGIN_hex1148  ***
ORIGIN_hex1149  ***
ORIGIN_hex1150  ***
ORIGIN_hex1151  ***
ORIGIN_hex1152  ***
ORIGIN_hex1153  ***
ORIGIN_hex1154  ***
ORIGIN_hex1155  ***
ORIGIN_hex1158  ***
ORIGIN_hex1174  ***
ORIGIN_hex1175  ***
ORIGIN_hex1176  ***
ORIGIN_hex1177  ***
ORIGIN_hex1178  ***
ORIGIN_hex1179  ***
ORIGIN_hex1180  ***
ORIGIN_hex1181  ***
ORIGIN_hex1182  ***
ORIGIN_hex1183  ***
ORIGIN_hex1185  ***
ORIGIN_hex1201  ***
ORIGIN_hex1202  ***
ORIGIN_hex1203  ***
ORIGIN_hex1205  ***
ORIGIN_hex1206  ***
ORIGIN_hex1207  ***
ORIGIN_hex1209  ***
ORIGIN_hex1210  ***
ORIGIN_hex1211  ***
ORIGIN_hex1212  ***
ORIGIN_hex1228  ***
ORIGIN_hex1229  ***
ORIGIN_hex1230  ***
ORIGIN_hex1231  ***
ORIGIN_hex1232  ***
ORIGIN_hex1233  ***
ORIGIN_hex1235  ***
ORIGIN_hex1236  ***
ORIGIN_hex1237  ***
ORIGIN_hex1238  ***
ORIGIN_hex1239  ***
ORIGIN_hex1240  ***
ORIGIN_hex1255  ***
ORIGIN_hex1256  ***
ORIGIN_hex1257  ***
ORIGIN_hex1258  ***
ORIGIN_hex1259  ***
ORIGIN_hex1261  ***
ORIGIN_hex1262  ***
ORIGIN_hex1263  ***
ORIGIN_hex1264  ***
ORIGIN_hex1265  ***
ORIGIN_hex1266  ***
ORIGIN_hex1282  ***
ORIGIN_hex1283  ***
ORIGIN_hex1284  ***
ORIGIN_hex1285  ***
ORIGIN_hex1286  ***
ORIGIN_hex1287  ***
ORIGIN_hex1288  ***
ORIGIN_hex1289  ***
ORIGIN_hex1293  ***
ORIGIN_hex1308  ***
ORIGIN_hex1309  ***
ORIGIN_hex1310  ***
ORIGIN_hex1311  ***
ORIGIN_hex1312  ***
ORIGIN_hex1314  ***
ORIGIN_hex1315  ***
ORIGIN_hex1316  ***
ORIGIN_hex1318  ***
ORIGIN_hex1319  ***
ORIGIN_hex1320  ***
ORIGIN_hex1335  ***
ORIGIN_hex1336  ***
ORIGIN_hex1337  ***
ORIGIN_hex1338  ***
ORIGIN_hex1339  ***
ORIGIN_hex1340  ***
ORIGIN_hex1341  ***
ORIGIN_hex1342  ***
ORIGIN_hex1343  ***
ORIGIN_hex1347  ***
ORIGIN_hex1348  ***
ORIGIN_hex1362  ***
ORIGIN_hex1363  ***
ORIGIN_hex1364  ***
ORIGIN_hex1366  ***
ORIGIN_hex1367  ***
ORIGIN_hex1368  ***
ORIGIN_hex1369  ***
ORIGIN_hex1370  ***
ORIGIN_hex1372  ***
ORIGIN_hex1374  ***
ORIGIN_hex1375  ***
ORIGIN_hex1389  ***
ORIGIN_hex1390  ***
ORIGIN_hex1391  ***
ORIGIN_hex1392  ***
ORIGIN_hex1394  ***
ORIGIN_hex1396  ***
ORIGIN_hex1397  ***
ORIGIN_hex1401  ***
ORIGIN_hex1402  ***
ORIGIN_hex1416  ***
ORIGIN_hex1417  ***
ORIGIN_hex1418  ***
ORIGIN_hex1419  ***
ORIGIN_hex1420  ***
ORIGIN_hex1422  ***
ORIGIN_hex1423  ***
ORIGIN_hex1426  ***
ORIGIN_hex1428  ***
ORIGIN_hex1429  ***
ORIGIN_hex1443  ***
ORIGIN_hex1444  ***
ORIGIN_hex1445  ***
ORIGIN_hex1446  ***
ORIGIN_hex1447  ***
ORIGIN_hex1455  ***
ORIGIN_hex1456  ***
ORIGIN_hex1457  ***
ORIGIN_hex1469  ***
ORIGIN_hex1470  ***
ORIGIN_hex1471  ***
ORIGIN_hex1472  ***
ORIGIN_hex1480  ***
ORIGIN_hex1482  ***
ORIGIN_hex1483  ***
ORIGIN_hex1496  ***
ORIGIN_hex1497  ***
ORIGIN_hex1498  ***
ORIGIN_hex1499  ***
ORIGIN_hex1500  ***
ORIGIN_hex1501  ***
ORIGIN_hex1507  ***
ORIGIN_hex1509  ***
ORIGIN_hex1510  ***
ORIGIN_hex1511  ***
ORIGIN_hex1523  ***
ORIGIN_hex1524  ***
ORIGIN_hex1525  ***
ORIGIN_hex1526  ***
ORIGIN_hex1527  ***
ORIGIN_hex1534  ***
ORIGIN_hex1536  ***
ORIGIN_hex1537  ***
ORIGIN_hex1550  ***
ORIGIN_hex1551  ***
ORIGIN_hex1552  ***
ORIGIN_hex1553  ***
ORIGIN_hex1554  ***
ORIGIN_hex1555  ***
ORIGIN_hex1562  ***
ORIGIN_hex1563  ***
ORIGIN_hex1564  ***
ORIGIN_hex1565  ***
ORIGIN_hex1576  ***
ORIGIN_hex1578  ***
ORIGIN_hex1579  ***
ORIGIN_hex1581  ***
ORIGIN_hex1588  ***
ORIGIN_hex1590  ***
ORIGIN_hex1591  ***
ORIGIN_hex1592  ***
ORIGIN_hex1604  ***
ORIGIN_hex1605  ***
ORIGIN_hex1606  ***
ORIGIN_hex1607  ***
ORIGIN_hex1616  ***
ORIGIN_hex1617  ***
ORIGIN_hex1618  ***
ORIGIN_hex1619  ***
ORIGIN_hex1620  ***
ORIGIN_hex1630  ***
ORIGIN_hex1631  ***
ORIGIN_hex1632  ***
ORIGIN_hex1633  ***
ORIGIN_hex1634  ***
ORIGIN_hex1635  ***
ORIGIN_hex1642  ***
ORIGIN_hex1644  ***
ORIGIN_hex1645  ***
ORIGIN_hex1646  ***
ORIGIN_hex1647  ***
ORIGIN_hex1658  ***
ORIGIN_hex1659  ***
ORIGIN_hex1660  ***
ORIGIN_hex1661  ***
ORIGIN_hex1662  ***
ORIGIN_hex1669  ***
ORIGIN_hex1670  ***
ORIGIN_hex1672  ***
ORIGIN_hex1673  ***
ORIGIN_hex1674  ***
ORIGIN_hex1684  ***
ORIGIN_hex1685  ***
ORIGIN_hex1686  ***
ORIGIN_hex1687  ***
ORIGIN_hex1688  ***
ORIGIN_hex1689  ***
ORIGIN_hex1695  ***
ORIGIN_hex1699  ***
ORIGIN_hex1700  ***
ORIGIN_hex1701  ***
ORIGIN_hex1712  ***
ORIGIN_hex1713  ***
ORIGIN_hex1714  ***
ORIGIN_hex1716  ***
ORIGIN_hex1723  ***
ORIGIN_hex1726  ***
ORIGIN_hex1727  ***
ORIGIN_hex1728  ***
ORIGIN_hex1738  ***
ORIGIN_hex1739  ***
ORIGIN_hex1740  ***
ORIGIN_hex1741  ***
ORIGIN_hex1743  ***
ORIGIN_hex1744  ***
ORIGIN_hex1748  ***
ORIGIN_hex1749  ***
ORIGIN_hex1753  ***
ORIGIN_hex1754  ***
ORIGIN_hex1765  ***
ORIGIN_hex1766  ***
ORIGIN_hex1767  ***
ORIGIN_hex1768  ***
ORIGIN_hex1770  ***
ORIGIN_hex1771  ***
ORIGIN_hex1776  ***
ORIGIN_hex1777  ***
ORIGIN_hex1778  ***
ORIGIN_hex1780  ***
ORIGIN_hex1781  ***
ORIGIN_hex1792  ***
ORIGIN_hex1793  ***
ORIGIN_hex1794  ***
ORIGIN_hex1795  ***
ORIGIN_hex1796  ***
ORIGIN_hex1798  ***
ORIGIN_hex1800  ***
ORIGIN_hex1802  ***
ORIGIN_hex1804  ***
ORIGIN_hex1805  ***
ORIGIN_hex1806  ***
ORIGIN_hex1807  ***
ORIGIN_hex1808  ***
ORIGIN_hex1820  ***
ORIGIN_hex1821  ***
ORIGIN_hex1822  ***
ORIGIN_hex1823  ***
ORIGIN_hex1824  ***
ORIGIN_hex1827  ***
ORIGIN_hex1828  ***
ORIGIN_hex1829  ***
ORIGIN_hex1831  ***
ORIGIN_hex1833  ***
ORIGIN_hex1834  ***
ORIGIN_hex1835  ***
ORIGIN_hex1846  ***
ORIGIN_hex1847  ***
ORIGIN_hex1848  ***
ORIGIN_hex1849  ***
ORIGIN_hex1850  ***
ORIGIN_hex1852  ***
ORIGIN_hex1853  ***
ORIGIN_hex1854  ***
ORIGIN_hex1855  ***
ORIGIN_hex1856  ***
ORIGIN_hex1857  ***
ORIGIN_hex1858  ***
ORIGIN_hex1859  ***
ORIGIN_hex1860  ***
ORIGIN_hex1861  ***
ORIGIN_hex1862  ***
ORIGIN_hex1874  ***
ORIGIN_hex1875  ***
ORIGIN_hex1876  ***
ORIGIN_hex1877  ***
ORIGIN_hex1878  ***
ORIGIN_hex1879  ***
ORIGIN_hex1882  ***
ORIGIN_hex1883  ***
ORIGIN_hex1884  ***
ORIGIN_hex1886  ***
ORIGIN_hex1887  ***
ORIGIN_hex1888  ***
ORIGIN_hex1889  ***
ORIGIN_hex1890  ***
ORIGIN_hex1900  ***
ORIGIN_hex1901  ***
ORIGIN_hex1902  ***
ORIGIN_hex1903  ***
ORIGIN_hex1904  ***
ORIGIN_hex1905  ***
ORIGIN_hex1906  ***
ORIGIN_hex1907  ***
ORIGIN_hex1908  ***
ORIGIN_hex1909  ***
ORIGIN_hex1910  ***
ORIGIN_hex1912  ***
ORIGIN_hex1913  ***
ORIGIN_hex1914  ***
ORIGIN_hex1916  ***
ORIGIN_hex1928  ***
ORIGIN_hex1929  ***
ORIGIN_hex1930  ***
ORIGIN_hex1931  ***
ORIGIN_hex1932  ***
ORIGIN_hex1933  ***
ORIGIN_hex1934  ***
ORIGIN_hex1935  ***
ORIGIN_hex1936  ***
ORIGIN_hex1937  ***
ORIGIN_hex1938  ***
ORIGIN_hex1940  ***
ORIGIN_hex1941  ***
ORIGIN_hex1942  ***
ORIGIN_hex1954  ***
ORIGIN_hex1955  ***
ORIGIN_hex1956  ***
ORIGIN_hex1958  ***
ORIGIN_hex1959  ***
ORIGIN_hex1960  ***
ORIGIN_hex1961  ***
ORIGIN_hex1962  ***
ORIGIN_hex1963  ***
ORIGIN_hex1964  ***
ORIGIN_hex1967  ***
ORIGIN_hex1968  ***
ORIGIN_hex1982  ***
ORIGIN_hex1983  ***
ORIGIN_hex1984  ***
ORIGIN_hex1985  ***
ORIGIN_hex1986  ***
ORIGIN_hex1987  ***
ORIGIN_hex1988  ***
ORIGIN_hex1989  ***
ORIGIN_hex1990  ***
ORIGIN_hex1991  ***
ORIGIN_hex1992  ***
ORIGIN_hex1994  ***
ORIGIN_hex1995  ***
ORIGIN_hex2009  ***
ORIGIN_hex2010  ***
ORIGIN_hex2011  ***
ORIGIN_hex2012  ***
ORIGIN_hex2013  ***
ORIGIN_hex2014  ***
ORIGIN_hex2015  ***
ORIGIN_hex2016  ***
ORIGIN_hex2017  ***
ORIGIN_hex2021  ***
ORIGIN_hex2036  ***
ORIGIN_hex2037  ***
ORIGIN_hex2038  ***
ORIGIN_hex2039  ***
ORIGIN_hex2040  ***
ORIGIN_hex2041  ***
ORIGIN_hex2042  ***
ORIGIN_hex2043  ***
ORIGIN_hex2044  ***
ORIGIN_hex2046  ***
ORIGIN_hex2049  ***
ORIGIN_hex2063  ***
ORIGIN_hex2064  ***
ORIGIN_hex2065  ***
ORIGIN_hex2066  ***
ORIGIN_hex2067  ***
ORIGIN_hex2068  ***
ORIGIN_hex2069  ***
ORIGIN_hex2070  ***
ORIGIN_hex2071  ***
ORIGIN_hex2072  ***
ORIGIN_hex2074  ***
ORIGIN_hex2089  ***
ORIGIN_hex2090  ***
ORIGIN_hex2091  ***
ORIGIN_hex2092  ***
ORIGIN_hex2093  ***
ORIGIN_hex2094  ***
ORIGIN_hex2095  ***
ORIGIN_hex2096  ***
ORIGIN_hex2097  ***
ORIGIN_hex2098  ***
ORIGIN_hex2100  ***
ORIGIN_hex2101  ***
ORIGIN_hex2102  ***
ORIGIN_hex2116  ***
ORIGIN_hex2117  ***
ORIGIN_hex2119  ***
ORIGIN_hex2120  ***
ORIGIN_hex2121  ***
ORIGIN_hex2122  ***
ORIGIN_hex2123  ***
ORIGIN_hex2124  ***
ORIGIN_hex2125  ***
ORIGIN_hex2126  ***
ORIGIN_hex2129  ***
ORIGIN_hex2146  ***
ORIGIN_hex2147  ***
ORIGIN_hex2148  ***
ORIGIN_hex2149  ***
ORIGIN_hex2150  ***
ORIGIN_hex2151  ***
ORIGIN_hex2152  ***
ORIGIN_hex2153  ***
ORIGIN_hex2154  ***
ORIGIN_hex2155  ***
ORIGIN_hex2171  ***
ORIGIN_hex2172  ***
ORIGIN_hex2174  ***
ORIGIN_hex2175  ***
ORIGIN_hex2176  ***
ORIGIN_hex2177  ***
ORIGIN_hex2178  ***
ORIGIN_hex2179  ***
ORIGIN_hex2180  ***
ORIGIN_hex2181  ***
ORIGIN_hex2182  ***
ORIGIN_hex2200  ***
ORIGIN_hex2201  ***
ORIGIN_hex2202  ***
ORIGIN_hex2203  ***
ORIGIN_hex2204  ***
ORIGIN_hex2205  ***
ORIGIN_hex2206  ***
ORIGIN_hex2207  ***
ORIGIN_hex2208  ***
ORIGIN_hex2209  ***
ORIGIN_hex2227  ***
ORIGIN_hex2228  ***
ORIGIN_hex2229  ***
ORIGIN_hex2230  ***
ORIGIN_hex2231  ***
ORIGIN_hex2233  ***
ORIGIN_hex2234  ***
ORIGIN_hex2235  ***
ORIGIN_hex2254  ***
ORIGIN_hex2255  ***
ORIGIN_hex2256  ***
ORIGIN_hex2257  ***
ORIGIN_hex2258  ***
ORIGIN_hex2259  ***
ORIGIN_hex2260  ***
ORIGIN_hex2261  ***
ORIGIN_hex2262  ***
ORIGIN_hex2281  ***
ORIGIN_hex2282  ***
ORIGIN_hex2283  ***
ORIGIN_hex2284  ***
ORIGIN_hex2285  ***
ORIGIN_hex2286  ***
ORIGIN_hex2287  ***
ORIGIN_hex2288  ***
ORIGIN_hex2308  ***
ORIGIN_hex2309  ***
ORIGIN_hex2310  ***
ORIGIN_hex2311  ***
ORIGIN_hex2312  ***
ORIGIN_hex2313  ***
ORIGIN_hex2314  ***
ORIGIN_hex2315  ***
ORIGIN_hex2316  ***
ORIGIN_hex2317  ***
ORIGIN_hex2335  ***
ORIGIN_hex2336  ***
ORIGIN_hex2337  ***
ORIGIN_hex2338  ***
ORIGIN_hex2339  ***
ORIGIN_hex2340  ***
ORIGIN_hex2341  ***
ORIGIN_hex2342  ***
ORIGIN_hex2343  ***
ORIGIN_hex2362  ***
ORIGIN_hex2363  ***
ORIGIN_hex2364  ***
ORIGIN_hex2365  ***
ORIGIN_hex2366  ***
ORIGIN_hex2367  ***
ORIGIN_hex2368  ***
ORIGIN_hex2369  ***
ORIGIN_hex2370  ***
ORIGIN_hex2371  ***
ORIGIN_hex2389  ***
ORIGIN_hex2390  ***
ORIGIN_hex2391  ***
ORIGIN_hex2392  ***
ORIGIN_hex2393  ***
ORIGIN_hex2394  ***
ORIGIN_hex2395  ***
ORIGIN_hex2396  ***
ORIGIN_hex2397  ***
ORIGIN_hex2398  ***
ORIGIN_hex2416  ***
ORIGIN_hex2417  ***
ORIGIN_hex2418  ***
ORIGIN_hex2419  ***
ORIGIN_hex2420  ***
ORIGIN_hex2422  ***
ORIGIN_hex2423  ***
ORIGIN_hex2424  ***
ORIGIN_hex2425  ***
ORIGIN_hex2426  ***
ORIGIN_hex2443  ***
ORIGIN_hex2444  ***
ORIGIN_hex2445  ***
ORIGIN_hex2448  ***
ORIGIN_hex2449  ***
ORIGIN_hex2450  ***
ORIGIN_hex2451  ***
ORIGIN_hex2452  ***
ORIGIN_hex2471  ***
ORIGIN_hex2472  ***
ORIGIN_hex2473  ***
ORIGIN_hex2476  ***
ORIGIN_hex2478  ***
ORIGIN_hex2479  ***
ORIGIN_hex2480  ***
ORIGIN_hex2497  ***
ORIGIN_hex2498  ***
ORIGIN_hex2499  ***
ORIGIN_hex2500  ***
ORIGIN_hex2503  ***
ORIGIN_hex2504  ***
ORIGIN_hex2505  ***
ORIGIN_hex2525  ***
ORIGIN_hex2526  ***
ORIGIN_hex2527  ***
ORIGIN_hex2531  ***
ORIGIN_hex2532  ***
ORIGIN_hex2533  ***
ORIGIN_hex2551  ***
ORIGIN_hex2552  ***
ORIGIN_hex2553  ***
ORIGIN_hex2554  ***
ORIGIN_hex2557  ***
ORIGIN_hex2559  ***
ORIGIN_hex2579  ***
ORIGIN_hex2580  ***
ORIGIN_hex2581  ***
ORIGIN_hex2584  ***
ORIGIN_hex2605  ***
ORIGIN_hex2606  ***
ORIGIN_hex2607  ***
ORIGIN_hex2608  ***
ORIGIN_hex2609  ***
ORIGIN_hex2610  ***
ORIGIN_hex2611  ***
ORIGIN_hex2633  ***
ORIGIN_hex2634  ***
ORIGIN_hex2635  ***
ORIGIN_hex2636  ***
ORIGIN_hex2637  ***
ORIGIN_hex2638  ***
ORIGIN_hex2660  ***
ORIGIN_hex2661  ***
ORIGIN_hex2662  ***
ORIGIN_hex2663  ***
ORIGIN_hex2664  ***
ORIGIN_hex2665  ***
ORIGIN_hex2687  ***
ORIGIN_hex2688  ***
ORIGIN_hex2689  ***
ORIGIN_hex2690  ***
ORIGIN_hex2691  ***
ORIGIN_hex2693  ***
ORIGIN_hex2714  ***
ORIGIN_hex2715  ***
ORIGIN_hex2716  ***
ORIGIN_hex2717  ***
ORIGIN_hex2718  ***
ORIGIN_hex2719  ***
ORIGIN_hex2742  ***
ORIGIN_hex2743  ***
ORIGIN_hex2744  ***
ORIGIN_hex2745  ***
ORIGIN_hex2746  ***
ORIGIN_hex2747  ***
ORIGIN_hex2768  ***
ORIGIN_hex2769  ***
ORIGIN_hex2770  ***
ORIGIN_hex2771  ***
ORIGIN_hex2772  ***
ORIGIN_hex2773  ***
ORIGIN_hex2795  ***
ORIGIN_hex2796  ***
ORIGIN_hex2797  ***
ORIGIN_hex2798  ***
ORIGIN_hex2799  ***
ORIGIN_hex2800  ***
ORIGIN_hex2801  ***
ORIGIN_hex2822  ***
ORIGIN_hex2823  ***
ORIGIN_hex2824  ***
ORIGIN_hex2825  ***
ORIGIN_hex2826  ***
ORIGIN_hex2827  ***
ORIGIN_hex2850  ***
ORIGIN_hex2851  ***
ORIGIN_hex2852  ***
ORIGIN_hex2853  ***
ORIGIN_hex2854  ***
ORIGIN_hex2877  ***
ORIGIN_hex2878  ***
ORIGIN_hex2879  ***
ORIGIN_hex2880  ***
ORIGIN_hex2881  ***
ORIGIN_hex2905  ***
ORIGIN_hex2906  ***
ORIGIN_hex2907  ***
ORIGIN_hex2908  ***
ORIGIN_hex2909  ***
ORIGIN_hex2931  ***
ORIGIN_hex2932  ***
ORIGIN_hex2933  ***
ORIGIN_hex2934  ***
ORIGIN_hex2959  ***
ORIGIN_hex2960  ***
ORIGIN_hex2961  ***
ORIGIN_hex2962  ***
ORIGIN_hex2963  ***
ORIGIN_hex2987  ***
ORIGIN_hex2988  ***
ORIGIN_hex2989  ***
ORIGIN_hex2990  ***
ORIGIN_hex3015  ***
ORIGIN_hex3016  ***
ORIGIN_hex3017  ***
ORIGIN_hex3040  ***
ORIGIN_hex3043  ***
ORIGIN_hex3044  ***
ORIGIN_hex3068  ***
ORIGIN_hex3070  ***
ORIGIN_hex3072  ***
ORIGIN_hex3092  ***
ORIGIN_hex3098  ***
ORIGIN_hex3123  ***
ORIGIN_hex3126  ***
ORIGIN_hex3151  ***
ORIGIN_hex3152  ***
ORIGIN_hex3173  ***
ORIGIN_hex3178  ***
ORIGIN_hex3179  ***
ORIGIN_hex3205  ***
ORIGIN_hex3206  ***
ORIGIN_hex3232  ***
ORIGIN_hex3233  ***
ORIGIN_hex3308  ***
d_biz_count     ***
d_school_count  ***
d_fin_count     ***
d_busstop_count ***
d_mrtlrt_count  ***
dist            ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

(Dispersion parameter for poisson family taken to be 1)

    Null deviance: 341321396  on 65051  degrees of freedom
Residual deviance:  37509430  on 64225  degrees of freedom
AIC: 37868106

Number of Fisher Scoring iterations: 7
Insights
  • By absolute value, the most influential variable is the Distance between origin and destination. The negative coefficient means there is an inverse relationship between Distance and Number of Trips: More trips are made when the distance is nearer, while less trips are made when the distance is further.
  • The most attractive variables appear to be Financial Services and School counts with a coefficient of 0.396 and 0.334 respectively: More trips are made when there is higher financial services / school density at the destination site, while less trips are made when there is lower financial services / school density at the destination site.
Code
CalcRSquared(orcSIM$data$TOTAL_TRIPS, orcSIM$fitted.values)
[1] 0.3269854683
Insights

With reference to the R2 above, it can be concluded that the model accounts for about 32.69% of the variation of flows.

Destination Constrained Spatial Interaction Model

Next, fit a destination constrained SIM by using the code chunk below.

  • For destination constrained SIM, only explanatory variables which represent how propulsive the origins are will be used. This is because such models emphasize the demand or attractiveness of the destinations rather than the limitations or capacities of the origins. The demand or attractiveness of the destination sites determines the potential for generating interactions or flows.
  • Additionally, “-1” is added to the formula to remove the intercept that is inserted by glm into the model by default. Since the destination has already been constrained, the concept of an intercept would not be relevant.
Code
# Generate the formula dynamically
formula_string <- paste("TOTAL_TRIPS ~ DESTIN_hex +", 
                        paste(origin_var, collapse = " + "), "+ dist - 1")

# Convert the string to a formula
formula <- as.formula(formula_string)

decSIM <- glm(formula,
              family = poisson(link = "log"),
              data = flow_data_log,
              na.action = na.exclude)

summary() is used to print out the results of the model.

Code
summary(decSIM)

Call:
glm(formula = formula, family = poisson(link = "log"), data = flow_data_log, 
    na.action = na.exclude)

Deviance Residuals: 
       Min          1Q      Median          3Q         Max  
-219.74686   -12.20759    -5.68564     0.48324   626.37247  

Coefficients:
                     Estimate    Std. Error     z value               Pr(>|z|)
DESTIN_hex118   15.7875802451  0.0504969831   312.64403 < 0.000000000000000222
DESTIN_hex146   16.8330086924  0.0226830957   742.09486 < 0.000000000000000222
DESTIN_hex174   16.4524339851  0.0283408596   580.51994 < 0.000000000000000222
DESTIN_hex175   16.5289299839  0.0193330155   854.95871 < 0.000000000000000222
DESTIN_hex200   15.9654171155  0.0344714917   463.14843 < 0.000000000000000222
DESTIN_hex201   16.5453668063  0.0137470867  1203.55441 < 0.000000000000000222
DESTIN_hex202   15.4972965279  0.0237653288   652.09687 < 0.000000000000000222
DESTIN_hex203   16.3180049162  0.0200188828   815.13065 < 0.000000000000000222
DESTIN_hex227   14.7128755555  0.0404384688   363.83365 < 0.000000000000000222
DESTIN_hex228   15.8176219351  0.0169450151   933.46756 < 0.000000000000000222
DESTIN_hex229   12.8346838421  0.1005256798   127.67567 < 0.000000000000000222
DESTIN_hex230   16.9513311517  0.0111565958  1519.39995 < 0.000000000000000222
DESTIN_hex231   14.3505285039  0.0324154012   442.70711 < 0.000000000000000222
DESTIN_hex254   16.6633813658  0.0184568291   902.83013 < 0.000000000000000222
DESTIN_hex255   15.6888781519  0.0195312878   803.26901 < 0.000000000000000222
DESTIN_hex256   16.7141394313  0.0124910296  1338.09141 < 0.000000000000000222
DESTIN_hex257   15.0893631494  0.0209887771   718.92531 < 0.000000000000000222
DESTIN_hex258   15.6453136303  0.0213193723   733.85433 < 0.000000000000000222
DESTIN_hex259   15.5798036489  0.0151417717  1028.92871 < 0.000000000000000222
DESTIN_hex281   14.4873855065  0.0433583864   334.13110 < 0.000000000000000222
DESTIN_hex282   14.8049118760  0.0284373566   520.61491 < 0.000000000000000222
DESTIN_hex284   16.6487815564  0.0095343271  1746.19366 < 0.000000000000000222
DESTIN_hex285   15.7606431712  0.0119050254  1323.86472 < 0.000000000000000222
DESTIN_hex286   16.0802142973  0.0100875116  1594.07145 < 0.000000000000000222
DESTIN_hex312   16.2837191369  0.0120037112  1356.55706 < 0.000000000000000222
DESTIN_hex313   15.1203991634  0.0242482863   623.56568 < 0.000000000000000222
DESTIN_hex314   15.8032211277  0.0166619690   948.46060 < 0.000000000000000222
DESTIN_hex336   14.4556717763  0.0416147571   347.36889 < 0.000000000000000222
DESTIN_hex338   15.0038331236  0.0233940195   641.35337 < 0.000000000000000222
DESTIN_hex339   14.0894908005  0.0250953830   561.43757 < 0.000000000000000222
DESTIN_hex340   12.9987498401  0.2582091920    50.34193 < 0.000000000000000222
DESTIN_hex366   15.0478450764  0.0155410981   968.26138 < 0.000000000000000222
DESTIN_hex367   16.0233734108  0.0112919545  1419.00797 < 0.000000000000000222
DESTIN_hex391   15.5780397168  0.0290424392   536.38882 < 0.000000000000000222
DESTIN_hex392   15.2472723665  0.0177594137   858.54593 < 0.000000000000000222
DESTIN_hex393   16.4979427100  0.0087405849  1887.51016 < 0.000000000000000222
DESTIN_hex394   13.6720360748  0.0785955434   173.95434 < 0.000000000000000222
DESTIN_hex419   16.6173789989  0.0176651682   940.68615 < 0.000000000000000222
DESTIN_hex420   15.8574556919  0.0153421529  1033.58738 < 0.000000000000000222
DESTIN_hex421   16.0987615305  0.0234180562   687.45080 < 0.000000000000000222
DESTIN_hex445   16.9092537549  0.0123031993  1374.37859 < 0.000000000000000222
DESTIN_hex446   14.7410773034  0.0199467947   739.01985 < 0.000000000000000222
DESTIN_hex447   15.3349457998  0.0173829471   882.18331 < 0.000000000000000222
DESTIN_hex472   14.5045715836  0.0321581062   451.03936 < 0.000000000000000222
DESTIN_hex473   16.4015776419  0.0123860716  1324.19529 < 0.000000000000000222
DESTIN_hex474   15.4668241484  0.0161447261   958.01094 < 0.000000000000000222
DESTIN_hex499   16.3729764669  0.0125387136  1305.79395 < 0.000000000000000222
DESTIN_hex500   15.2435540250  0.0149356487  1020.61546 < 0.000000000000000222
DESTIN_hex526   17.0305828675  0.0101218757  1682.55207 < 0.000000000000000222
DESTIN_hex527   16.5275504496  0.0157777507  1047.52260 < 0.000000000000000222
DESTIN_hex528   17.2912231415  0.0081600176  2119.01787 < 0.000000000000000222
DESTIN_hex552   16.1481224170  0.0193949216   832.59540 < 0.000000000000000222
DESTIN_hex553   13.1155134162  0.0591700025   221.65815 < 0.000000000000000222
DESTIN_hex554   16.6558798231  0.0104848202  1588.57086 < 0.000000000000000222
DESTIN_hex555   16.9586839668  0.0095303127  1779.44675 < 0.000000000000000222
DESTIN_hex581   16.8593593216  0.0084309575  1999.69687 < 0.000000000000000222
DESTIN_hex582   15.5407496544  0.0120839140  1286.06920 < 0.000000000000000222
DESTIN_hex607   16.0809821600  0.0175538211   916.09582 < 0.000000000000000222
DESTIN_hex608   16.1356606822  0.0121964031  1322.98519 < 0.000000000000000222
DESTIN_hex609   16.5550066110  0.0054386383  3043.96167 < 0.000000000000000222
DESTIN_hex610   16.7543297870  0.0083231044  2012.99046 < 0.000000000000000222
DESTIN_hex611   14.8230705108  0.0272558313   543.84951 < 0.000000000000000222
DESTIN_hex634   16.7247627768  0.0141426566  1182.57575 < 0.000000000000000222
DESTIN_hex635   16.4615003621  0.0102459640  1606.63265 < 0.000000000000000222
DESTIN_hex636   15.1780384311  0.0114314843  1327.73996 < 0.000000000000000222
DESTIN_hex638   17.6573135800  0.0045499248  3880.79239 < 0.000000000000000222
DESTIN_hex661   15.6941049406  0.0213987652   733.41171 < 0.000000000000000222
DESTIN_hex662   16.8602925805  0.0115714996  1457.05338 < 0.000000000000000222
DESTIN_hex663   15.2824479107  0.0098304553  1554.60225 < 0.000000000000000222
DESTIN_hex664   16.0328953083  0.0090457358  1772.42578 < 0.000000000000000222
DESTIN_hex665   15.4115196882  0.0117201924  1314.95449 < 0.000000000000000222
DESTIN_hex689   15.3107966826  0.0168543026   908.42066 < 0.000000000000000222
DESTIN_hex690   15.7289931344  0.0098040792  1604.33150 < 0.000000000000000222
DESTIN_hex692   14.9413460042  0.0132031196  1131.65270 < 0.000000000000000222
DESTIN_hex693   14.5035365282  0.0250503715   578.97491 < 0.000000000000000222
DESTIN_hex715   15.2470186024  0.0217890486   699.75605 < 0.000000000000000222
DESTIN_hex716   15.1608504845  0.0163297728   928.41772 < 0.000000000000000222
DESTIN_hex717   14.9371944442  0.0108253269  1379.83773 < 0.000000000000000222
DESTIN_hex718   16.4939281714  0.0053350919  3091.59214 < 0.000000000000000222
DESTIN_hex719   14.8379136176  0.0191894910   773.23122 < 0.000000000000000222
DESTIN_hex720   12.9237971174  0.0518914552   249.05444 < 0.000000000000000222
DESTIN_hex743   16.3932147306  0.0088335216  1855.79607 < 0.000000000000000222
DESTIN_hex744   15.7779459910  0.0090856821  1736.57253 < 0.000000000000000222
DESTIN_hex745   14.8137587204  0.0086160873  1719.31390 < 0.000000000000000222
DESTIN_hex746   14.9063300245  0.0090653606  1644.31738 < 0.000000000000000222
DESTIN_hex747   16.5031217042  0.0072738757  2268.82097 < 0.000000000000000222
DESTIN_hex748   14.7713243641  0.0195764377   754.54608 < 0.000000000000000222
DESTIN_hex769   15.2329909686  0.0162516953   937.31704 < 0.000000000000000222
DESTIN_hex770   17.0806186638  0.0066337040  2574.82374 < 0.000000000000000222
DESTIN_hex771   15.5803146386  0.0072287008  2155.34092 < 0.000000000000000222
DESTIN_hex772   16.6860339490  0.0037570066  4441.31079 < 0.000000000000000222
DESTIN_hex773   14.3036628475  0.0136785059  1045.70360 < 0.000000000000000222
DESTIN_hex774   15.4246522874  0.0120375792  1281.37493 < 0.000000000000000222
DESTIN_hex775   15.0234943922  0.0154315127   973.55941 < 0.000000000000000222
DESTIN_hex776   11.2249185885  0.1715118023    65.44692 < 0.000000000000000222
DESTIN_hex777   13.9069128845  0.0426980358   325.70381 < 0.000000000000000222
DESTIN_hex797   14.9898016794  0.0171641279   873.32148 < 0.000000000000000222
DESTIN_hex798   14.3194681041  0.0464708087   308.13899 < 0.000000000000000222
DESTIN_hex799   16.2808633599  0.0044946504  3622.27577 < 0.000000000000000222
DESTIN_hex800   15.6151879164  0.0058729432  2658.83516 < 0.000000000000000222
DESTIN_hex802   12.1071103105  0.0731615177   165.48468 < 0.000000000000000222
DESTIN_hex803   14.1893919633  0.0328824057   431.51928 < 0.000000000000000222
DESTIN_hex805   13.9828242405  0.0529791340   263.93078 < 0.000000000000000222
DESTIN_hex806   15.9198312663  0.0159737123   996.62689 < 0.000000000000000222
DESTIN_hex823   15.7593775425  0.0178317648   883.78115 < 0.000000000000000222
DESTIN_hex824   16.3658513715  0.0113474195  1442.25314 < 0.000000000000000222
DESTIN_hex825   15.5984650582  0.0109109570  1429.61475 < 0.000000000000000222
DESTIN_hex826   17.5205062676  0.0027216418  6437.47695 < 0.000000000000000222
DESTIN_hex827   16.1312655016  0.0050738279  3179.30877 < 0.000000000000000222
DESTIN_hex832   11.4994578118  0.2000110747    57.49411 < 0.000000000000000222
DESTIN_hex833   13.9777548019  0.0503014064   277.88000 < 0.000000000000000222
DESTIN_hex851   15.0466182866  0.0206141345   729.91754 < 0.000000000000000222
DESTIN_hex852   16.5391972635  0.0093320388  1772.30267 < 0.000000000000000222
DESTIN_hex853   15.0428989487  0.0072891136  2063.74872 < 0.000000000000000222
DESTIN_hex854   15.2837894053  0.0061190594  2497.73511 < 0.000000000000000222
DESTIN_hex856   10.3452640750  0.1961290036    52.74724 < 0.000000000000000222
DESTIN_hex861   13.7175340261  0.0510122026   268.90691 < 0.000000000000000222
DESTIN_hex862   14.9453734432  0.0355242654   420.70887 < 0.000000000000000222
DESTIN_hex878   16.0104629061  0.0124197520  1289.11294 < 0.000000000000000222
DESTIN_hex879   16.0106445558  0.0071352872  2243.86828 < 0.000000000000000222
DESTIN_hex880   14.7807665792  0.0073914818  1999.70275 < 0.000000000000000222
DESTIN_hex881   15.1737564376  0.0077179192  1966.04241 < 0.000000000000000222
DESTIN_hex888   13.2316761638  0.1361074137    97.21496 < 0.000000000000000222
DESTIN_hex889   14.6109592039  0.0477369792   306.07214 < 0.000000000000000222
DESTIN_hex905   15.0876949653  0.0174181433   866.20570 < 0.000000000000000222
DESTIN_hex906   14.5696529606  0.0185853457   783.93231 < 0.000000000000000222
DESTIN_hex907   15.9644587890  0.0065569094  2434.75360 < 0.000000000000000222
DESTIN_hex908   15.7213832505  0.0053233225  2953.30281 < 0.000000000000000222
DESTIN_hex910   15.9417618479  0.0126266925  1262.54456 < 0.000000000000000222
DESTIN_hex932   15.7787395373  0.0090225250  1748.81638 < 0.000000000000000222
DESTIN_hex933   14.8534100455  0.0114701439  1294.96284 < 0.000000000000000222
DESTIN_hex934   15.4521352882  0.0058135915  2657.93275 < 0.000000000000000222
DESTIN_hex935   15.7790572079  0.0051981078  3035.53868 < 0.000000000000000222
DESTIN_hex937   15.8148949490  0.0101394520  1559.73863 < 0.000000000000000222
DESTIN_hex959   16.9352365229  0.0058237660  2907.95278 < 0.000000000000000222
DESTIN_hex960   15.7084048349  0.0063962320  2455.88417 < 0.000000000000000222
DESTIN_hex961   15.3148375563  0.0066272049  2310.90449 < 0.000000000000000222
DESTIN_hex962   17.4802985719  0.0028787425  6072.19949 < 0.000000000000000222
DESTIN_hex986   14.5544569409  0.0185608432   784.14848 < 0.000000000000000222
DESTIN_hex987   16.1486996399  0.0050024690  3228.14585 < 0.000000000000000222
DESTIN_hex988   14.3375544106  0.0114313683  1254.22907 < 0.000000000000000222
DESTIN_hex989   15.8453922518  0.0048542064  3264.26011 < 0.000000000000000222
DESTIN_hex991   15.5850491740  0.0106812897  1459.09807 < 0.000000000000000222
DESTIN_hex1013  15.2136717909  0.0197767908   769.26899 < 0.000000000000000222
DESTIN_hex1014  13.9777799953  0.0150266039   930.20220 < 0.000000000000000222
DESTIN_hex1015  13.3367178410  0.0212307862   628.17824 < 0.000000000000000222
DESTIN_hex1016  15.1660253664  0.0060002078  2527.58335 < 0.000000000000000222
DESTIN_hex1042  16.0551035905  0.0054453646  2948.39829 < 0.000000000000000222
DESTIN_hex1043  15.6128945868  0.0055221808  2827.30594 < 0.000000000000000222
DESTIN_hex1045  13.3746046212  0.0259878733   514.64791 < 0.000000000000000222
DESTIN_hex1067  16.6912893083  0.0061432200  2717.02614 < 0.000000000000000222
DESTIN_hex1068  13.3734642996  0.0322913282   414.15033 < 0.000000000000000222
DESTIN_hex1069  13.3691227755  0.0179814547   743.49506 < 0.000000000000000222
DESTIN_hex1070  15.7666099582  0.0046108584  3419.45221 < 0.000000000000000222
DESTIN_hex1078  14.3060853160  0.0378878261   377.59056 < 0.000000000000000222
DESTIN_hex1093  15.8905290620  0.0107859892  1473.25654 < 0.000000000000000222
DESTIN_hex1094  14.4612360995  0.0140930893  1026.12250 < 0.000000000000000222
DESTIN_hex1095  12.9945739805  0.0232437570   559.05652 < 0.000000000000000222
DESTIN_hex1096  15.3113914219  0.0057466166  2664.41848 < 0.000000000000000222
DESTIN_hex1097  15.3861433447  0.0063775228  2412.55794 < 0.000000000000000222
DESTIN_hex1099  15.7427328522  0.0062138246  2533.50131 < 0.000000000000000222
DESTIN_hex1100  12.7782939370  0.0461208750   277.06096 < 0.000000000000000222
DESTIN_hex1122  15.2864151082  0.0077980751  1960.28058 < 0.000000000000000222
DESTIN_hex1123  16.9648809875  0.0031799672  5334.92327 < 0.000000000000000222
DESTIN_hex1124  15.7087448411  0.0049000163  3205.85563 < 0.000000000000000222
DESTIN_hex1125  15.1167874099  0.0072396275  2088.06150 < 0.000000000000000222
DESTIN_hex1126  11.4466483818  0.0601221502   190.38987 < 0.000000000000000222
DESTIN_hex1127  15.2350981295  0.0065835293  2314.12324 < 0.000000000000000222
DESTIN_hex1128  15.8283753604  0.0075037416  2109.39772 < 0.000000000000000222
DESTIN_hex1132  15.4306421172  0.0196438670   785.51958 < 0.000000000000000222
DESTIN_hex1147  13.4950719471  0.0328792702   410.44317 < 0.000000000000000222
DESTIN_hex1148  15.3119112805  0.0080922254  1892.17559 < 0.000000000000000222
DESTIN_hex1149  14.7178438991  0.0087794126  1676.40418 < 0.000000000000000222
DESTIN_hex1150  15.7059752049  0.0051027569  3077.93915 < 0.000000000000000222
DESTIN_hex1151  15.1827764964  0.0057308517  2649.30541 < 0.000000000000000222
DESTIN_hex1152  14.9506043852  0.0072339366  2066.73145 < 0.000000000000000222
DESTIN_hex1153  15.1129147671  0.0073453708  2057.47472 < 0.000000000000000222
DESTIN_hex1154  17.1198293876  0.0030866347  5546.43846 < 0.000000000000000222
DESTIN_hex1155  12.7492810523  0.0359117359   355.01712 < 0.000000000000000222
DESTIN_hex1158  14.0254731886  0.0295885861   474.01634 < 0.000000000000000222
DESTIN_hex1174  15.7079565960  0.0114218398  1375.25626 < 0.000000000000000222
DESTIN_hex1175  16.9749978205  0.0077793652  2182.05438 < 0.000000000000000222
DESTIN_hex1176  15.8227951312  0.0052732058  3000.60263 < 0.000000000000000222
DESTIN_hex1177  15.7687029395  0.0053313395  2957.73756 < 0.000000000000000222
DESTIN_hex1178  15.2015101090  0.0058831654  2583.89983 < 0.000000000000000222
DESTIN_hex1179  14.3801072071  0.0089860766  1600.26536 < 0.000000000000000222
DESTIN_hex1180  13.0150834867  0.0178463397   729.28587 < 0.000000000000000222
DESTIN_hex1181  15.8493837535  0.0045327965  3496.60169 < 0.000000000000000222
DESTIN_hex1182  15.5181584561  0.0069495551  2232.97151 < 0.000000000000000222
DESTIN_hex1183  15.5938181659  0.0097643428  1597.01666 < 0.000000000000000222
DESTIN_hex1185  15.1622432967  0.0154788296   979.54714 < 0.000000000000000222
DESTIN_hex1201  15.0151968023  0.0136749331  1098.00880 < 0.000000000000000222
DESTIN_hex1202  15.3841574498  0.0077301871  1990.14037 < 0.000000000000000222
DESTIN_hex1203  16.4245740709  0.0049732344  3302.59396 < 0.000000000000000222
DESTIN_hex1205  16.6937626861  0.0032315609  5165.85125 < 0.000000000000000222
DESTIN_hex1206  15.6750402494  0.0053665717  2920.86665 < 0.000000000000000222
DESTIN_hex1207  15.5511865143  0.0050127203  3102.34477 < 0.000000000000000222
DESTIN_hex1209  17.0012171758  0.0041988133  4049.05290 < 0.000000000000000222
DESTIN_hex1210  15.2130295552  0.0142760067  1065.63620 < 0.000000000000000222
DESTIN_hex1211  14.9627263586  0.0166910068   896.45439 < 0.000000000000000222
DESTIN_hex1212  15.0678429430  0.0169159850   890.74582 < 0.000000000000000222
DESTIN_hex1228  15.2720672244  0.0136104048  1122.08766 < 0.000000000000000222
DESTIN_hex1229  15.6699341128  0.0067569735  2319.07585 < 0.000000000000000222
DESTIN_hex1230  14.7446648844  0.0096284196  1531.36917 < 0.000000000000000222
DESTIN_hex1231  17.0174971282  0.0052868536  3218.83269 < 0.000000000000000222
DESTIN_hex1232  15.8505609221  0.0046763945  3389.48329 < 0.000000000000000222
DESTIN_hex1233  16.9318635282  0.0039513458  4285.08779 < 0.000000000000000222
DESTIN_hex1235  16.0770928448  0.0046606788  3449.51745 < 0.000000000000000222
DESTIN_hex1236  13.9381483568  0.0126060023  1105.67554 < 0.000000000000000222
DESTIN_hex1237  16.3380895607  0.0060141062  2716.62802 < 0.000000000000000222
DESTIN_hex1238  13.7637909497  0.0245311881   561.07315 < 0.000000000000000222
DESTIN_hex1239  15.0503702321  0.0151865420   991.03339 < 0.000000000000000222
DESTIN_hex1240  13.4811803543  0.0627823032   214.72899 < 0.000000000000000222
DESTIN_hex1255  15.9934710430  0.0099180039  1612.56955 < 0.000000000000000222
DESTIN_hex1256  14.6789876679  0.0097365339  1507.61943 < 0.000000000000000222
DESTIN_hex1257  15.2765981838  0.0076523780  1996.32039 < 0.000000000000000222
DESTIN_hex1258  16.3738291994  0.0046192706  3544.67847 < 0.000000000000000222
DESTIN_hex1259  15.1085321486  0.0068821311  2195.32756 < 0.000000000000000222
DESTIN_hex1261  15.0823597935  0.0059937334  2516.35480 < 0.000000000000000222
DESTIN_hex1262  15.2408900971  0.0062813469  2426.37294 < 0.000000000000000222
DESTIN_hex1263  14.0956791534  0.0172560843   816.85270 < 0.000000000000000222
DESTIN_hex1264  15.9060233816  0.0076988545  2066.02468 < 0.000000000000000222
DESTIN_hex1265  13.5332164765  0.0257149138   526.27890 < 0.000000000000000222
DESTIN_hex1266  15.5290379250  0.0131117571  1184.35979 < 0.000000000000000222
DESTIN_hex1282  14.8268876405  0.0125192297  1184.32907 < 0.000000000000000222
DESTIN_hex1283  15.5592056157  0.0058837208  2644.45004 < 0.000000000000000222
DESTIN_hex1284  15.0125043652  0.0085564103  1754.53303 < 0.000000000000000222
DESTIN_hex1285  15.9225221859  0.0059468736  2677.46102 < 0.000000000000000222
DESTIN_hex1286  14.3493052593  0.0102282762  1402.90553 < 0.000000000000000222
DESTIN_hex1287  15.0706489339  0.0087603273  1720.32943 < 0.000000000000000222
DESTIN_hex1288  14.7380190036  0.0085966659  1714.38779 < 0.000000000000000222
DESTIN_hex1289  15.9762676966  0.0040669604  3928.30663 < 0.000000000000000222
DESTIN_hex1293  14.5764897695  0.0218624621   666.73596 < 0.000000000000000222
DESTIN_hex1308  14.3160321193  0.0147057198   973.50095 < 0.000000000000000222
DESTIN_hex1309  16.1996369072  0.0048888270  3313.60404 < 0.000000000000000222
DESTIN_hex1310  17.2588521697  0.0029443913  5861.60271 < 0.000000000000000222
DESTIN_hex1311  16.1879762864  0.0076878981  2105.64396 < 0.000000000000000222
DESTIN_hex1312  13.5697684117  0.0202778026   669.19324 < 0.000000000000000222
DESTIN_hex1314  15.9659732322  0.0054393022  2935.29805 < 0.000000000000000222
DESTIN_hex1315  16.8906045455  0.0031376243  5383.24643 < 0.000000000000000222
DESTIN_hex1316  14.4115601483  0.0106117318  1358.07807 < 0.000000000000000222
DESTIN_hex1318  15.3403057423  0.0188807909   812.48216 < 0.000000000000000222
DESTIN_hex1319  17.4933347231  0.0037989852  4604.73878 < 0.000000000000000222
DESTIN_hex1320  14.7211279219  0.0171100258   860.38023 < 0.000000000000000222
DESTIN_hex1335  12.3894449199  0.0884156456   140.12729 < 0.000000000000000222
DESTIN_hex1336  16.0926292594  0.0053299423  3019.28772 < 0.000000000000000222
DESTIN_hex1337  15.5182192370  0.0051667580  3003.47320 < 0.000000000000000222
DESTIN_hex1338  14.4617365083  0.0112928747  1280.60718 < 0.000000000000000222
DESTIN_hex1339  14.5426856174  0.0170779967   851.54517 < 0.000000000000000222
DESTIN_hex1340  14.0947574873  0.0125993596  1118.68840 < 0.000000000000000222
DESTIN_hex1341  14.6750834558  0.0097428443  1506.24222 < 0.000000000000000222
DESTIN_hex1342  15.0693918753  0.0075520400  1995.40679 < 0.000000000000000222
DESTIN_hex1343  14.6041934773  0.0079838098  1829.22613 < 0.000000000000000222
DESTIN_hex1347  14.9530495973  0.0118505040  1261.80706 < 0.000000000000000222
DESTIN_hex1348  16.1556429824  0.0053754526  3005.44794 < 0.000000000000000222
DESTIN_hex1362  15.7143250943  0.0061963367  2536.06700 < 0.000000000000000222
DESTIN_hex1363  15.8824513808  0.0054459914  2916.35630 < 0.000000000000000222
DESTIN_hex1364  14.9973005481  0.0074327497  2017.73250 < 0.000000000000000222
DESTIN_hex1366  15.5501910025  0.0064336787  2416.99838 < 0.000000000000000222
DESTIN_hex1367  13.1469677966  0.0222145619   591.81756 < 0.000000000000000222
DESTIN_hex1368  15.9375610169  0.0067472032  2362.09888 < 0.000000000000000222
DESTIN_hex1369  15.7792904360  0.0053176745  2967.32915 < 0.000000000000000222
DESTIN_hex1370  15.3756372680  0.0075248735  2043.30841 < 0.000000000000000222
DESTIN_hex1372  15.0115941026  0.0298718398   502.53330 < 0.000000000000000222
DESTIN_hex1374  15.5036946902  0.0063225223  2452.13762 < 0.000000000000000222
DESTIN_hex1375  16.7861897552  0.0048835625  3437.28367 < 0.000000000000000222
DESTIN_hex1389  15.8966210571  0.0065999330  2408.60341 < 0.000000000000000222
DESTIN_hex1390  15.9553506603  0.0075575008  2111.19404 < 0.000000000000000222
DESTIN_hex1391  15.3153527998  0.0066781176  2293.36373 < 0.000000000000000222
DESTIN_hex1392  14.1737800831  0.0122058008  1161.23312 < 0.000000000000000222
DESTIN_hex1394  14.5920841760  0.0109625970  1331.07913 < 0.000000000000000222
DESTIN_hex1396  14.2707885252  0.0147140936   969.87208 < 0.000000000000000222
DESTIN_hex1397  15.0239610053  0.0086889823  1729.08179 < 0.000000000000000222
DESTIN_hex1401  16.9507835479  0.0036397545  4657.12283 < 0.000000000000000222
DESTIN_hex1402  15.8170543202  0.0056032013  2822.86027 < 0.000000000000000222
DESTIN_hex1416  14.7684046331  0.0255439123   578.15751 < 0.000000000000000222
DESTIN_hex1417  14.6317478722  0.0117527488  1244.96389 < 0.000000000000000222
DESTIN_hex1418  14.4981979265  0.0178227663   813.46508 < 0.000000000000000222
DESTIN_hex1419  17.0908368728  0.0036514222  4680.59734 < 0.000000000000000222
DESTIN_hex1420  16.8490920449  0.0037861622  4450.17705 < 0.000000000000000222
DESTIN_hex1422  14.6194813602  0.0152611790   957.95229 < 0.000000000000000222
DESTIN_hex1423  15.0841711019  0.0078984723  1909.75805 < 0.000000000000000222
DESTIN_hex1426  16.2990615505  0.0092986765  1752.83671 < 0.000000000000000222
DESTIN_hex1428  15.2668932664  0.0067031173  2277.58109 < 0.000000000000000222
DESTIN_hex1429  15.9748530268  0.0063751316  2505.80757 < 0.000000000000000222
DESTIN_hex1443  16.4714162489  0.0049734539  3311.86670 < 0.000000000000000222
DESTIN_hex1444  16.0548085882  0.0063846885  2514.57976 < 0.000000000000000222
DESTIN_hex1445  16.1040554733  0.0050537056  3186.58364 < 0.000000000000000222
DESTIN_hex1446  13.8860432281  0.0157694262   880.56744 < 0.000000000000000222
DESTIN_hex1447  15.7299557057  0.0057499370  2735.67445 < 0.000000000000000222
DESTIN_hex1455  15.0226545685  0.0089276791  1682.70547 < 0.000000000000000222
DESTIN_hex1456  15.5429176296  0.0065923890  2357.70637 < 0.000000000000000222
DESTIN_hex1457  12.0403914959  0.0674519530   178.50323 < 0.000000000000000222
DESTIN_hex1469  16.1614552768  0.0057077249  2831.50566 < 0.000000000000000222
DESTIN_hex1470  16.4678694263  0.0046953396  3507.27976 < 0.000000000000000222
DESTIN_hex1471  15.9521502688  0.0052112204  3061.11600 < 0.000000000000000222
DESTIN_hex1472  14.8993716488  0.0092282177  1614.54487 < 0.000000000000000222
DESTIN_hex1480  13.5189266430  0.0426932478   316.65257 < 0.000000000000000222
DESTIN_hex1482  16.4138000046  0.0040856010  4017.47499 < 0.000000000000000222
DESTIN_hex1483  16.1704568428  0.0064449147  2509.02571 < 0.000000000000000222
DESTIN_hex1496  14.1414485417  0.0169990093   831.89839 < 0.000000000000000222
DESTIN_hex1497  16.4974221384  0.0071471217  2308.26097 < 0.000000000000000222
DESTIN_hex1498  15.4355005517  0.0064022816  2410.93745 < 0.000000000000000222
DESTIN_hex1499  15.2090234052  0.0074555819  2039.95123 < 0.000000000000000222
DESTIN_hex1500  13.0512218303  0.0304212516   429.01660 < 0.000000000000000222
DESTIN_hex1501  14.9067484031  0.0090989845  1638.28703 < 0.000000000000000222
DESTIN_hex1507  16.8229046502  0.0085973873  1956.74618 < 0.000000000000000222
DESTIN_hex1509  14.7367673986  0.0103613205  1422.28661 < 0.000000000000000222
DESTIN_hex1510  17.7238214524  0.0026596718  6663.91298 < 0.000000000000000222
DESTIN_hex1511  14.2608645514  0.0207200768   688.26311 < 0.000000000000000222
DESTIN_hex1523  14.0374267874  0.0351188796   399.71169 < 0.000000000000000222
DESTIN_hex1524  15.5806808038  0.0116805883  1333.89521 < 0.000000000000000222
DESTIN_hex1525  16.0849333891  0.0043249330  3719.11738 < 0.000000000000000222
DESTIN_hex1526  13.8853187912  0.0154149566   900.76925 < 0.000000000000000222
DESTIN_hex1527  12.9549366646  0.0425022603   304.80583 < 0.000000000000000222
DESTIN_hex1534  12.4840298475  0.0924791656   134.99289 < 0.000000000000000222
DESTIN_hex1536  16.0241018487  0.0046702521  3431.09997 < 0.000000000000000222
DESTIN_hex1537  15.4643517883  0.0079281876  1950.55321 < 0.000000000000000222
DESTIN_hex1550  16.1460432575  0.0058419937  2763.78989 < 0.000000000000000222
DESTIN_hex1551  15.2595332597  0.0086727210  1759.48625 < 0.000000000000000222
DESTIN_hex1552  13.7304363757  0.0208735166   657.79220 < 0.000000000000000222
DESTIN_hex1553  15.2546332843  0.0063771271  2392.08551 < 0.000000000000000222
DESTIN_hex1554  13.9224862470  0.0184650432   753.99153 < 0.000000000000000222
DESTIN_hex1555  14.6415281411  0.0106908973  1369.53220 < 0.000000000000000222
DESTIN_hex1562  14.5596771405  0.0353537635   411.82821 < 0.000000000000000222
DESTIN_hex1563  15.7495040436  0.0062534943  2518.51258 < 0.000000000000000222
DESTIN_hex1564  15.5953274035  0.0053893641  2893.72311 < 0.000000000000000222
DESTIN_hex1565  17.1822345695  0.0052330710  3283.39412 < 0.000000000000000222
DESTIN_hex1576  15.6375490324  0.0087283040  1791.59079 < 0.000000000000000222
DESTIN_hex1578  13.7798290780  0.0126326637  1090.80946 < 0.000000000000000222
DESTIN_hex1579  16.0332929207  0.0044336191  3616.29916 < 0.000000000000000222
DESTIN_hex1581  14.9434944336  0.0088484598  1688.82435 < 0.000000000000000222
DESTIN_hex1588  14.2076567991  0.0490268159   289.79359 < 0.000000000000000222
DESTIN_hex1590  15.4849507938  0.0060391442  2564.09687 < 0.000000000000000222
DESTIN_hex1591  15.8385035814  0.0055784614  2839.22440 < 0.000000000000000222
DESTIN_hex1592  15.9724270296  0.0088236810  1810.17730 < 0.000000000000000222
DESTIN_hex1604  16.6728324725  0.0038284462  4354.98672 < 0.000000000000000222
DESTIN_hex1605  15.5855603553  0.0052632614  2961.19823 < 0.000000000000000222
DESTIN_hex1606  15.3759654462  0.0056169819  2737.40696 < 0.000000000000000222
DESTIN_hex1607  14.5087062016  0.0092020836  1576.67619 < 0.000000000000000222
DESTIN_hex1616  14.3480845657  0.0324272227   442.47035 < 0.000000000000000222
DESTIN_hex1617  14.8239994555  0.0117022512  1266.76477 < 0.000000000000000222
DESTIN_hex1618  17.3758136397  0.0029532212  5883.68170 < 0.000000000000000222
DESTIN_hex1619  15.8222528668  0.0063791210  2480.31867 < 0.000000000000000222
DESTIN_hex1620  16.2645728653  0.0080302717  2025.40753 < 0.000000000000000222
DESTIN_hex1630  13.5100667845  0.0172420323   783.55420 < 0.000000000000000222
DESTIN_hex1631  15.1160198341  0.0066837799  2261.59749 < 0.000000000000000222
DESTIN_hex1632  15.2262375924  0.0066286303  2297.04132 < 0.000000000000000222
DESTIN_hex1633  13.5302180116  0.0157084552   861.33346 < 0.000000000000000222
DESTIN_hex1634  15.3632495126  0.0070373493  2183.10174 < 0.000000000000000222
DESTIN_hex1635  16.4754979956  0.0047284503  3484.33356 < 0.000000000000000222
DESTIN_hex1642  14.1424763284  0.0396118420   357.02648 < 0.000000000000000222
DESTIN_hex1644  15.7829332443  0.0061530950  2565.03975 < 0.000000000000000222
DESTIN_hex1645  15.8634700487  0.0053844439  2946.16681 < 0.000000000000000222
DESTIN_hex1646  16.2846983066  0.0060910024  2673.56624 < 0.000000000000000222
DESTIN_hex1647  14.4307395395  0.0281102710   513.36181 < 0.000000000000000222
DESTIN_hex1658  14.9705810677  0.0096434317  1552.41220 < 0.000000000000000222
DESTIN_hex1659  15.9223029267  0.0044821618  3552.37129 < 0.000000000000000222
DESTIN_hex1660  14.7806359624  0.0114674407  1288.92194 < 0.000000000000000222
DESTIN_hex1661  13.3647240143  0.0195453115   683.78158 < 0.000000000000000222
DESTIN_hex1662  15.1758256362  0.0076876673  1974.04819 < 0.000000000000000222
DESTIN_hex1669  12.2199398941  0.1204040029   101.49114 < 0.000000000000000222
DESTIN_hex1670  15.0587837625  0.0227966450   660.57017 < 0.000000000000000222
DESTIN_hex1672  15.7205854990  0.0094183423  1669.14570 < 0.000000000000000222
DESTIN_hex1673  16.7915546126  0.0054326702  3090.84740 < 0.000000000000000222
DESTIN_hex1674  16.1320526348  0.0070121943  2300.57125 < 0.000000000000000222
DESTIN_hex1684  15.5365100977  0.0060708367  2559.20408 < 0.000000000000000222
DESTIN_hex1685  15.5453988452  0.0073396221  2118.01079 < 0.000000000000000222
DESTIN_hex1686  15.3675313307  0.0058526569  2625.73590 < 0.000000000000000222
DESTIN_hex1687  14.8704919868  0.0091857321  1618.86846 < 0.000000000000000222
DESTIN_hex1688  14.6579053807  0.0100422543  1459.62300 < 0.000000000000000222
DESTIN_hex1689  13.7861491127  0.0227207294   606.76525 < 0.000000000000000222
DESTIN_hex1695  13.2804114746  0.0635368081   209.01918 < 0.000000000000000222
DESTIN_hex1699  15.7319739877  0.0058001972  2712.31711 < 0.000000000000000222
DESTIN_hex1700  14.7130542725  0.0132935943  1106.77774 < 0.000000000000000222
DESTIN_hex1701  16.7140707300  0.0086186526  1939.29046 < 0.000000000000000222
DESTIN_hex1712  14.0676146828  0.0120393287  1168.47168 < 0.000000000000000222
DESTIN_hex1713  16.2340506303  0.0038785323  4185.61696 < 0.000000000000000222
DESTIN_hex1714  14.5281599018  0.0110569686  1313.93698 < 0.000000000000000222
DESTIN_hex1716  15.5210354813  0.0062224337  2494.36735 < 0.000000000000000222
DESTIN_hex1723  13.2653674792  0.0644517827   205.81847 < 0.000000000000000222
DESTIN_hex1726  14.8230199165  0.0135275377  1095.76630 < 0.000000000000000222
DESTIN_hex1727  15.6419548331  0.0065418110  2391.07411 < 0.000000000000000222
DESTIN_hex1728  16.3479650075  0.0052919692  3089.20258 < 0.000000000000000222
DESTIN_hex1738  15.2423537719  0.0062791692  2427.44755 < 0.000000000000000222
DESTIN_hex1739  16.5134105073  0.0034518328  4783.95427 < 0.000000000000000222
DESTIN_hex1740  14.8124695346  0.0079357408  1866.55157 < 0.000000000000000222
DESTIN_hex1741  15.3996713071  0.0073414243  2097.64083 < 0.000000000000000222
DESTIN_hex1743  13.9572543685  0.0266781056   523.17262 < 0.000000000000000222
DESTIN_hex1744  12.7494755423  0.0867399899   146.98498 < 0.000000000000000222
DESTIN_hex1748  11.4055357065  0.1020875577   111.72307 < 0.000000000000000222
DESTIN_hex1749  15.7392599816  0.0082647080  1904.39396 < 0.000000000000000222
DESTIN_hex1753  16.9475402561  0.0034317067  4938.51648 < 0.000000000000000222
DESTIN_hex1754  15.2267000603  0.0077157228  1973.46385 < 0.000000000000000222
DESTIN_hex1765  16.5690751589  0.0042089215  3936.65582 < 0.000000000000000222
DESTIN_hex1766  15.7293051401  0.0054409464  2890.91347 < 0.000000000000000222
DESTIN_hex1767  15.5601919914  0.0052390839  2970.02155 < 0.000000000000000222
DESTIN_hex1768  13.2525374504  0.0218450356   606.66129 < 0.000000000000000222
DESTIN_hex1770  14.3132414691  0.0128585401  1113.13114 < 0.000000000000000222
DESTIN_hex1771  12.9557121166  0.0335045002   386.68573 < 0.000000000000000222
DESTIN_hex1776  11.3599405627  0.0985579257   115.26156 < 0.000000000000000222
DESTIN_hex1777  15.9982653681  0.0071953969  2223.40278 < 0.000000000000000222
DESTIN_hex1778  14.1545412989  0.0153050967   924.82534 < 0.000000000000000222
DESTIN_hex1780  14.8660998894  0.0153535426   968.25210 < 0.000000000000000222
DESTIN_hex1781  15.8725275529  0.0055218456  2874.49682 < 0.000000000000000222
DESTIN_hex1791  15.1870829166  0.0162886654   932.37122 < 0.000000000000000222
DESTIN_hex1792  14.9029747460  0.0081266582  1833.83803 < 0.000000000000000222
DESTIN_hex1793  15.9616784071  0.0043028861  3709.52841 < 0.000000000000000222
DESTIN_hex1794  15.3589858835  0.0059797757  2568.48862 < 0.000000000000000222
DESTIN_hex1795  15.4162003641  0.0066196151  2328.86660 < 0.000000000000000222
DESTIN_hex1796  16.0553864915  0.0062252211  2579.08693 < 0.000000000000000222
DESTIN_hex1798  10.8938331831  0.1400462995    77.78737 < 0.000000000000000222
DESTIN_hex1800  14.3791360837  0.0207629854   692.53702 < 0.000000000000000222
DESTIN_hex1802  13.8508790851  0.0220997615   626.74337 < 0.000000000000000222
DESTIN_hex1804  12.5556260824  0.0378886041   331.38265 < 0.000000000000000222
DESTIN_hex1805  14.1669206365  0.0123440711  1147.67004 < 0.000000000000000222
DESTIN_hex1806  14.9251376194  0.0080820894  1846.69297 < 0.000000000000000222
DESTIN_hex1807  14.3666192021  0.0096669250  1486.16227 < 0.000000000000000222
DESTIN_hex1808  14.4152987075  0.0161768939   891.10424 < 0.000000000000000222
DESTIN_hex1820  15.2813668520  0.0062268231  2454.11934 < 0.000000000000000222
DESTIN_hex1821  16.3747262495  0.0038320479  4273.10062 < 0.000000000000000222
DESTIN_hex1822  14.5125794619  0.0099896663  1452.75919 < 0.000000000000000222
DESTIN_hex1823  15.4575097811  0.0087717554  1762.19116 < 0.000000000000000222
DESTIN_hex1824  16.1135045817  0.0050481185  3191.98222 < 0.000000000000000222
DESTIN_hex1827  14.6115525771  0.0103721478  1408.72969 < 0.000000000000000222
DESTIN_hex1828  14.9787416914  0.0091190555  1642.57600 < 0.000000000000000222
DESTIN_hex1829  16.2138242958  0.0057527950  2818.42553 < 0.000000000000000222
DESTIN_hex1831  13.8855659372  0.0181576156   764.72408 < 0.000000000000000222
DESTIN_hex1833  16.3958961061  0.0039581854  4142.27588 < 0.000000000000000222
DESTIN_hex1834  16.2409474314  0.0043235507  3756.39115 < 0.000000000000000222
DESTIN_hex1835  14.3591612433  0.0112952217  1271.25980 < 0.000000000000000222
DESTIN_hex1846  13.0044848930  0.0267941196   485.34847 < 0.000000000000000222
DESTIN_hex1847  13.8662912363  0.0179351657   773.13427 < 0.000000000000000222
DESTIN_hex1848  15.0852270466  0.0066858459  2256.29297 < 0.000000000000000222
DESTIN_hex1849  16.9424222602  0.0033620480  5039.31601 < 0.000000000000000222
DESTIN_hex1850  15.8172142966  0.0086130814  1836.41761 < 0.000000000000000222
DESTIN_hex1852  12.6443991552  0.0329592607   383.63722 < 0.000000000000000222
DESTIN_hex1853  15.6573147553  0.0060138375  2603.54803 < 0.000000000000000222
DESTIN_hex1854  15.1310837082  0.0074295681  2036.60342 < 0.000000000000000222
DESTIN_hex1855  13.5088675619  0.0165722734   815.14873 < 0.000000000000000222
DESTIN_hex1856  11.0361464801  0.1507685000    73.19929 < 0.000000000000000222
DESTIN_hex1857  12.9347222506  0.0448710884   288.26406 < 0.000000000000000222
DESTIN_hex1858  14.1899769532  0.0114598975  1238.22896 < 0.000000000000000222
DESTIN_hex1859  15.0089393189  0.0072881995  2059.34802 < 0.000000000000000222
DESTIN_hex1860  15.4112355570  0.0059099191  2607.68978 < 0.000000000000000222
DESTIN_hex1861  14.8627037980  0.0100766371  1474.96667 < 0.000000000000000222
DESTIN_hex1862  14.1010144981  0.0204939687   688.05680 < 0.000000000000000222
DESTIN_hex1874  15.6024397608  0.0054399620  2868.11559 < 0.000000000000000222
DESTIN_hex1875  15.8016100002  0.0048685686  3245.63776 < 0.000000000000000222
DESTIN_hex1876  14.8492442589  0.0104166627  1425.52799 < 0.000000000000000222
DESTIN_hex1877  15.4281898365  0.0072416809  2130.47083 < 0.000000000000000222
DESTIN_hex1878  15.4324776310  0.0070772584  2180.57286 < 0.000000000000000222
DESTIN_hex1879  14.3241989568  0.0108267036  1323.04342 < 0.000000000000000222
DESTIN_hex1882  15.8003997530  0.0051878548  3045.65188 < 0.000000000000000222
DESTIN_hex1883  14.8908945453  0.0086217047  1727.14041 < 0.000000000000000222
DESTIN_hex1884  13.9865061540  0.0188341883   742.61263 < 0.000000000000000222
DESTIN_hex1886  17.4018547976  0.0028979728  6004.83712 < 0.000000000000000222
DESTIN_hex1887  17.5353222984  0.0027086696  6473.77669 < 0.000000000000000222
DESTIN_hex1888  14.7625170254  0.0085095474  1734.81813 < 0.000000000000000222
DESTIN_hex1889  11.5975313213  0.0884121754   131.17573 < 0.000000000000000222
DESTIN_hex1890  14.1942845897  0.0363907968   390.05149 < 0.000000000000000222
DESTIN_hex1900  14.8883225699  0.0099203228  1500.79013 < 0.000000000000000222
DESTIN_hex1901  15.9083567113  0.0045237627  3516.62050 < 0.000000000000000222
DESTIN_hex1902  15.1886467778  0.0074616965  2035.54872 < 0.000000000000000222
DESTIN_hex1903  15.7269924163  0.0075818701  2074.28935 < 0.000000000000000222
DESTIN_hex1904  15.4953397282  0.0082071195  1888.03631 < 0.000000000000000222
DESTIN_hex1905  14.9409040220  0.0072643103  2056.75466 < 0.000000000000000222
DESTIN_hex1906  15.1015322559  0.0063474931  2379.13329 < 0.000000000000000222
DESTIN_hex1907  15.4099845531  0.0061273983  2514.93108 < 0.000000000000000222
DESTIN_hex1908  14.9965243434  0.0079947671  1875.79253 < 0.000000000000000222
DESTIN_hex1909  15.1406466092  0.0069938153  2164.86223 < 0.000000000000000222
DESTIN_hex1910  14.1601766211  0.0123698089  1144.73690 < 0.000000000000000222
DESTIN_hex1912  12.3397848077  0.0353962680   348.61824 < 0.000000000000000222
DESTIN_hex1913  15.4882989343  0.0051276787  3020.52835 < 0.000000000000000222
DESTIN_hex1914  15.9323488935  0.0048345220  3295.53758 < 0.000000000000000222
DESTIN_hex1916  14.2792270476  0.0274655993   519.89498 < 0.000000000000000222
DESTIN_hex1928  15.5641807614  0.0061636493  2525.15675 < 0.000000000000000222
DESTIN_hex1929  15.5627977905  0.0059023388  2636.71711 < 0.000000000000000222
DESTIN_hex1930  15.7290420153  0.0050963219  3086.35176 < 0.000000000000000222
DESTIN_hex1931  15.0077332500  0.0079348656  1891.36577 < 0.000000000000000222
DESTIN_hex1932  15.8234704811  0.0051472641  3074.15165 < 0.000000000000000222
DESTIN_hex1933  16.0342404303  0.0057770174  2775.52227 < 0.000000000000000222
DESTIN_hex1934  14.5646572892  0.0081878481  1778.81380 < 0.000000000000000222
DESTIN_hex1935  15.2247814927  0.0063484316  2398.19573 < 0.000000000000000222
DESTIN_hex1936  15.4110737898  0.0062205204  2477.45732 < 0.000000000000000222
DESTIN_hex1937  15.8078456668  0.0051208183  3086.97647 < 0.000000000000000222
DESTIN_hex1938  13.9448447301  0.0457397677   304.87354 < 0.000000000000000222
DESTIN_hex1940  15.2369841383  0.0068508830  2224.09054 < 0.000000000000000222
DESTIN_hex1941  14.5083029918  0.0090951029  1595.17745 < 0.000000000000000222
DESTIN_hex1942  15.5218874072  0.0081799736  1897.54738 < 0.000000000000000222
DESTIN_hex1954  14.7955657253  0.0125515599  1178.78302 < 0.000000000000000222
DESTIN_hex1955  16.2251639857  0.0043567630  3724.13282 < 0.000000000000000222
DESTIN_hex1956  15.3189271959  0.0066991188  2286.70782 < 0.000000000000000222
DESTIN_hex1958  15.9911400102  0.0047935176  3335.99274 < 0.000000000000000222
DESTIN_hex1959  16.0205557758  0.0043123567  3715.03492 < 0.000000000000000222
DESTIN_hex1960  16.1182439630  0.0050074450  3218.85591 < 0.000000000000000222
DESTIN_hex1961  16.7071205164  0.0033296730  5017.64600 < 0.000000000000000222
DESTIN_hex1962  15.2179440104  0.0057963804  2625.42191 < 0.000000000000000222
DESTIN_hex1963  15.1072339472  0.0059156302  2553.78269 < 0.000000000000000222
DESTIN_hex1964  15.9071750696  0.0050736953  3135.22472 < 0.000000000000000222
DESTIN_hex1967  15.6770337636  0.0056014814  2798.72996 < 0.000000000000000222
DESTIN_hex1968  15.5456927897  0.0066412489  2340.77853 < 0.000000000000000222
DESTIN_hex1982  16.7004047127  0.0036924981  4522.79304 < 0.000000000000000222
DESTIN_hex1983  16.0431693728  0.0045364716  3536.48627 < 0.000000000000000222
DESTIN_hex1984  16.3078567841  0.0039134662  4167.11325 < 0.000000000000000222
DESTIN_hex1985  15.8665117427  0.0053292530  2977.24873 < 0.000000000000000222
DESTIN_hex1986  15.1215156615  0.0077604637  1948.53249 < 0.000000000000000222
DESTIN_hex1987  16.8461449681  0.0030473692  5528.09448 < 0.000000000000000222
DESTIN_hex1988  15.1091536271  0.0057876381  2610.59058 < 0.000000000000000222
DESTIN_hex1989  14.9327363418  0.0063247542  2360.99870 < 0.000000000000000222
DESTIN_hex1990  17.1349188890  0.0028171843  6082.28532 < 0.000000000000000222
DESTIN_hex1991  16.0076946524  0.0045102097  3549.21293 < 0.000000000000000222
DESTIN_hex1992  16.5316361253  0.0050756733  3257.03312 < 0.000000000000000222
DESTIN_hex1994  13.3951479458  0.0192893491   694.43235 < 0.000000000000000222
DESTIN_hex1995  15.2519688432  0.0081025677  1882.36242 < 0.000000000000000222
DESTIN_hex2009  16.7805701726  0.0035720735  4697.71133 < 0.000000000000000222
DESTIN_hex2010  16.1892098208  0.0040495194  3997.81018 < 0.000000000000000222
DESTIN_hex2011  16.0948425862  0.0043217133  3724.18100 < 0.000000000000000222
DESTIN_hex2012  15.4101542229  0.0067407075  2286.13306 < 0.000000000000000222
DESTIN_hex2013  15.4561088315  0.0050956848  3033.17603 < 0.000000000000000222
DESTIN_hex2014  15.4692901333  0.0047883778  3230.59094 < 0.000000000000000222
DESTIN_hex2015  15.6892696891  0.0048799561  3215.04324 < 0.000000000000000222
DESTIN_hex2016  15.2770299765  0.0058442164  2614.04249 < 0.000000000000000222
DESTIN_hex2017  15.6652272502  0.0051626369  3034.34615 < 0.000000000000000222
DESTIN_hex2021  14.2291316007  0.0122792654  1158.79339 < 0.000000000000000222
DESTIN_hex2036  13.4263971288  0.0289444416   463.86789 < 0.000000000000000222
DESTIN_hex2037  14.7435613722  0.0095848389  1538.21691 < 0.000000000000000222
DESTIN_hex2038  16.5968789869  0.0035918604  4620.69152 < 0.000000000000000222
DESTIN_hex2039  15.0527933440  0.0069913393  2153.06291 < 0.000000000000000222
DESTIN_hex2040  15.3723250216  0.0059958322  2563.83508 < 0.000000000000000222
DESTIN_hex2041  15.8750283240  0.0058064924  2734.01345 < 0.000000000000000222
DESTIN_hex2042  15.3120828142  0.0072116111  2123.25410 < 0.000000000000000222
DESTIN_hex2043  15.4399417252  0.0052132435  2961.67668 < 0.000000000000000222
DESTIN_hex2044  15.4045810887  0.0054590895  2821.82242 < 0.000000000000000222
DESTIN_hex2046  14.8070344594  0.0111540900  1327.49821 < 0.000000000000000222
DESTIN_hex2049  13.1073535647  0.0235648758   556.22417 < 0.000000000000000222
DESTIN_hex2063  15.2503318241  0.0095454297  1597.65796 < 0.000000000000000222
DESTIN_hex2064  15.9885195741  0.0047673241  3353.77234 < 0.000000000000000222
DESTIN_hex2065  15.3522619316  0.0056041656  2739.43757 < 0.000000000000000222
DESTIN_hex2066  15.2189113677  0.0058570205  2598.40501 < 0.000000000000000222
DESTIN_hex2067  15.2546319633  0.0055692672  2739.07348 < 0.000000000000000222
DESTIN_hex2068  14.9783235365  0.0064134393  2335.45884 < 0.000000000000000222
DESTIN_hex2069  13.4332771157  0.0137755953   975.15039 < 0.000000000000000222
DESTIN_hex2070  15.7611262431  0.0056922961  2768.85212 < 0.000000000000000222
DESTIN_hex2071  16.6817243928  0.0036637902  4553.13313 < 0.000000000000000222
DESTIN_hex2072  12.7786726270  0.0395622898   323.00134 < 0.000000000000000222
DESTIN_hex2074  13.2271161581  0.0298062993   443.76915 < 0.000000000000000222
DESTIN_hex2089  14.1672210165  0.0573887761   246.86397 < 0.000000000000000222
DESTIN_hex2090  12.7131336375  0.0995242552   127.73905 < 0.000000000000000222
DESTIN_hex2091  14.0309191282  0.0186001103   754.34602 < 0.000000000000000222
DESTIN_hex2092  15.4864110781  0.0060602354  2555.41410 < 0.000000000000000222
DESTIN_hex2093  16.0720271963  0.0041375392  3884.44104 < 0.000000000000000222
DESTIN_hex2094  15.6500093307  0.0054350336  2879.46876 < 0.000000000000000222
DESTIN_hex2095  15.8833901497  0.0067233538  2362.42068 < 0.000000000000000222
DESTIN_hex2096  14.3168807305  0.0091191560  1569.97871 < 0.000000000000000222
DESTIN_hex2097  14.4909958305  0.0215182966   673.42672 < 0.000000000000000222
DESTIN_hex2098  15.1316621044  0.0067782143  2232.39654 < 0.000000000000000222
DESTIN_hex2100  13.2986161944  0.0418718699   317.60263 < 0.000000000000000222
DESTIN_hex2101  14.4321604467  0.0167487881   861.68386 < 0.000000000000000222
DESTIN_hex2102  15.3693316763  0.0095681438  1606.30233 < 0.000000000000000222
DESTIN_hex2116  12.6325062191  0.0953655441   132.46405 < 0.000000000000000222
DESTIN_hex2117  12.7516352948  0.1097832318   116.15285 < 0.000000000000000222
DESTIN_hex2119  15.6280200780  0.0053750395  2907.51725 < 0.000000000000000222
DESTIN_hex2120  16.1945665688  0.0039963422  4052.34728 < 0.000000000000000222
DESTIN_hex2121  15.4615360286  0.0057347645  2696.10653 < 0.000000000000000222
DESTIN_hex2122  11.8169039056  0.0488397817   241.95243 < 0.000000000000000222
DESTIN_hex2123  14.5216733370  0.0079423704  1828.38028 < 0.000000000000000222
DESTIN_hex2124  14.8396710554  0.0080902095  1834.27525 < 0.000000000000000222
DESTIN_hex2125  16.0905662090  0.0045628370  3526.43901 < 0.000000000000000222
DESTIN_hex2126  14.0570444744  0.0136611223  1028.98167 < 0.000000000000000222
DESTIN_hex2129  13.9937083936  0.0218618869   640.09609 < 0.000000000000000222
DESTIN_hex2146  14.5659568853  0.0189028751   770.56833 < 0.000000000000000222
DESTIN_hex2147  15.6268102260  0.0048543297  3219.14889 < 0.000000000000000222
DESTIN_hex2148  15.9080661453  0.0044764499  3553.72369 < 0.000000000000000222
DESTIN_hex2149  15.4842018686  0.0059529707  2601.08821 < 0.000000000000000222
DESTIN_hex2150  13.7356166531  0.0122786568  1118.65792 < 0.000000000000000222
DESTIN_hex2151  13.7307767060  0.0124661787  1101.44231 < 0.000000000000000222
DESTIN_hex2152  16.2955380568  0.0040490557  4024.52799 < 0.000000000000000222
DESTIN_hex2153  15.2852078240  0.0124940704  1223.39697 < 0.000000000000000222
DESTIN_hex2154  14.4261953261  0.0103490010  1393.96985 < 0.000000000000000222
DESTIN_hex2155  14.6167482390  0.0119510764  1223.04868 < 0.000000000000000222
DESTIN_hex2171  12.6354399362  0.1715130720    73.67042 < 0.000000000000000222
DESTIN_hex2172  14.5724808339  0.0200117946   728.19460 < 0.000000000000000222
DESTIN_hex2174  13.9770518722  0.0147440921   947.97644 < 0.000000000000000222
DESTIN_hex2175  16.4069979330  0.0037451015  4380.92210 < 0.000000000000000222
DESTIN_hex2176  15.3850053721  0.0055845521  2754.92196 < 0.000000000000000222
DESTIN_hex2177  16.9884604854  0.0029528908  5753.16242 < 0.000000000000000222
DESTIN_hex2178  13.9495222894  0.0099637613  1400.02575 < 0.000000000000000222
DESTIN_hex2179  15.6588921664  0.0048820777  3207.42383 < 0.000000000000000222
DESTIN_hex2180  14.9717060730  0.0073027722  2050.14009 < 0.000000000000000222
DESTIN_hex2181  15.9619496331  0.0051046757  3126.92724 < 0.000000000000000222
DESTIN_hex2182  14.7458105640  0.0175285114   841.24717 < 0.000000000000000222
DESTIN_hex2200  15.5144006168  0.0104519297  1484.35753 < 0.000000000000000222
DESTIN_hex2201  15.5301374849  0.0052125347  2979.38307 < 0.000000000000000222
DESTIN_hex2202  16.3701996499  0.0055950366  2925.84316 < 0.000000000000000222
DESTIN_hex2203  15.7708522919  0.0066452511  2373.25154 < 0.000000000000000222
DESTIN_hex2204  15.8999176330  0.0045019872  3531.75545 < 0.000000000000000222
DESTIN_hex2205  14.8696876863  0.0066506815  2235.81415 < 0.000000000000000222
DESTIN_hex2206  15.8282889216  0.0043116595  3671.04331 < 0.000000000000000222
DESTIN_hex2207  14.7206351513  0.0070609473  2084.79608 < 0.000000000000000222
DESTIN_hex2208  15.2571398441  0.0065551579  2327.50149 < 0.000000000000000222
DESTIN_hex2209  13.5002399275  0.0251011834   537.83281 < 0.000000000000000222
DESTIN_hex2227  14.8333418446  0.0084067209  1764.46228 < 0.000000000000000222
DESTIN_hex2228  15.3645109506  0.0058184886  2640.63609 < 0.000000000000000222
DESTIN_hex2229  15.9683538594  0.0044674734  3574.35903 < 0.000000000000000222
DESTIN_hex2230  15.4573120751  0.0074491333  2075.04839 < 0.000000000000000222
DESTIN_hex2231  15.0327033021  0.0059189446  2539.76078 < 0.000000000000000222
DESTIN_hex2233  15.7220230863  0.0043261846  3634.15450 < 0.000000000000000222
DESTIN_hex2234  10.5631536486  0.0827861442   127.59567 < 0.000000000000000222
DESTIN_hex2235  12.5190900044  0.0526738633   237.67176 < 0.000000000000000222
DESTIN_hex2254  15.4869916961  0.0100291647  1544.19557 < 0.000000000000000222
DESTIN_hex2255  15.1894983035  0.0070908648  2142.12210 < 0.000000000000000222
DESTIN_hex2256  15.3040173956  0.0061343114  2494.82238 < 0.000000000000000222
DESTIN_hex2257  15.2833826193  0.0090757548  1683.97923 < 0.000000000000000222
DESTIN_hex2258  14.4213474587  0.0090837332  1587.60140 < 0.000000000000000222
DESTIN_hex2259  14.2207614326  0.0098747080  1440.11970 < 0.000000000000000222
DESTIN_hex2260  15.1023681060  0.0063320409  2385.07116 < 0.000000000000000222
DESTIN_hex2261  15.2664458004  0.0060305081  2531.53557 < 0.000000000000000222
DESTIN_hex2262  14.1975918228  0.0102573942  1384.13242 < 0.000000000000000222
DESTIN_hex2281  15.1260715184  0.0074437900  2032.03900 < 0.000000000000000222
DESTIN_hex2282  16.2140772757  0.0042613258  3804.93723 < 0.000000000000000222
DESTIN_hex2283  15.2690388914  0.0065066246  2346.69124 < 0.000000000000000222
DESTIN_hex2284  15.4398799934  0.0057695859  2676.08115 < 0.000000000000000222
DESTIN_hex2285  15.6132503707  0.0060951823  2561.57235 < 0.000000000000000222
DESTIN_hex2286  14.7315149325  0.0070974954  2075.59343 < 0.000000000000000222
DESTIN_hex2287  15.8238133650  0.0041694677  3795.16389 < 0.000000000000000222
DESTIN_hex2288  13.6235297378  0.0145116718   938.79809 < 0.000000000000000222
DESTIN_hex2308  15.1356965503  0.0091483585  1654.47130 < 0.000000000000000222
DESTIN_hex2309  15.8761114099  0.0051352175  3091.61422 < 0.000000000000000222
DESTIN_hex2310  15.4185631015  0.0054485800  2829.83148 < 0.000000000000000222
DESTIN_hex2311  16.2402052356  0.0040253874  4034.44530 < 0.000000000000000222
DESTIN_hex2312  14.6903402526  0.0096083907  1528.90746 < 0.000000000000000222
DESTIN_hex2313  16.6519761186  0.0038121648  4368.11550 < 0.000000000000000222
DESTIN_hex2314  16.5065330532  0.0032309468  5108.88423 < 0.000000000000000222
DESTIN_hex2315  14.8323482195  0.0068916416  2152.22280 < 0.000000000000000222
DESTIN_hex2316  15.3193257710  0.0058827907  2604.09160 < 0.000000000000000222
DESTIN_hex2317  13.4219615681  0.0255485875   525.35044 < 0.000000000000000222
DESTIN_hex2335  14.1098454949  0.0157769586   894.33241 < 0.000000000000000222
DESTIN_hex2336  16.4230463790  0.0036089094  4550.69505 < 0.000000000000000222
DESTIN_hex2337  15.9327210584  0.0044561766  3575.42409 < 0.000000000000000222
DESTIN_hex2338  15.3121096658  0.0073927460  2071.23437 < 0.000000000000000222
DESTIN_hex2339  15.9394703583  0.0047725188  3339.84444 < 0.000000000000000222
DESTIN_hex2340  15.4666854789  0.0048214389  3207.89824 < 0.000000000000000222
DESTIN_hex2341  15.7152469890  0.0043279794  3631.08171 < 0.000000000000000222
DESTIN_hex2342  14.6085907066  0.0067266987  2171.73257 < 0.000000000000000222
DESTIN_hex2343  14.4973310058  0.0085316450  1699.24217 < 0.000000000000000222
DESTIN_hex2362  14.9393957283  0.0117560422  1270.78446 < 0.000000000000000222
DESTIN_hex2363  15.4387780641  0.0064113071  2408.05467 < 0.000000000000000222
DESTIN_hex2364  14.8467384700  0.0094467481  1571.62427 < 0.000000000000000222
DESTIN_hex2365  16.2896268960  0.0042559501  3827.49484 < 0.000000000000000222
DESTIN_hex2366  16.0332768472  0.0119308821  1343.84672 < 0.000000000000000222
DESTIN_hex2367  15.4611609481  0.0061094473  2530.69718 < 0.000000000000000222
DESTIN_hex2368  15.1812138248  0.0054430320  2789.10979 < 0.000000000000000222
DESTIN_hex2369  16.2446584168  0.0035327578  4598.29391 < 0.000000000000000222
DESTIN_hex2370  16.8493236768  0.0029597548  5692.81056 < 0.000000000000000222
DESTIN_hex2371  14.9685753054  0.0069674850  2148.34697 < 0.000000000000000222
DESTIN_hex2389  15.3356694879  0.0068935302  2224.64673 < 0.000000000000000222
DESTIN_hex2390  16.2244534634  0.0041165390  3941.28501 < 0.000000000000000222
DESTIN_hex2391  16.0724277378  0.0050131179  3206.07413 < 0.000000000000000222
DESTIN_hex2392  16.3047288066  0.0089618098  1819.35672 < 0.000000000000000222
DESTIN_hex2393  17.2742293664  0.0075018596  2302.65965 < 0.000000000000000222
DESTIN_hex2394  13.7439660070  0.0136818184  1004.54235 < 0.000000000000000222
DESTIN_hex2395  15.2325428527  0.0053868521  2827.72619 < 0.000000000000000222
DESTIN_hex2396  15.1809353299  0.0051359407  2955.82373 < 0.000000000000000222
DESTIN_hex2397  13.9937543895  0.0099114473  1411.87801 < 0.000000000000000222
DESTIN_hex2398  14.8627513708  0.0109092720  1362.39626 < 0.000000000000000222
DESTIN_hex2416  15.0202549926  0.0089589783  1676.55892 < 0.000000000000000222
DESTIN_hex2417  15.1416246981  0.0096734503  1565.27653 < 0.000000000000000222
DESTIN_hex2418  15.5189747242  0.0057918386  2679.45568 < 0.000000000000000222
DESTIN_hex2419  16.2212708284  0.0042811597  3788.98989 < 0.000000000000000222
DESTIN_hex2420  13.6678081840  0.0358926007   380.79738 < 0.000000000000000222
DESTIN_hex2422  13.8593371782  0.0211448984   655.44591 < 0.000000000000000222
DESTIN_hex2423  14.3485384532  0.0083689081  1714.50543 < 0.000000000000000222
DESTIN_hex2424  16.0423554501  0.0037676938  4257.87137 < 0.000000000000000222
DESTIN_hex2425  16.9043918975  0.0030581942  5527.57315 < 0.000000000000000222
DESTIN_hex2426  14.7419897746  0.0155110410   950.41911 < 0.000000000000000222
DESTIN_hex2443  16.6736057297  0.0038444044  4337.11028 < 0.000000000000000222
DESTIN_hex2444  16.0298709797  0.0043527449  3682.70402 < 0.000000000000000222
DESTIN_hex2445  16.1198537049  0.0042909254  3756.73130 < 0.000000000000000222
DESTIN_hex2448  15.0978715291  0.0110345928  1368.23096 < 0.000000000000000222
DESTIN_hex2449  14.1958070205  0.0115776754  1226.13621 < 0.000000000000000222
DESTIN_hex2450  14.6417570783  0.0074888618  1955.13785 < 0.000000000000000222
DESTIN_hex2451  16.2883365511  0.0035962820  4529.21563 < 0.000000000000000222
DESTIN_hex2452  13.1480306862  0.0233164633   563.89473 < 0.000000000000000222
DESTIN_hex2471  15.1043845057  0.0070069217  2155.63768 < 0.000000000000000222
DESTIN_hex2472  13.3946701198  0.0192904666   694.36735 < 0.000000000000000222
DESTIN_hex2473  16.2299501351  0.0045187651  3591.67819 < 0.000000000000000222
DESTIN_hex2476  16.1314696894  0.0078267577  2061.06671 < 0.000000000000000222
DESTIN_hex2478  14.8966045652  0.0070328599  2118.14324 < 0.000000000000000222
DESTIN_hex2479  13.6254309779  0.0153107237   889.92730 < 0.000000000000000222
DESTIN_hex2480  14.0924481693  0.0219728793   641.35647 < 0.000000000000000222
DESTIN_hex2497  15.7897596649  0.0055752994  2832.09180 < 0.000000000000000222
DESTIN_hex2498  14.0621814308  0.0143634632   979.02444 < 0.000000000000000222
DESTIN_hex2499  14.9654967865  0.0082542702  1813.06117 < 0.000000000000000222
DESTIN_hex2500  14.4681734891  0.0152150734   950.91053 < 0.000000000000000222
DESTIN_hex2503  12.9741813024  0.0580699420   223.42336 < 0.000000000000000222
DESTIN_hex2504  13.0621938424  0.0311512509   419.31523 < 0.000000000000000222
DESTIN_hex2505  14.9303476287  0.0073077197  2043.09254 < 0.000000000000000222
DESTIN_hex2525  14.7873193389  0.0093482716  1581.82390 < 0.000000000000000222
DESTIN_hex2526  15.9649456239  0.0048070130  3321.17796 < 0.000000000000000222
DESTIN_hex2527  16.3563459035  0.0041043161  3985.15750 < 0.000000000000000222
DESTIN_hex2531  11.6535690304  0.1204061056    96.78553 < 0.000000000000000222
DESTIN_hex2532  14.4434388894  0.0099520060  1451.30930 < 0.000000000000000222
DESTIN_hex2533  14.4270342887  0.0150046418   961.50475 < 0.000000000000000222
DESTIN_hex2551  15.9358662535  0.0058734748  2713.19223 < 0.000000000000000222
DESTIN_hex2552  14.7115762478  0.0117976159  1246.99569 < 0.000000000000000222
DESTIN_hex2553  15.4651496929  0.0085766083  1803.17780 < 0.000000000000000222
DESTIN_hex2554  13.9328623607  0.0137047982  1016.64119 < 0.000000000000000222
DESTIN_hex2557  15.9297432045  0.0094768275  1680.91517 < 0.000000000000000222
DESTIN_hex2559  14.0599468379  0.0152157713   924.03773 < 0.000000000000000222
DESTIN_hex2579  15.1381521145  0.0071845948  2107.02935 < 0.000000000000000222
DESTIN_hex2580  16.2332389601  0.0043598170  3723.37622 < 0.000000000000000222
DESTIN_hex2581  14.8944402363  0.0080270882  1855.52220 < 0.000000000000000222
DESTIN_hex2584  13.9607467974  0.0233126337   598.84897 < 0.000000000000000222
DESTIN_hex2605  14.2396352580  0.0166988801   852.72995 < 0.000000000000000222
DESTIN_hex2606  14.6106412511  0.0186015713   785.45199 < 0.000000000000000222
DESTIN_hex2607  15.2340644840  0.0066071608  2305.68998 < 0.000000000000000222
DESTIN_hex2608  14.5801702519  0.0101525473  1436.10956 < 0.000000000000000222
DESTIN_hex2609  13.0736561629  0.0301725490   433.29638 < 0.000000000000000222
DESTIN_hex2610  13.7223281426  0.0265341025   517.15818 < 0.000000000000000222
DESTIN_hex2611  16.4636723124  0.0109776749  1499.74129 < 0.000000000000000222
DESTIN_hex2633  15.3865879443  0.0070176184  2192.56549 < 0.000000000000000222
DESTIN_hex2634  17.3183681379  0.0028300721  6119.40889 < 0.000000000000000222
DESTIN_hex2635  14.4516174416  0.0101690647  1421.13536 < 0.000000000000000222
DESTIN_hex2636  15.8236805667  0.0052286013  3026.36969 < 0.000000000000000222
DESTIN_hex2637  14.5982063325  0.0099416754  1468.38493 < 0.000000000000000222
DESTIN_hex2638  15.0361887651  0.0077318550  1944.70652 < 0.000000000000000222
DESTIN_hex2660  15.5425599341  0.0059131933  2628.45458 < 0.000000000000000222
DESTIN_hex2661  15.4582163764  0.0052706879  2932.86506 < 0.000000000000000222
DESTIN_hex2662  14.5041703411  0.0082499656  1758.08858 < 0.000000000000000222
DESTIN_hex2663  15.9434167517  0.0049638142  3211.92857 < 0.000000000000000222
DESTIN_hex2664  15.0347294448  0.0070696254  2126.66563 < 0.000000000000000222
DESTIN_hex2665  16.4147243212  0.0040543985  4048.62135 < 0.000000000000000222
DESTIN_hex2687  14.3885647636  0.0111410562  1291.49019 < 0.000000000000000222
DESTIN_hex2688  15.5168046087  0.0053596784  2895.09995 < 0.000000000000000222
DESTIN_hex2689  16.1251923154  0.0042059436  3833.90596 < 0.000000000000000222
DESTIN_hex2690  15.9876826311  0.0045046661  3549.13821 < 0.000000000000000222
DESTIN_hex2691  15.3682783347  0.0058481937  2627.86755 < 0.000000000000000222
DESTIN_hex2693  15.6338230474  0.0057301794  2728.33046 < 0.000000000000000222
DESTIN_hex2714  14.5702201013  0.0090437647  1611.07909 < 0.000000000000000222
DESTIN_hex2715  15.2770612562  0.0072857855  2096.83105 < 0.000000000000000222
DESTIN_hex2716  13.2949299895  0.0155741761   853.65222 < 0.000000000000000222
DESTIN_hex2717  15.6317321019  0.0045494090  3435.99180 < 0.000000000000000222
DESTIN_hex2718  14.5503895998  0.0091704228  1586.66508 < 0.000000000000000222
DESTIN_hex2719  15.6292107119  0.0056361362  2773.03639 < 0.000000000000000222
DESTIN_hex2742  15.7540121303  0.0051109536  3082.40170 < 0.000000000000000222
DESTIN_hex2743  15.8300691084  0.0069702226  2271.09950 < 0.000000000000000222
DESTIN_hex2744  16.1997567711  0.0037852465  4279.70983 < 0.000000000000000222
DESTIN_hex2745  16.1962157723  0.0037600499  4307.44706 < 0.000000000000000222
DESTIN_hex2746  13.8954284915  0.0140453990   989.32245 < 0.000000000000000222
DESTIN_hex2747  14.9435263943  0.0082773923  1805.34228 < 0.000000000000000222
DESTIN_hex2768  15.7618222368  0.0061435422  2565.59191 < 0.000000000000000222
DESTIN_hex2769  16.6229206703  0.0038463183  4321.77454 < 0.000000000000000222
DESTIN_hex2770  15.9843135377  0.0044575195  3585.92117 < 0.000000000000000222
DESTIN_hex2771  17.3725728610  0.0027075992  6416.22770 < 0.000000000000000222
DESTIN_hex2772  12.8950648480  0.0259150361   497.59008 < 0.000000000000000222
DESTIN_hex2773  14.5567268162  0.0082967073  1754.51854 < 0.000000000000000222
DESTIN_hex2795  14.6049150483  0.0636721875   229.37668 < 0.000000000000000222
DESTIN_hex2796  10.9121546786  0.1154878975    94.48743 < 0.000000000000000222
DESTIN_hex2797  15.7491295454  0.0053178139  2961.57967 < 0.000000000000000222
DESTIN_hex2798  14.2113023734  0.0093725038  1516.27599 < 0.000000000000000222
DESTIN_hex2799  14.9798868896  0.0064624903  2317.97435 < 0.000000000000000222
DESTIN_hex2800  16.3423009857  0.0039807806  4105.30057 < 0.000000000000000222
DESTIN_hex2801  13.2067275502  0.0295341776   447.16761 < 0.000000000000000222
DESTIN_hex2822  14.1822030995  0.0138602012  1023.23212 < 0.000000000000000222
DESTIN_hex2823  15.5066641040  0.0065433586  2369.83253 < 0.000000000000000222
DESTIN_hex2824  16.2401576187  0.0046883025  3463.97394 < 0.000000000000000222
DESTIN_hex2825  15.5444378920  0.0048492768  3205.51672 < 0.000000000000000222
DESTIN_hex2826  15.0108608071  0.0080288954  1869.60472 < 0.000000000000000222
DESTIN_hex2827  16.8897846091  0.0032451840  5204.56916 < 0.000000000000000222
DESTIN_hex2850  14.8311697993  0.0129801735  1142.60181 < 0.000000000000000222
DESTIN_hex2851  16.4832925977  0.0043327227  3804.37287 < 0.000000000000000222
DESTIN_hex2852  14.6464350700  0.0087391194  1675.96235 < 0.000000000000000222
DESTIN_hex2853  16.5798060690  0.0033428136  4959.83569 < 0.000000000000000222
DESTIN_hex2854  15.5675916630  0.0053780579  2894.64933 < 0.000000000000000222
DESTIN_hex2877  15.0830103193  0.0126947709  1188.12781 < 0.000000000000000222
DESTIN_hex2878  15.4817518905  0.0064027822  2417.97258 < 0.000000000000000222
DESTIN_hex2879  15.2533221213  0.0075113620  2030.69990 < 0.000000000000000222
DESTIN_hex2880  14.4792942223  0.0081913289  1767.63677 < 0.000000000000000222
DESTIN_hex2881  14.9844126239  0.0080391524  1863.92941 < 0.000000000000000222
DESTIN_hex2905  15.8847521835  0.0067697081  2346.44567 < 0.000000000000000222
DESTIN_hex2906  15.2218801240  0.0088349751  1722.91149 < 0.000000000000000222
DESTIN_hex2907  14.5871250799  0.0081652951  1786.47863 < 0.000000000000000222
DESTIN_hex2908  15.5825599839  0.0057078035  2730.04494 < 0.000000000000000222
DESTIN_hex2909  13.8023060749  0.0354806609   389.00927 < 0.000000000000000222
DESTIN_hex2931  16.3351210226  0.0076429731  2137.27312 < 0.000000000000000222
DESTIN_hex2932  15.5940770778  0.0082862133  1881.93044 < 0.000000000000000222
DESTIN_hex2933  16.1587554075  0.0055285687  2922.77374 < 0.000000000000000222
DESTIN_hex2934  14.8976648004  0.0073436810  2028.63725 < 0.000000000000000222
DESTIN_hex2959  16.1290487395  0.0088859085  1815.12659 < 0.000000000000000222
DESTIN_hex2960  17.2689964191  0.0069073741  2500.08125 < 0.000000000000000222
DESTIN_hex2961  15.3584864976  0.0078093656  1966.67531 < 0.000000000000000222
DESTIN_hex2962  15.7908470143  0.0057382830  2751.84178 < 0.000000000000000222
DESTIN_hex2963  15.6915538563  0.0117416262  1336.40379 < 0.000000000000000222
DESTIN_hex2987  15.9280772145  0.0106435503  1496.50039 < 0.000000000000000222
DESTIN_hex2988  13.3127007131  0.0237280875   561.05241 < 0.000000000000000222
DESTIN_hex2989  15.3774467489  0.0080166388  1918.19130 < 0.000000000000000222
DESTIN_hex2990  16.0906669145  0.0128069963  1256.39662 < 0.000000000000000222
DESTIN_hex3015  14.7980466752  0.0203022482   728.88709 < 0.000000000000000222
DESTIN_hex3016  15.4300513944  0.0117035547  1318.40725 < 0.000000000000000222
DESTIN_hex3017  15.1609149184  0.0095447281  1588.40721 < 0.000000000000000222
DESTIN_hex3040  16.5803608089  0.0061616075  2690.91480 < 0.000000000000000222
DESTIN_hex3043  14.9416453579  0.0101222936  1476.11262 < 0.000000000000000222
DESTIN_hex3044  15.2625471258  0.0096436149  1582.65830 < 0.000000000000000222
DESTIN_hex3068  15.0963061548  0.0127707083  1182.10406 < 0.000000000000000222
DESTIN_hex3070  14.5599535680  0.0205368564   708.96701 < 0.000000000000000222
DESTIN_hex3072  14.4707889285  0.0239971423   603.02134 < 0.000000000000000222
DESTIN_hex3092  17.0372060715  0.0153245538  1111.75871 < 0.000000000000000222
DESTIN_hex3098  15.7875181657  0.0077618850  2033.97992 < 0.000000000000000222
DESTIN_hex3123  17.9352316200  0.0040376524  4441.99491 < 0.000000000000000222
DESTIN_hex3126  12.3188911883  0.0596996928   206.34765 < 0.000000000000000222
DESTIN_hex3151  17.2474801217  0.0049362253  3494.06257 < 0.000000000000000222
DESTIN_hex3152  11.9374916164  0.0654086322   182.50636 < 0.000000000000000222
DESTIN_hex3173  16.3695632316  0.0241503981   677.81753 < 0.000000000000000222
DESTIN_hex3178  15.8620208916  0.0098853156  1604.60441 < 0.000000000000000222
DESTIN_hex3179  15.4959008052  0.0103311631  1499.91832 < 0.000000000000000222
DESTIN_hex3205  16.4629362934  0.0118420995  1390.20418 < 0.000000000000000222
DESTIN_hex3206  16.8564365390  0.0066083693  2550.77097 < 0.000000000000000222
DESTIN_hex3232  16.2023662307  0.0223663015   724.40972 < 0.000000000000000222
DESTIN_hex3233  15.4324330565  0.0212960776   724.66082 < 0.000000000000000222
DESTIN_hex3308  17.2585218429  0.0182181867   947.32380 < 0.000000000000000222
o_housing_count  0.1276051591  0.0000886639  1439.20091 < 0.000000000000000222
o_biz_count     -0.1207381596  0.0002122754  -568.78064 < 0.000000000000000222
o_school_count   0.1500079367  0.0006342621   236.50780 < 0.000000000000000222
o_busstop_count  0.5538186959  0.0005212239  1062.53505 < 0.000000000000000222
o_mrtlrt_count   0.3330837710  0.0009775876   340.72012 < 0.000000000000000222
dist            -1.4609624634  0.0002608931 -5599.85044 < 0.000000000000000222
                   
DESTIN_hex118   ***
DESTIN_hex146   ***
DESTIN_hex174   ***
DESTIN_hex175   ***
DESTIN_hex200   ***
DESTIN_hex201   ***
DESTIN_hex202   ***
DESTIN_hex203   ***
DESTIN_hex227   ***
DESTIN_hex228   ***
DESTIN_hex229   ***
DESTIN_hex230   ***
DESTIN_hex231   ***
DESTIN_hex254   ***
DESTIN_hex255   ***
DESTIN_hex256   ***
DESTIN_hex257   ***
DESTIN_hex258   ***
DESTIN_hex259   ***
DESTIN_hex281   ***
DESTIN_hex282   ***
DESTIN_hex284   ***
DESTIN_hex285   ***
DESTIN_hex286   ***
DESTIN_hex312   ***
DESTIN_hex313   ***
DESTIN_hex314   ***
DESTIN_hex336   ***
DESTIN_hex338   ***
DESTIN_hex339   ***
DESTIN_hex340   ***
DESTIN_hex366   ***
DESTIN_hex367   ***
DESTIN_hex391   ***
DESTIN_hex392   ***
DESTIN_hex393   ***
DESTIN_hex394   ***
DESTIN_hex419   ***
DESTIN_hex420   ***
DESTIN_hex421   ***
DESTIN_hex445   ***
DESTIN_hex446   ***
DESTIN_hex447   ***
DESTIN_hex472   ***
DESTIN_hex473   ***
DESTIN_hex474   ***
DESTIN_hex499   ***
DESTIN_hex500   ***
DESTIN_hex526   ***
DESTIN_hex527   ***
DESTIN_hex528   ***
DESTIN_hex552   ***
DESTIN_hex553   ***
DESTIN_hex554   ***
DESTIN_hex555   ***
DESTIN_hex581   ***
DESTIN_hex582   ***
DESTIN_hex607   ***
DESTIN_hex608   ***
DESTIN_hex609   ***
DESTIN_hex610   ***
DESTIN_hex611   ***
DESTIN_hex634   ***
DESTIN_hex635   ***
DESTIN_hex636   ***
DESTIN_hex638   ***
DESTIN_hex661   ***
DESTIN_hex662   ***
DESTIN_hex663   ***
DESTIN_hex664   ***
DESTIN_hex665   ***
DESTIN_hex689   ***
DESTIN_hex690   ***
DESTIN_hex692   ***
DESTIN_hex693   ***
DESTIN_hex715   ***
DESTIN_hex716   ***
DESTIN_hex717   ***
DESTIN_hex718   ***
DESTIN_hex719   ***
DESTIN_hex720   ***
DESTIN_hex743   ***
DESTIN_hex744   ***
DESTIN_hex745   ***
DESTIN_hex746   ***
DESTIN_hex747   ***
DESTIN_hex748   ***
DESTIN_hex769   ***
DESTIN_hex770   ***
DESTIN_hex771   ***
DESTIN_hex772   ***
DESTIN_hex773   ***
DESTIN_hex774   ***
DESTIN_hex775   ***
DESTIN_hex776   ***
DESTIN_hex777   ***
DESTIN_hex797   ***
DESTIN_hex798   ***
DESTIN_hex799   ***
DESTIN_hex800   ***
DESTIN_hex802   ***
DESTIN_hex803   ***
DESTIN_hex805   ***
DESTIN_hex806   ***
DESTIN_hex823   ***
DESTIN_hex824   ***
DESTIN_hex825   ***
DESTIN_hex826   ***
DESTIN_hex827   ***
DESTIN_hex832   ***
DESTIN_hex833   ***
DESTIN_hex851   ***
DESTIN_hex852   ***
DESTIN_hex853   ***
DESTIN_hex854   ***
DESTIN_hex856   ***
DESTIN_hex861   ***
DESTIN_hex862   ***
DESTIN_hex878   ***
DESTIN_hex879   ***
DESTIN_hex880   ***
DESTIN_hex881   ***
DESTIN_hex888   ***
DESTIN_hex889   ***
DESTIN_hex905   ***
DESTIN_hex906   ***
DESTIN_hex907   ***
DESTIN_hex908   ***
DESTIN_hex910   ***
DESTIN_hex932   ***
DESTIN_hex933   ***
DESTIN_hex934   ***
DESTIN_hex935   ***
DESTIN_hex937   ***
DESTIN_hex959   ***
DESTIN_hex960   ***
DESTIN_hex961   ***
DESTIN_hex962   ***
DESTIN_hex986   ***
DESTIN_hex987   ***
DESTIN_hex988   ***
DESTIN_hex989   ***
DESTIN_hex991   ***
DESTIN_hex1013  ***
DESTIN_hex1014  ***
DESTIN_hex1015  ***
DESTIN_hex1016  ***
DESTIN_hex1042  ***
DESTIN_hex1043  ***
DESTIN_hex1045  ***
DESTIN_hex1067  ***
DESTIN_hex1068  ***
DESTIN_hex1069  ***
DESTIN_hex1070  ***
DESTIN_hex1078  ***
DESTIN_hex1093  ***
DESTIN_hex1094  ***
DESTIN_hex1095  ***
DESTIN_hex1096  ***
DESTIN_hex1097  ***
DESTIN_hex1099  ***
DESTIN_hex1100  ***
DESTIN_hex1122  ***
DESTIN_hex1123  ***
DESTIN_hex1124  ***
DESTIN_hex1125  ***
DESTIN_hex1126  ***
DESTIN_hex1127  ***
DESTIN_hex1128  ***
DESTIN_hex1132  ***
DESTIN_hex1147  ***
DESTIN_hex1148  ***
DESTIN_hex1149  ***
DESTIN_hex1150  ***
DESTIN_hex1151  ***
DESTIN_hex1152  ***
DESTIN_hex1153  ***
DESTIN_hex1154  ***
DESTIN_hex1155  ***
DESTIN_hex1158  ***
DESTIN_hex1174  ***
DESTIN_hex1175  ***
DESTIN_hex1176  ***
DESTIN_hex1177  ***
DESTIN_hex1178  ***
DESTIN_hex1179  ***
DESTIN_hex1180  ***
DESTIN_hex1181  ***
DESTIN_hex1182  ***
DESTIN_hex1183  ***
DESTIN_hex1185  ***
DESTIN_hex1201  ***
DESTIN_hex1202  ***
DESTIN_hex1203  ***
DESTIN_hex1205  ***
DESTIN_hex1206  ***
DESTIN_hex1207  ***
DESTIN_hex1209  ***
DESTIN_hex1210  ***
DESTIN_hex1211  ***
DESTIN_hex1212  ***
DESTIN_hex1228  ***
DESTIN_hex1229  ***
DESTIN_hex1230  ***
DESTIN_hex1231  ***
DESTIN_hex1232  ***
DESTIN_hex1233  ***
DESTIN_hex1235  ***
DESTIN_hex1236  ***
DESTIN_hex1237  ***
DESTIN_hex1238  ***
DESTIN_hex1239  ***
DESTIN_hex1240  ***
DESTIN_hex1255  ***
DESTIN_hex1256  ***
DESTIN_hex1257  ***
DESTIN_hex1258  ***
DESTIN_hex1259  ***
DESTIN_hex1261  ***
DESTIN_hex1262  ***
DESTIN_hex1263  ***
DESTIN_hex1264  ***
DESTIN_hex1265  ***
DESTIN_hex1266  ***
DESTIN_hex1282  ***
DESTIN_hex1283  ***
DESTIN_hex1284  ***
DESTIN_hex1285  ***
DESTIN_hex1286  ***
DESTIN_hex1287  ***
DESTIN_hex1288  ***
DESTIN_hex1289  ***
DESTIN_hex1293  ***
DESTIN_hex1308  ***
DESTIN_hex1309  ***
DESTIN_hex1310  ***
DESTIN_hex1311  ***
DESTIN_hex1312  ***
DESTIN_hex1314  ***
DESTIN_hex1315  ***
DESTIN_hex1316  ***
DESTIN_hex1318  ***
DESTIN_hex1319  ***
DESTIN_hex1320  ***
DESTIN_hex1335  ***
DESTIN_hex1336  ***
DESTIN_hex1337  ***
DESTIN_hex1338  ***
DESTIN_hex1339  ***
DESTIN_hex1340  ***
DESTIN_hex1341  ***
DESTIN_hex1342  ***
DESTIN_hex1343  ***
DESTIN_hex1347  ***
DESTIN_hex1348  ***
DESTIN_hex1362  ***
DESTIN_hex1363  ***
DESTIN_hex1364  ***
DESTIN_hex1366  ***
DESTIN_hex1367  ***
DESTIN_hex1368  ***
DESTIN_hex1369  ***
DESTIN_hex1370  ***
DESTIN_hex1372  ***
DESTIN_hex1374  ***
DESTIN_hex1375  ***
DESTIN_hex1389  ***
DESTIN_hex1390  ***
DESTIN_hex1391  ***
DESTIN_hex1392  ***
DESTIN_hex1394  ***
DESTIN_hex1396  ***
DESTIN_hex1397  ***
DESTIN_hex1401  ***
DESTIN_hex1402  ***
DESTIN_hex1416  ***
DESTIN_hex1417  ***
DESTIN_hex1418  ***
DESTIN_hex1419  ***
DESTIN_hex1420  ***
DESTIN_hex1422  ***
DESTIN_hex1423  ***
DESTIN_hex1426  ***
DESTIN_hex1428  ***
DESTIN_hex1429  ***
DESTIN_hex1443  ***
DESTIN_hex1444  ***
DESTIN_hex1445  ***
DESTIN_hex1446  ***
DESTIN_hex1447  ***
DESTIN_hex1455  ***
DESTIN_hex1456  ***
DESTIN_hex1457  ***
DESTIN_hex1469  ***
DESTIN_hex1470  ***
DESTIN_hex1471  ***
DESTIN_hex1472  ***
DESTIN_hex1480  ***
DESTIN_hex1482  ***
DESTIN_hex1483  ***
DESTIN_hex1496  ***
DESTIN_hex1497  ***
DESTIN_hex1498  ***
DESTIN_hex1499  ***
DESTIN_hex1500  ***
DESTIN_hex1501  ***
DESTIN_hex1507  ***
DESTIN_hex1509  ***
DESTIN_hex1510  ***
DESTIN_hex1511  ***
DESTIN_hex1523  ***
DESTIN_hex1524  ***
DESTIN_hex1525  ***
DESTIN_hex1526  ***
DESTIN_hex1527  ***
DESTIN_hex1534  ***
DESTIN_hex1536  ***
DESTIN_hex1537  ***
DESTIN_hex1550  ***
DESTIN_hex1551  ***
DESTIN_hex1552  ***
DESTIN_hex1553  ***
DESTIN_hex1554  ***
DESTIN_hex1555  ***
DESTIN_hex1562  ***
DESTIN_hex1563  ***
DESTIN_hex1564  ***
DESTIN_hex1565  ***
DESTIN_hex1576  ***
DESTIN_hex1578  ***
DESTIN_hex1579  ***
DESTIN_hex1581  ***
DESTIN_hex1588  ***
DESTIN_hex1590  ***
DESTIN_hex1591  ***
DESTIN_hex1592  ***
DESTIN_hex1604  ***
DESTIN_hex1605  ***
DESTIN_hex1606  ***
DESTIN_hex1607  ***
DESTIN_hex1616  ***
DESTIN_hex1617  ***
DESTIN_hex1618  ***
DESTIN_hex1619  ***
DESTIN_hex1620  ***
DESTIN_hex1630  ***
DESTIN_hex1631  ***
DESTIN_hex1632  ***
DESTIN_hex1633  ***
DESTIN_hex1634  ***
DESTIN_hex1635  ***
DESTIN_hex1642  ***
DESTIN_hex1644  ***
DESTIN_hex1645  ***
DESTIN_hex1646  ***
DESTIN_hex1647  ***
DESTIN_hex1658  ***
DESTIN_hex1659  ***
DESTIN_hex1660  ***
DESTIN_hex1661  ***
DESTIN_hex1662  ***
DESTIN_hex1669  ***
DESTIN_hex1670  ***
DESTIN_hex1672  ***
DESTIN_hex1673  ***
DESTIN_hex1674  ***
DESTIN_hex1684  ***
DESTIN_hex1685  ***
DESTIN_hex1686  ***
DESTIN_hex1687  ***
DESTIN_hex1688  ***
DESTIN_hex1689  ***
DESTIN_hex1695  ***
DESTIN_hex1699  ***
DESTIN_hex1700  ***
DESTIN_hex1701  ***
DESTIN_hex1712  ***
DESTIN_hex1713  ***
DESTIN_hex1714  ***
DESTIN_hex1716  ***
DESTIN_hex1723  ***
DESTIN_hex1726  ***
DESTIN_hex1727  ***
DESTIN_hex1728  ***
DESTIN_hex1738  ***
DESTIN_hex1739  ***
DESTIN_hex1740  ***
DESTIN_hex1741  ***
DESTIN_hex1743  ***
DESTIN_hex1744  ***
DESTIN_hex1748  ***
DESTIN_hex1749  ***
DESTIN_hex1753  ***
DESTIN_hex1754  ***
DESTIN_hex1765  ***
DESTIN_hex1766  ***
DESTIN_hex1767  ***
DESTIN_hex1768  ***
DESTIN_hex1770  ***
DESTIN_hex1771  ***
DESTIN_hex1776  ***
DESTIN_hex1777  ***
DESTIN_hex1778  ***
DESTIN_hex1780  ***
DESTIN_hex1781  ***
DESTIN_hex1791  ***
DESTIN_hex1792  ***
DESTIN_hex1793  ***
DESTIN_hex1794  ***
DESTIN_hex1795  ***
DESTIN_hex1796  ***
DESTIN_hex1798  ***
DESTIN_hex1800  ***
DESTIN_hex1802  ***
DESTIN_hex1804  ***
DESTIN_hex1805  ***
DESTIN_hex1806  ***
DESTIN_hex1807  ***
DESTIN_hex1808  ***
DESTIN_hex1820  ***
DESTIN_hex1821  ***
DESTIN_hex1822  ***
DESTIN_hex1823  ***
DESTIN_hex1824  ***
DESTIN_hex1827  ***
DESTIN_hex1828  ***
DESTIN_hex1829  ***
DESTIN_hex1831  ***
DESTIN_hex1833  ***
DESTIN_hex1834  ***
DESTIN_hex1835  ***
DESTIN_hex1846  ***
DESTIN_hex1847  ***
DESTIN_hex1848  ***
DESTIN_hex1849  ***
DESTIN_hex1850  ***
DESTIN_hex1852  ***
DESTIN_hex1853  ***
DESTIN_hex1854  ***
DESTIN_hex1855  ***
DESTIN_hex1856  ***
DESTIN_hex1857  ***
DESTIN_hex1858  ***
DESTIN_hex1859  ***
DESTIN_hex1860  ***
DESTIN_hex1861  ***
DESTIN_hex1862  ***
DESTIN_hex1874  ***
DESTIN_hex1875  ***
DESTIN_hex1876  ***
DESTIN_hex1877  ***
DESTIN_hex1878  ***
DESTIN_hex1879  ***
DESTIN_hex1882  ***
DESTIN_hex1883  ***
DESTIN_hex1884  ***
DESTIN_hex1886  ***
DESTIN_hex1887  ***
DESTIN_hex1888  ***
DESTIN_hex1889  ***
DESTIN_hex1890  ***
DESTIN_hex1900  ***
DESTIN_hex1901  ***
DESTIN_hex1902  ***
DESTIN_hex1903  ***
DESTIN_hex1904  ***
DESTIN_hex1905  ***
DESTIN_hex1906  ***
DESTIN_hex1907  ***
DESTIN_hex1908  ***
DESTIN_hex1909  ***
DESTIN_hex1910  ***
DESTIN_hex1912  ***
DESTIN_hex1913  ***
DESTIN_hex1914  ***
DESTIN_hex1916  ***
DESTIN_hex1928  ***
DESTIN_hex1929  ***
DESTIN_hex1930  ***
DESTIN_hex1931  ***
DESTIN_hex1932  ***
DESTIN_hex1933  ***
DESTIN_hex1934  ***
DESTIN_hex1935  ***
DESTIN_hex1936  ***
DESTIN_hex1937  ***
DESTIN_hex1938  ***
DESTIN_hex1940  ***
DESTIN_hex1941  ***
DESTIN_hex1942  ***
DESTIN_hex1954  ***
DESTIN_hex1955  ***
DESTIN_hex1956  ***
DESTIN_hex1958  ***
DESTIN_hex1959  ***
DESTIN_hex1960  ***
DESTIN_hex1961  ***
DESTIN_hex1962  ***
DESTIN_hex1963  ***
DESTIN_hex1964  ***
DESTIN_hex1967  ***
DESTIN_hex1968  ***
DESTIN_hex1982  ***
DESTIN_hex1983  ***
DESTIN_hex1984  ***
DESTIN_hex1985  ***
DESTIN_hex1986  ***
DESTIN_hex1987  ***
DESTIN_hex1988  ***
DESTIN_hex1989  ***
DESTIN_hex1990  ***
DESTIN_hex1991  ***
DESTIN_hex1992  ***
DESTIN_hex1994  ***
DESTIN_hex1995  ***
DESTIN_hex2009  ***
DESTIN_hex2010  ***
DESTIN_hex2011  ***
DESTIN_hex2012  ***
DESTIN_hex2013  ***
DESTIN_hex2014  ***
DESTIN_hex2015  ***
DESTIN_hex2016  ***
DESTIN_hex2017  ***
DESTIN_hex2021  ***
DESTIN_hex2036  ***
DESTIN_hex2037  ***
DESTIN_hex2038  ***
DESTIN_hex2039  ***
DESTIN_hex2040  ***
DESTIN_hex2041  ***
DESTIN_hex2042  ***
DESTIN_hex2043  ***
DESTIN_hex2044  ***
DESTIN_hex2046  ***
DESTIN_hex2049  ***
DESTIN_hex2063  ***
DESTIN_hex2064  ***
DESTIN_hex2065  ***
DESTIN_hex2066  ***
DESTIN_hex2067  ***
DESTIN_hex2068  ***
DESTIN_hex2069  ***
DESTIN_hex2070  ***
DESTIN_hex2071  ***
DESTIN_hex2072  ***
DESTIN_hex2074  ***
DESTIN_hex2089  ***
DESTIN_hex2090  ***
DESTIN_hex2091  ***
DESTIN_hex2092  ***
DESTIN_hex2093  ***
DESTIN_hex2094  ***
DESTIN_hex2095  ***
DESTIN_hex2096  ***
DESTIN_hex2097  ***
DESTIN_hex2098  ***
DESTIN_hex2100  ***
DESTIN_hex2101  ***
DESTIN_hex2102  ***
DESTIN_hex2116  ***
DESTIN_hex2117  ***
DESTIN_hex2119  ***
DESTIN_hex2120  ***
DESTIN_hex2121  ***
DESTIN_hex2122  ***
DESTIN_hex2123  ***
DESTIN_hex2124  ***
DESTIN_hex2125  ***
DESTIN_hex2126  ***
DESTIN_hex2129  ***
DESTIN_hex2146  ***
DESTIN_hex2147  ***
DESTIN_hex2148  ***
DESTIN_hex2149  ***
DESTIN_hex2150  ***
DESTIN_hex2151  ***
DESTIN_hex2152  ***
DESTIN_hex2153  ***
DESTIN_hex2154  ***
DESTIN_hex2155  ***
DESTIN_hex2171  ***
DESTIN_hex2172  ***
DESTIN_hex2174  ***
DESTIN_hex2175  ***
DESTIN_hex2176  ***
DESTIN_hex2177  ***
DESTIN_hex2178  ***
DESTIN_hex2179  ***
DESTIN_hex2180  ***
DESTIN_hex2181  ***
DESTIN_hex2182  ***
DESTIN_hex2200  ***
DESTIN_hex2201  ***
DESTIN_hex2202  ***
DESTIN_hex2203  ***
DESTIN_hex2204  ***
DESTIN_hex2205  ***
DESTIN_hex2206  ***
DESTIN_hex2207  ***
DESTIN_hex2208  ***
DESTIN_hex2209  ***
DESTIN_hex2227  ***
DESTIN_hex2228  ***
DESTIN_hex2229  ***
DESTIN_hex2230  ***
DESTIN_hex2231  ***
DESTIN_hex2233  ***
DESTIN_hex2234  ***
DESTIN_hex2235  ***
DESTIN_hex2254  ***
DESTIN_hex2255  ***
DESTIN_hex2256  ***
DESTIN_hex2257  ***
DESTIN_hex2258  ***
DESTIN_hex2259  ***
DESTIN_hex2260  ***
DESTIN_hex2261  ***
DESTIN_hex2262  ***
DESTIN_hex2281  ***
DESTIN_hex2282  ***
DESTIN_hex2283  ***
DESTIN_hex2284  ***
DESTIN_hex2285  ***
DESTIN_hex2286  ***
DESTIN_hex2287  ***
DESTIN_hex2288  ***
DESTIN_hex2308  ***
DESTIN_hex2309  ***
DESTIN_hex2310  ***
DESTIN_hex2311  ***
DESTIN_hex2312  ***
DESTIN_hex2313  ***
DESTIN_hex2314  ***
DESTIN_hex2315  ***
DESTIN_hex2316  ***
DESTIN_hex2317  ***
DESTIN_hex2335  ***
DESTIN_hex2336  ***
DESTIN_hex2337  ***
DESTIN_hex2338  ***
DESTIN_hex2339  ***
DESTIN_hex2340  ***
DESTIN_hex2341  ***
DESTIN_hex2342  ***
DESTIN_hex2343  ***
DESTIN_hex2362  ***
DESTIN_hex2363  ***
DESTIN_hex2364  ***
DESTIN_hex2365  ***
DESTIN_hex2366  ***
DESTIN_hex2367  ***
DESTIN_hex2368  ***
DESTIN_hex2369  ***
DESTIN_hex2370  ***
DESTIN_hex2371  ***
DESTIN_hex2389  ***
DESTIN_hex2390  ***
DESTIN_hex2391  ***
DESTIN_hex2392  ***
DESTIN_hex2393  ***
DESTIN_hex2394  ***
DESTIN_hex2395  ***
DESTIN_hex2396  ***
DESTIN_hex2397  ***
DESTIN_hex2398  ***
DESTIN_hex2416  ***
DESTIN_hex2417  ***
DESTIN_hex2418  ***
DESTIN_hex2419  ***
DESTIN_hex2420  ***
DESTIN_hex2422  ***
DESTIN_hex2423  ***
DESTIN_hex2424  ***
DESTIN_hex2425  ***
DESTIN_hex2426  ***
DESTIN_hex2443  ***
DESTIN_hex2444  ***
DESTIN_hex2445  ***
DESTIN_hex2448  ***
DESTIN_hex2449  ***
DESTIN_hex2450  ***
DESTIN_hex2451  ***
DESTIN_hex2452  ***
DESTIN_hex2471  ***
DESTIN_hex2472  ***
DESTIN_hex2473  ***
DESTIN_hex2476  ***
DESTIN_hex2478  ***
DESTIN_hex2479  ***
DESTIN_hex2480  ***
DESTIN_hex2497  ***
DESTIN_hex2498  ***
DESTIN_hex2499  ***
DESTIN_hex2500  ***
DESTIN_hex2503  ***
DESTIN_hex2504  ***
DESTIN_hex2505  ***
DESTIN_hex2525  ***
DESTIN_hex2526  ***
DESTIN_hex2527  ***
DESTIN_hex2531  ***
DESTIN_hex2532  ***
DESTIN_hex2533  ***
DESTIN_hex2551  ***
DESTIN_hex2552  ***
DESTIN_hex2553  ***
DESTIN_hex2554  ***
DESTIN_hex2557  ***
DESTIN_hex2559  ***
DESTIN_hex2579  ***
DESTIN_hex2580  ***
DESTIN_hex2581  ***
DESTIN_hex2584  ***
DESTIN_hex2605  ***
DESTIN_hex2606  ***
DESTIN_hex2607  ***
DESTIN_hex2608  ***
DESTIN_hex2609  ***
DESTIN_hex2610  ***
DESTIN_hex2611  ***
DESTIN_hex2633  ***
DESTIN_hex2634  ***
DESTIN_hex2635  ***
DESTIN_hex2636  ***
DESTIN_hex2637  ***
DESTIN_hex2638  ***
DESTIN_hex2660  ***
DESTIN_hex2661  ***
DESTIN_hex2662  ***
DESTIN_hex2663  ***
DESTIN_hex2664  ***
DESTIN_hex2665  ***
DESTIN_hex2687  ***
DESTIN_hex2688  ***
DESTIN_hex2689  ***
DESTIN_hex2690  ***
DESTIN_hex2691  ***
DESTIN_hex2693  ***
DESTIN_hex2714  ***
DESTIN_hex2715  ***
DESTIN_hex2716  ***
DESTIN_hex2717  ***
DESTIN_hex2718  ***
DESTIN_hex2719  ***
DESTIN_hex2742  ***
DESTIN_hex2743  ***
DESTIN_hex2744  ***
DESTIN_hex2745  ***
DESTIN_hex2746  ***
DESTIN_hex2747  ***
DESTIN_hex2768  ***
DESTIN_hex2769  ***
DESTIN_hex2770  ***
DESTIN_hex2771  ***
DESTIN_hex2772  ***
DESTIN_hex2773  ***
DESTIN_hex2795  ***
DESTIN_hex2796  ***
DESTIN_hex2797  ***
DESTIN_hex2798  ***
DESTIN_hex2799  ***
DESTIN_hex2800  ***
DESTIN_hex2801  ***
DESTIN_hex2822  ***
DESTIN_hex2823  ***
DESTIN_hex2824  ***
DESTIN_hex2825  ***
DESTIN_hex2826  ***
DESTIN_hex2827  ***
DESTIN_hex2850  ***
DESTIN_hex2851  ***
DESTIN_hex2852  ***
DESTIN_hex2853  ***
DESTIN_hex2854  ***
DESTIN_hex2877  ***
DESTIN_hex2878  ***
DESTIN_hex2879  ***
DESTIN_hex2880  ***
DESTIN_hex2881  ***
DESTIN_hex2905  ***
DESTIN_hex2906  ***
DESTIN_hex2907  ***
DESTIN_hex2908  ***
DESTIN_hex2909  ***
DESTIN_hex2931  ***
DESTIN_hex2932  ***
DESTIN_hex2933  ***
DESTIN_hex2934  ***
DESTIN_hex2959  ***
DESTIN_hex2960  ***
DESTIN_hex2961  ***
DESTIN_hex2962  ***
DESTIN_hex2963  ***
DESTIN_hex2987  ***
DESTIN_hex2988  ***
DESTIN_hex2989  ***
DESTIN_hex2990  ***
DESTIN_hex3015  ***
DESTIN_hex3016  ***
DESTIN_hex3017  ***
DESTIN_hex3040  ***
DESTIN_hex3043  ***
DESTIN_hex3044  ***
DESTIN_hex3068  ***
DESTIN_hex3070  ***
DESTIN_hex3072  ***
DESTIN_hex3092  ***
DESTIN_hex3098  ***
DESTIN_hex3123  ***
DESTIN_hex3126  ***
DESTIN_hex3151  ***
DESTIN_hex3152  ***
DESTIN_hex3173  ***
DESTIN_hex3178  ***
DESTIN_hex3179  ***
DESTIN_hex3205  ***
DESTIN_hex3206  ***
DESTIN_hex3232  ***
DESTIN_hex3233  ***
DESTIN_hex3308  ***
o_housing_count ***
o_biz_count     ***
o_school_count  ***
o_busstop_count ***
o_mrtlrt_count  ***
dist            ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

(Dispersion parameter for poisson family taken to be 1)

    Null deviance: 341321396  on 65051  degrees of freedom
Residual deviance:  36294465  on 64224  degrees of freedom
AIC: 36653143

Number of Fisher Scoring iterations: 8
Insights
  • By absolute value, the most influential variable is the Distance between origin and destination. The negative coefficient means there is an inverse relationship between Distance and Number of Trips: More trips are made when the distance is nearer, while less trips are made when the distance is further.
  • The most propulsive variable appears to be Bus Stop counts at the origin site with a coefficient of 0.553: More trips are made when there is higher bus stop density at the origin site, while less trips are made when there is lower bus stop density at the origin site.
  • There is an inverse relationship between the number of businesses at the origin and Number of Trips: More bus trips are made when there are less businesses at the origin, while less bus trips are made when there are more businesses at the origin.
  • Interestingly, unlike with business density, there is a direct relationship between school density at origin site and bus trips: More bus trips are made when there are more schools at the origin, while less bus trips are made when there are less schools at the origin. This could be due to the relationship between schools and bus stop as a result of urban planning – most schools have at least one bus stop immediately within the vicinity of the school.
Code
CalcRSquared(decSIM$data$TOTAL_TRIPS, decSIM$fitted.values)
[1] 0.4144590931
Insights

With reference to the R2 above, it can be concluded that the model accounts for almost 41.44% of the variation of flows.

Doubly Constrained Spatial Interaction Model

Next, fit a doubly constrained SIM by using the code chunk below.

Code
dbcSIM <- glm(formula = TOTAL_TRIPS ~ 
                ORIGIN_hex + 
                DESTIN_hex + 
                dist,
              family = poisson(link = "log"),
              data = flow_data_log,
              na.action = na.exclude)
Code
summary(dbcSIM)

Call:
glm(formula = TOTAL_TRIPS ~ ORIGIN_hex + DESTIN_hex + dist, family = poisson(link = "log"), 
    data = flow_data_log, na.action = na.exclude)

Deviance Residuals: 
       Min          1Q      Median          3Q         Max  
-189.23777    -9.59267    -3.37029     2.29728   372.68284  

Coefficients:
                    Estimate    Std. Error     z value               Pr(>|z|)
(Intercept)    14.3800438474  0.1374345620   104.63193 < 0.000000000000000222
ORIGIN_hex146   2.1835203793  0.1912090937    11.41954 < 0.000000000000000222
ORIGIN_hex174   2.1384201895  0.1978768354    10.80682 < 0.000000000000000222
ORIGIN_hex175   0.1038432960  0.1693595948     0.61315             0.53977536
ORIGIN_hex200  -0.4966627544  0.1501239095    -3.30835             0.00093847
ORIGIN_hex201   1.7389270413  0.1300958785    13.36650 < 0.000000000000000222
ORIGIN_hex202   3.3861740906  0.1299735913    26.05279 < 0.000000000000000222
ORIGIN_hex203   0.7830595914  0.1373789614     5.70000 0.00000001198099271729
ORIGIN_hex227   2.3025870011  0.1435896399    16.03589 < 0.000000000000000222
ORIGIN_hex228   0.9826573869  0.1315819019     7.46803 0.00000000000008140525
ORIGIN_hex229   2.3885492037  0.1495380994    15.97285 < 0.000000000000000222
ORIGIN_hex230   4.2239518256  0.1287714476    32.80193 < 0.000000000000000222
ORIGIN_hex231   0.8030467017  0.1451949786     5.53082 0.00000003187446490472
ORIGIN_hex254   4.5153366053  0.1292211758    34.94270 < 0.000000000000000222
ORIGIN_hex255   1.0923572017  0.1447844683     7.54471 0.00000000000004532860
ORIGIN_hex256   1.6197444529  0.1375821561    11.77293 < 0.000000000000000222
ORIGIN_hex257   2.5860306846  0.1293532026    19.99201 < 0.000000000000000222
ORIGIN_hex258   0.4537789331  0.1457984916     3.11237             0.00185591
ORIGIN_hex259   0.9984929285  0.1369997050     7.28829 0.00000000000031392479
ORIGIN_hex281   2.5308770666  0.1356518268    18.65715 < 0.000000000000000222
ORIGIN_hex282   1.9952119647  0.1383730855    14.41908 < 0.000000000000000222
ORIGIN_hex284   1.9893878335  0.1330659238    14.95039 < 0.000000000000000222
ORIGIN_hex285   2.9964803672  0.1299802758    23.05335 < 0.000000000000000222
ORIGIN_hex286   5.4024286875  0.1279344002    42.22812 < 0.000000000000000222
ORIGIN_hex312   0.9634289130  0.1446105219     6.66223 0.00000000002696989882
ORIGIN_hex313   1.1345973471  0.1371344092     8.27362 < 0.000000000000000222
ORIGIN_hex314   1.9385952633  0.1324591472    14.63542 < 0.000000000000000222
ORIGIN_hex336   0.2659822141  0.1845139320     1.44153             0.14943524
ORIGIN_hex338   1.8472202344  0.1342897616    13.75548 < 0.000000000000000222
ORIGIN_hex339   4.4423924564  0.1280550158    34.69128 < 0.000000000000000222
ORIGIN_hex340  -0.4413742068  0.1929525670    -2.28748             0.02216810
ORIGIN_hex366   5.2201051270  0.1281276124    40.74145 < 0.000000000000000222
ORIGIN_hex367   2.6116337525  0.1304827062    20.01517 < 0.000000000000000222
ORIGIN_hex391   2.8628531884  0.1546821649    18.50797 < 0.000000000000000222
ORIGIN_hex392   5.0539456013  0.1281732636    39.43058 < 0.000000000000000222
ORIGIN_hex393   2.8709110731  0.1304578460    22.00643 < 0.000000000000000222
ORIGIN_hex394   0.0105633390  0.2747485634     0.03845             0.96933105
ORIGIN_hex419   0.6993416600  0.1545975424     4.52363 0.00000607887353914640
ORIGIN_hex420   3.3226347090  0.1317519331    25.21887 < 0.000000000000000222
ORIGIN_hex421   0.9775549108  0.1757428231     5.56242 0.00000002660632023985
ORIGIN_hex445   2.1986220276  0.1323620192    16.61067 < 0.000000000000000222
ORIGIN_hex446   3.8760142999  0.1286525082    30.12778 < 0.000000000000000222
ORIGIN_hex447   1.7021490345  0.1395567167    12.19683 < 0.000000000000000222
ORIGIN_hex472  -0.2326678589  0.1854568017    -1.25457             0.20963623
ORIGIN_hex473   1.2093256276  0.1371808701     8.81556 < 0.000000000000000222
ORIGIN_hex474   1.9398760993  0.1373276572    14.12590 < 0.000000000000000222
ORIGIN_hex499   0.5497510262  0.1349205673     4.07463 0.00004608809849972528
ORIGIN_hex500   3.8888189028  0.1284710367    30.27000 < 0.000000000000000222
ORIGIN_hex526   1.6934666477  0.1315585967    12.87234 < 0.000000000000000222
ORIGIN_hex527   2.0871439114  0.1377332819    15.15352 < 0.000000000000000222
ORIGIN_hex528   2.6194623383  0.1323566384    19.79094 < 0.000000000000000222
ORIGIN_hex552   0.4487328360  0.1393988141     3.21906             0.00128613
ORIGIN_hex553  -1.7226175524  0.1818835871    -9.47099 < 0.000000000000000222
ORIGIN_hex554   1.7518924348  0.1331677156    13.15553 < 0.000000000000000222
ORIGIN_hex555   1.7701139547  0.1343352233    13.17684 < 0.000000000000000222
ORIGIN_hex581   1.5926355723  0.1316030919    12.10181 < 0.000000000000000222
ORIGIN_hex582   1.8363988663  0.1317128904    13.94244 < 0.000000000000000222
ORIGIN_hex607   1.3246429181  0.1351216944     9.80333 < 0.000000000000000222
ORIGIN_hex608   1.1856136019  0.1344894215     8.81566 < 0.000000000000000222
ORIGIN_hex609   6.5544082248  0.1280102543    51.20221 < 0.000000000000000222
ORIGIN_hex610   2.0871312399  0.1388114781    15.03573 < 0.000000000000000222
ORIGIN_hex611   0.2050112082  0.2963459368     0.69180             0.48906487
ORIGIN_hex634   2.6149026263  0.1328263584    19.68662 < 0.000000000000000222
ORIGIN_hex635   0.1670284663  0.1422416346     1.17426             0.24029145
ORIGIN_hex636   2.8372646163  0.1287369419    22.03924 < 0.000000000000000222
ORIGIN_hex638   2.7997550875  0.1300060168    21.53558 < 0.000000000000000222
ORIGIN_hex661   2.0351241647  0.1409036302    14.44338 < 0.000000000000000222
ORIGIN_hex662   2.3437489860  0.1331494998    17.60239 < 0.000000000000000222
ORIGIN_hex663   2.3935238872  0.1302330019    18.37878 < 0.000000000000000222
ORIGIN_hex664   2.5303250624  0.1359552392    18.61146 < 0.000000000000000222
ORIGIN_hex665   3.4273676339  0.1286912842    26.63248 < 0.000000000000000222
ORIGIN_hex689   0.6419006813  0.1342219311     4.78238 0.00000173229219151876
ORIGIN_hex690   2.3252238585  0.1318771496    17.63174 < 0.000000000000000222
ORIGIN_hex692   3.4579512397  0.1286492696    26.87890 < 0.000000000000000222
ORIGIN_hex693   2.7404862133  0.1304651426    21.00551 < 0.000000000000000222
ORIGIN_hex715   0.7119714202  0.1395628078     5.10144 0.00000033707722717034
ORIGIN_hex716   2.0230066501  0.1330876110    15.20056 < 0.000000000000000222
ORIGIN_hex717   3.4418366897  0.1291413679    26.65170 < 0.000000000000000222
ORIGIN_hex718   6.6811726951  0.1280693007    52.16842 < 0.000000000000000222
ORIGIN_hex719   3.2406474883  0.1292916332    25.06463 < 0.000000000000000222
ORIGIN_hex720  -0.6501733605  0.2882383329    -2.25568             0.02409070
ORIGIN_hex743   2.1826831575  0.1303181747    16.74888 < 0.000000000000000222
ORIGIN_hex744   2.9872537082  0.1304716149    22.89581 < 0.000000000000000222
ORIGIN_hex745   5.0067933150  0.1281468912    39.07074 < 0.000000000000000222
ORIGIN_hex746   5.9957541442  0.1280757097    46.81414 < 0.000000000000000222
ORIGIN_hex747   2.9644584610  0.1303223870    22.74712 < 0.000000000000000222
ORIGIN_hex748   1.7236380689  0.1413544997    12.19373 < 0.000000000000000222
ORIGIN_hex769   0.6040522490  0.1443472888     4.18471 0.00002855242323226111
ORIGIN_hex770   2.1604964494  0.1304145844    16.56637 < 0.000000000000000222
ORIGIN_hex771   3.5983828639  0.1285021729    28.00251 < 0.000000000000000222
ORIGIN_hex772   5.7481397702  0.1280632863    44.88515 < 0.000000000000000222
ORIGIN_hex773   4.8262626911  0.1283659152    37.59770 < 0.000000000000000222
ORIGIN_hex774   2.3030928075  0.1339803760    17.18978 < 0.000000000000000222
ORIGIN_hex775   3.6652120004  0.1305865258    28.06731 < 0.000000000000000222
ORIGIN_hex776   1.3942831236  0.2411629782     5.78150 0.00000000740386404077
ORIGIN_hex777   1.3471612575  0.2447334287     5.50461 0.00000003699934393892
ORIGIN_hex797   0.9885683256  0.1328985471     7.43852 0.00000000000010182058
ORIGIN_hex798   0.2842201538  0.1675023593     1.69681             0.08973205
ORIGIN_hex799   5.5363743320  0.1280743665    43.22781 < 0.000000000000000222
ORIGIN_hex800   6.3341958744  0.1280516717    49.46594 < 0.000000000000000222
ORIGIN_hex802   0.8565731186  0.1541471940     5.55685 0.00000002746837260865
ORIGIN_hex803   1.2227584447  0.1836232295     6.65906 0.00000000002755809303
ORIGIN_hex805   1.6918857228  0.1613623336    10.48501 < 0.000000000000000222
ORIGIN_hex806   4.2201004146  0.1354357575    31.15943 < 0.000000000000000222
ORIGIN_hex823   1.0310643875  0.1398457249     7.37287 0.00000000000016699298
ORIGIN_hex824   0.4661112920  0.1383760340     3.36844             0.00075595
ORIGIN_hex825   3.4658439272  0.1297321380    26.71538 < 0.000000000000000222
ORIGIN_hex826   7.0227782170  0.1280309535    54.85219 < 0.000000000000000222
ORIGIN_hex827   6.2125831295  0.1280784164    48.50609 < 0.000000000000000222
ORIGIN_hex832   1.0318505074  1.0092941839     1.02235             0.30661593
ORIGIN_hex833   0.6530078899  0.1815461262     3.59693             0.00032200
ORIGIN_hex851  -0.8188456464  0.1613245267    -5.07577 0.00000038593677490210
ORIGIN_hex852   2.3390215894  0.1298894927    18.00778 < 0.000000000000000222
ORIGIN_hex853   3.6404357508  0.1283299010    28.36779 < 0.000000000000000222
ORIGIN_hex854   5.2618821499  0.1281013634    41.07593 < 0.000000000000000222
ORIGIN_hex856  -0.0188771466  0.2409847424    -0.07833             0.93756287
ORIGIN_hex861   1.5123928776  0.1686696061     8.96660 < 0.000000000000000222
ORIGIN_hex862   3.4751528873  0.1631015014    21.30669 < 0.000000000000000222
ORIGIN_hex878   1.2265680153  0.1336603362     9.17675 < 0.000000000000000222
ORIGIN_hex879   2.1932288797  0.1304732083    16.80980 < 0.000000000000000222
ORIGIN_hex880   4.2701028279  0.1281743554    33.31480 < 0.000000000000000222
ORIGIN_hex881   4.2193327163  0.1285013627    32.83493 < 0.000000000000000222
ORIGIN_hex888   2.3958259447  0.2255769648    10.62088 < 0.000000000000000222
ORIGIN_hex889   4.3240846908  0.1411842832    30.62724 < 0.000000000000000222
ORIGIN_hex905   1.6033902802  0.1357820255    11.80856 < 0.000000000000000222
ORIGIN_hex906  -0.2815118999  0.1803470870    -1.56095             0.11853671
ORIGIN_hex907   2.2988153931  0.1304557661    17.62142 < 0.000000000000000222
ORIGIN_hex908   6.1033530687  0.1280600995    47.66007 < 0.000000000000000222
ORIGIN_hex910   2.0073745363  0.1439595762    13.94402 < 0.000000000000000222
ORIGIN_hex932   3.1149962663  0.1292067573    24.10862 < 0.000000000000000222
ORIGIN_hex933   3.3754195735  0.1288790885    26.19059 < 0.000000000000000222
ORIGIN_hex934   4.7643382487  0.1281591704    37.17516 < 0.000000000000000222
ORIGIN_hex935   5.7189457345  0.1280826466    44.65043 < 0.000000000000000222
ORIGIN_hex937   6.2735409152  0.1282344470    48.92243 < 0.000000000000000222
ORIGIN_hex959   3.9605862340  0.1289131052    30.72291 < 0.000000000000000222
ORIGIN_hex960   4.7216580756  0.1282033483    36.82944 < 0.000000000000000222
ORIGIN_hex961   5.7443905171  0.1280873013    44.84746 < 0.000000000000000222
ORIGIN_hex962   6.3482019582  0.1280678120    49.56907 < 0.000000000000000222
ORIGIN_hex986   0.1193060381  0.1562154009     0.76373             0.44502949
ORIGIN_hex987   5.9071990274  0.1280852093    46.11929 < 0.000000000000000222
ORIGIN_hex988   4.7513688620  0.1281915802    37.06459 < 0.000000000000000222
ORIGIN_hex989   6.0470783180  0.1280665595    47.21825 < 0.000000000000000222
ORIGIN_hex991   3.0273416210  0.1319456049    22.94386 < 0.000000000000000222
ORIGIN_hex1013  0.1119889556  0.1651568933     0.67808             0.49772339
ORIGIN_hex1014  4.1097863146  0.1284680160    31.99074 < 0.000000000000000222
ORIGIN_hex1015  4.8767526998  0.1282410868    38.02801 < 0.000000000000000222
ORIGIN_hex1016  4.9073523756  0.1281242187    38.30152 < 0.000000000000000222
ORIGIN_hex1042  4.7270278361  0.1282897686    36.84649 < 0.000000000000000222
ORIGIN_hex1043  5.4322739288  0.1281133833    42.40208 < 0.000000000000000222
ORIGIN_hex1045  2.5108624462  0.1342492050    18.70300 < 0.000000000000000222
ORIGIN_hex1067  3.7056905774  0.1288729440    28.75460 < 0.000000000000000222
ORIGIN_hex1068  2.9203547466  0.1307313913    22.33859 < 0.000000000000000222
ORIGIN_hex1069  2.5617435940  0.1294991793    19.78193 < 0.000000000000000222
ORIGIN_hex1070  5.7306389326  0.1280773749    44.74357 < 0.000000000000000222
ORIGIN_hex1078  2.2029719896  0.1480935597    14.87554 < 0.000000000000000222
ORIGIN_hex1093  1.7434609963  0.1352916329    12.88669 < 0.000000000000000222
ORIGIN_hex1094  4.8436157101  0.1282027102    37.78092 < 0.000000000000000222
ORIGIN_hex1095  1.9367632316  0.1309509157    14.78999 < 0.000000000000000222
ORIGIN_hex1096  5.3546213600  0.1280939211    41.80231 < 0.000000000000000222
ORIGIN_hex1097  5.5843833865  0.1281335606    43.58252 < 0.000000000000000222
ORIGIN_hex1099  7.3610868211  0.1280701773    57.47698 < 0.000000000000000222
ORIGIN_hex1100  3.4214376082  0.1345448389    25.42972 < 0.000000000000000222
ORIGIN_hex1122  5.7765397121  0.1281015602    45.09344 < 0.000000000000000222
ORIGIN_hex1123  6.1473317651  0.1280589009    48.00394 < 0.000000000000000222
ORIGIN_hex1124  5.3827850413  0.1281131594    42.01586 < 0.000000000000000222
ORIGIN_hex1125  6.0585385763  0.1281037743    47.29399 < 0.000000000000000222
ORIGIN_hex1126  5.1696614595  0.1287033033    40.16728 < 0.000000000000000222
ORIGIN_hex1127  6.2926181064  0.1280892673    49.12682 < 0.000000000000000222
ORIGIN_hex1128  6.2189896785  0.1281595757    48.52536 < 0.000000000000000222
ORIGIN_hex1132  0.5027881736  0.2747078396     1.83027             0.06721031
ORIGIN_hex1147  0.3914722631  0.1507807079     2.59630             0.00942332
ORIGIN_hex1148  4.1428571135  0.1283335818    32.28194 < 0.000000000000000222
ORIGIN_hex1149  3.3395270827  0.1286196815    25.96436 < 0.000000000000000222
ORIGIN_hex1150  6.0296466623  0.1280639744    47.08308 < 0.000000000000000222
ORIGIN_hex1151  5.7305227766  0.1280823729    44.74092 < 0.000000000000000222
ORIGIN_hex1152  5.7780497418  0.1281077398    45.10305 < 0.000000000000000222
ORIGIN_hex1153  7.1582452757  0.1280965736    55.88163 < 0.000000000000000222
ORIGIN_hex1154  6.8081033044  0.1280659695    53.16091 < 0.000000000000000222
ORIGIN_hex1155  2.9290598498  0.1312935029    22.30925 < 0.000000000000000222
ORIGIN_hex1158  4.3737369232  0.1290072270    33.90304 < 0.000000000000000222
ORIGIN_hex1174  2.2218494949  0.1333709800    16.65917 < 0.000000000000000222
ORIGIN_hex1175  2.7206867952  0.1318751564    20.63078 < 0.000000000000000222
ORIGIN_hex1176  4.7587315137  0.1281597423    37.13125 < 0.000000000000000222
ORIGIN_hex1177  3.5517130962  0.1283750158    27.66670 < 0.000000000000000222
ORIGIN_hex1178  5.5461958554  0.1280931448    43.29815 < 0.000000000000000222
ORIGIN_hex1179  5.0979465057  0.1281453210    39.78254 < 0.000000000000000222
ORIGIN_hex1180  4.7256105646  0.1282496072    36.84698 < 0.000000000000000222
ORIGIN_hex1181  5.9848501537  0.1280908322    46.72349 < 0.000000000000000222
ORIGIN_hex1182  6.0929926134  0.1281305514    47.55300 < 0.000000000000000222
ORIGIN_hex1183  6.6007293769  0.1281704199    51.49963 < 0.000000000000000222
ORIGIN_hex1185  3.1995782808  0.1306765012    24.48473 < 0.000000000000000222
ORIGIN_hex1201  2.3793693640  0.1322061061    17.99742 < 0.000000000000000222
ORIGIN_hex1202  4.5769805679  0.1282334162    35.69257 < 0.000000000000000222
ORIGIN_hex1203  3.4315672343  0.1288366036    26.63503 < 0.000000000000000222
ORIGIN_hex1205  6.2125432644  0.1280615149    48.51218 < 0.000000000000000222
ORIGIN_hex1206  5.5180703894  0.1281317652    43.06559 < 0.000000000000000222
ORIGIN_hex1207  5.2766088521  0.1281424887    41.17767 < 0.000000000000000222
ORIGIN_hex1209  6.4172397339  0.1281817805    50.06359 < 0.000000000000000222
ORIGIN_hex1210  2.9972970296  0.1309792285    22.88376 < 0.000000000000000222
ORIGIN_hex1211  2.7683139293  0.1313699133    21.07266 < 0.000000000000000222
ORIGIN_hex1212  2.4053339087  0.1335169900    18.01519 < 0.000000000000000222
ORIGIN_hex1228  1.7394578855  0.1357186532    12.81665 < 0.000000000000000222
ORIGIN_hex1229  2.6809048214  0.1291075241    20.76490 < 0.000000000000000222
ORIGIN_hex1230  4.5270541757  0.1282010759    35.31214 < 0.000000000000000222
ORIGIN_hex1231  5.6006971618  0.1281692515    43.69767 < 0.000000000000000222
ORIGIN_hex1232  5.9731929566  0.1280697429    46.64016 < 0.000000000000000222
ORIGIN_hex1233  5.9097387504  0.1281669412    46.10970 < 0.000000000000000222
ORIGIN_hex1235  6.1251508472  0.1281137461    47.81025 < 0.000000000000000222
ORIGIN_hex1236  4.4613496158  0.1283065913    34.77101 < 0.000000000000000222
ORIGIN_hex1237  5.1800916792  0.1282435324    40.39262 < 0.000000000000000222
ORIGIN_hex1238  2.2690721004  0.1318429582    17.21042 < 0.000000000000000222
ORIGIN_hex1239  0.7253209539  0.1501310719     4.83125 0.00000135677543703410
ORIGIN_hex1240  0.9832479807  0.1803574919     5.45166 0.00000004990139655395
ORIGIN_hex1255  4.4488981587  0.1286800949    34.57332 < 0.000000000000000222
ORIGIN_hex1256  3.6818757419  0.1283884153    28.67763 < 0.000000000000000222
ORIGIN_hex1257  2.7111532182  0.1290475728    21.00894 < 0.000000000000000222
ORIGIN_hex1258  4.7938648747  0.1282255145    37.38620 < 0.000000000000000222
ORIGIN_hex1259  5.5920735889  0.1280958166    43.65540 < 0.000000000000000222
ORIGIN_hex1261  5.6640673122  0.1281006689    44.21575 < 0.000000000000000222
ORIGIN_hex1262  5.8836888445  0.1281031947    45.92929 < 0.000000000000000222
ORIGIN_hex1263  3.1588790453  0.1294563536    24.40111 < 0.000000000000000222
ORIGIN_hex1264  3.8942015134  0.1287091456    30.25583 < 0.000000000000000222
ORIGIN_hex1265  1.6682125859  0.1325402582    12.58646 < 0.000000000000000222
ORIGIN_hex1266  3.3359338247  0.1300576432    25.64966 < 0.000000000000000222
ORIGIN_hex1282  4.3527634057  0.1285615861    33.85742 < 0.000000000000000222
ORIGIN_hex1283  4.9193540140  0.1281087767    38.39982 < 0.000000000000000222
ORIGIN_hex1284  4.5718634432  0.1281635716    35.67210 < 0.000000000000000222
ORIGIN_hex1285  3.2420585822  0.1286611001    25.19844 < 0.000000000000000222
ORIGIN_hex1286  5.0734535435  0.1281300274    39.59613 < 0.000000000000000222
ORIGIN_hex1287  5.1626322668  0.1281850605    40.27484 < 0.000000000000000222
ORIGIN_hex1288  2.4743728607  0.1297647914    19.06814 < 0.000000000000000222
ORIGIN_hex1289  5.8724551054  0.1280825403    45.84899 < 0.000000000000000222
ORIGIN_hex1293  0.6687191180  0.1457125076     4.58930 0.00000444724540485635
ORIGIN_hex1308  3.2426173034  0.1287928747    25.17699 < 0.000000000000000222
ORIGIN_hex1309  5.6635137971  0.1280875364    44.21596 < 0.000000000000000222
ORIGIN_hex1310  6.7009599605  0.1280472875    52.33192 < 0.000000000000000222
ORIGIN_hex1311  3.1305366259  0.1295753058    24.15998 < 0.000000000000000222
ORIGIN_hex1312  3.3955537647  0.1287237045    26.37862 < 0.000000000000000222
ORIGIN_hex1314  4.5278537168  0.1283032472    35.29025 < 0.000000000000000222
ORIGIN_hex1315  6.2554278503  0.1280699314    48.84384 < 0.000000000000000222
ORIGIN_hex1316  5.1842568507  0.1283120254    40.40352 < 0.000000000000000222
ORIGIN_hex1318  2.2219678115  0.1363421611    16.29700 < 0.000000000000000222
ORIGIN_hex1319  6.8816997168  0.1280885007    53.72613 < 0.000000000000000222
ORIGIN_hex1320  5.0738839586  0.1283843094    39.52106 < 0.000000000000000222
ORIGIN_hex1335  0.3363149056  0.2034821917     1.65280             0.09837204
ORIGIN_hex1336  4.1666515127  0.1282317904    32.49312 < 0.000000000000000222
ORIGIN_hex1337  5.4366871469  0.1280687803    42.45131 < 0.000000000000000222
ORIGIN_hex1338  4.7599222370  0.1281910088    37.13148 < 0.000000000000000222
ORIGIN_hex1339  2.9212354700  0.1299951252    22.47188 < 0.000000000000000222
ORIGIN_hex1340  3.4723465265  0.1287251134    26.97490 < 0.000000000000000222
ORIGIN_hex1341  4.9787143088  0.1281696647    38.84472 < 0.000000000000000222
ORIGIN_hex1342  3.6070805361  0.1285448020    28.06088 < 0.000000000000000222
ORIGIN_hex1343  5.8626179781  0.1281023668    45.76510 < 0.000000000000000222
ORIGIN_hex1347  1.7954041207  0.1315235051    13.65082 < 0.000000000000000222
ORIGIN_hex1348  6.5521694701  0.1280844122    51.15509 < 0.000000000000000222
ORIGIN_hex1362  3.6845193510  0.1283150847    28.71462 < 0.000000000000000222
ORIGIN_hex1363  4.4443440014  0.1281714243    34.67500 < 0.000000000000000222
ORIGIN_hex1364  4.7773841981  0.1281303200    37.28535 < 0.000000000000000222
ORIGIN_hex1366  5.0213915822  0.1281354743    39.18815 < 0.000000000000000222
ORIGIN_hex1367  3.2067744203  0.1290354983    24.85188 < 0.000000000000000222
ORIGIN_hex1368  4.0945292417  0.1285623248    31.84859 < 0.000000000000000222
ORIGIN_hex1369  6.3199235389  0.1280752580    49.34539 < 0.000000000000000222
ORIGIN_hex1370  7.1678868375  0.1280989120    55.95588 < 0.000000000000000222
ORIGIN_hex1372 -0.1721753578  0.2102740422    -0.81881             0.41289247
ORIGIN_hex1374  4.5539372961  0.1282304513    35.51370 < 0.000000000000000222
ORIGIN_hex1375  7.0958632653  0.1280792336    55.40214 < 0.000000000000000222
ORIGIN_hex1389  3.8380546595  0.1283249191    29.90888 < 0.000000000000000222
ORIGIN_hex1390  2.3624037213  0.1303655935    18.12137 < 0.000000000000000222
ORIGIN_hex1391  3.1690210042  0.1285089787    24.65992 < 0.000000000000000222
ORIGIN_hex1392  4.1556762033  0.1282287577    32.40830 < 0.000000000000000222
ORIGIN_hex1394  4.4216712706  0.1282726004    34.47089 < 0.000000000000000222
ORIGIN_hex1396  5.4013324481  0.1282409122    42.11864 < 0.000000000000000222
ORIGIN_hex1397  5.5647297649  0.1282484684    43.39022 < 0.000000000000000222
ORIGIN_hex1401  6.0049025373  0.1280960442    46.87813 < 0.000000000000000222
ORIGIN_hex1402  5.9199477919  0.1280963422    46.21481 < 0.000000000000000222
ORIGIN_hex1416 -0.6452548104  0.2230470070    -2.89291             0.00381691
ORIGIN_hex1417  2.3894143322  0.1299308452    18.38989 < 0.000000000000000222
ORIGIN_hex1418  3.8499617427  0.1285636374    29.94596 < 0.000000000000000222
ORIGIN_hex1419  3.7469484133  0.1284710774    29.16570 < 0.000000000000000222
ORIGIN_hex1420  5.4489786609  0.1281036703    42.53570 < 0.000000000000000222
ORIGIN_hex1422  2.7599999398  0.1318583309    20.93156 < 0.000000000000000222
ORIGIN_hex1423  7.6607569957  0.1281319758    59.78802 < 0.000000000000000222
ORIGIN_hex1426  3.9119219873  0.1293781818    30.23633 < 0.000000000000000222
ORIGIN_hex1428  5.2020452340  0.1281312271    40.59936 < 0.000000000000000222
ORIGIN_hex1429  5.2298644490  0.1281775882    40.80171 < 0.000000000000000222
ORIGIN_hex1443  2.6118735724  0.1288355206    20.27293 < 0.000000000000000222
ORIGIN_hex1444  1.6729218227  0.1307157859    12.79816 < 0.000000000000000222
ORIGIN_hex1445  4.8754855869  0.1281486650    38.04554 < 0.000000000000000222
ORIGIN_hex1446  3.3007949207  0.1285763421    25.67187 < 0.000000000000000222
ORIGIN_hex1447  4.8652412283  0.1281247048    37.97270 < 0.000000000000000222
ORIGIN_hex1455  4.7656008009  0.1282722995    37.15222 < 0.000000000000000222
ORIGIN_hex1456  5.3714688729  0.1281214585    41.92482 < 0.000000000000000222
ORIGIN_hex1457  1.3424679882  0.1374018009     9.77038 < 0.000000000000000222
ORIGIN_hex1469  5.0132669817  0.1281254389    39.12780 < 0.000000000000000222
ORIGIN_hex1470  4.2775862790  0.1281712198    33.37400 < 0.000000000000000222
ORIGIN_hex1471  5.2637085160  0.1280925148    41.09302 < 0.000000000000000222
ORIGIN_hex1472  3.5699743972  0.1285113727    27.77944 < 0.000000000000000222
ORIGIN_hex1480 -0.8072827996  0.1888513425    -4.27470 0.00001913949869719235
ORIGIN_hex1482  5.2285228109  0.1281159696    40.81086 < 0.000000000000000222
ORIGIN_hex1483  4.9862129157  0.1282025522    38.89324 < 0.000000000000000222
ORIGIN_hex1496  2.9579050114  0.1288166597    22.96213 < 0.000000000000000222
ORIGIN_hex1497  0.9921555631  0.1371063901     7.23639 0.00000000000046077880
ORIGIN_hex1498  3.4535104561  0.1282941783    26.91868 < 0.000000000000000222
ORIGIN_hex1499  4.7092283369  0.1281475245    36.74849 < 0.000000000000000222
ORIGIN_hex1500  2.4181232474  0.1304061011    18.54302 < 0.000000000000000222
ORIGIN_hex1501  4.4760801359  0.1282147321    34.91081 < 0.000000000000000222
ORIGIN_hex1507  2.2476898883  0.1427345325    15.74734 < 0.000000000000000222
ORIGIN_hex1509  4.8156545695  0.1282526014    37.54820 < 0.000000000000000222
ORIGIN_hex1510  6.9653865000  0.1280602804    54.39147 < 0.000000000000000222
ORIGIN_hex1511  4.1715180261  0.1284526176    32.47515 < 0.000000000000000222
ORIGIN_hex1523  1.0046086613  0.1360438115     7.38445 0.00000000000015308539
ORIGIN_hex1524  1.9367335710  0.1331381170    14.54680 < 0.000000000000000222
ORIGIN_hex1525  5.3026457151  0.1280801792    41.40099 < 0.000000000000000222
ORIGIN_hex1526  2.9697823311  0.1289326415    23.03360 < 0.000000000000000222
ORIGIN_hex1527  1.5290660116  0.1377473913    11.10051 < 0.000000000000000222
ORIGIN_hex1534  0.0017721710  0.1611369663     0.01100             0.99122511
ORIGIN_hex1536  5.6228239867  0.1281058416    43.89202 < 0.000000000000000222
ORIGIN_hex1537  4.9001219699  0.1281902874    38.22538 < 0.000000000000000222
ORIGIN_hex1550  3.8262812354  0.1283539548    29.81039 < 0.000000000000000222
ORIGIN_hex1551  2.0561490707  0.1296548853    15.85863 < 0.000000000000000222
ORIGIN_hex1552  2.0763406244  0.1299845162    15.97375 < 0.000000000000000222
ORIGIN_hex1553  4.4093983054  0.1281538255    34.40708 < 0.000000000000000222
ORIGIN_hex1554  3.4127284814  0.1287923734    26.49791 < 0.000000000000000222
ORIGIN_hex1555  3.2947990357  0.1286970779    25.60120 < 0.000000000000000222
ORIGIN_hex1562  2.9191908428  0.1413968932    20.64537 < 0.000000000000000222
ORIGIN_hex1563  5.1722572402  0.1282648373    40.32483 < 0.000000000000000222
ORIGIN_hex1564  6.0042333892  0.1280785248    46.87931 < 0.000000000000000222
ORIGIN_hex1565  4.6224737444  0.1284072134    35.99855 < 0.000000000000000222
ORIGIN_hex1576  2.7565439675  0.1308801812    21.06158 < 0.000000000000000222
ORIGIN_hex1578  2.9852282162  0.1284861974    23.23384 < 0.000000000000000222
ORIGIN_hex1579  5.5183866541  0.1280819690    43.08480 < 0.000000000000000222
ORIGIN_hex1581  4.5774485861  0.1281854146    35.70959 < 0.000000000000000222
ORIGIN_hex1588  0.8454102412  0.1645720780     5.13702 0.00000027912758774077
ORIGIN_hex1590  6.1490649974  0.1280890766    48.00616 < 0.000000000000000222
ORIGIN_hex1591  5.8386835573  0.1280944649    45.58108 < 0.000000000000000222
ORIGIN_hex1592  2.0377504739  0.1312148134    15.52988 < 0.000000000000000222
ORIGIN_hex1604  3.2225660361  0.1284376715    25.09050 < 0.000000000000000222
ORIGIN_hex1605  4.6072321835  0.1281185724    35.96069 < 0.000000000000000222
ORIGIN_hex1606  4.2891342461  0.1281613460    33.46668 < 0.000000000000000222
ORIGIN_hex1607  3.4827183541  0.1283633696    27.13171 < 0.000000000000000222
ORIGIN_hex1616  2.3034141276  0.1366944939    16.85082 < 0.000000000000000222
ORIGIN_hex1617  4.7159975571  0.1284104446    36.72597 < 0.000000000000000222
ORIGIN_hex1618  6.3385294788  0.1280849150    49.48693 < 0.000000000000000222
ORIGIN_hex1619  4.7552267137  0.1282111493    37.08903 < 0.000000000000000222
ORIGIN_hex1620  2.2897164647  0.1310062730    17.47791 < 0.000000000000000222
ORIGIN_hex1630  2.5129153163  0.1288462925    19.50320 < 0.000000000000000222
ORIGIN_hex1631  3.4411535945  0.1282841571    26.82446 < 0.000000000000000222
ORIGIN_hex1632  4.8157198244  0.1281179532    37.58817 < 0.000000000000000222
ORIGIN_hex1633  3.5588723988  0.1283662720    27.72436 < 0.000000000000000222
ORIGIN_hex1634  4.9636610589  0.1281438293    38.73508 < 0.000000000000000222
ORIGIN_hex1635  3.1508991085  0.1288339808    24.45705 < 0.000000000000000222
ORIGIN_hex1642  2.2000998853  0.1648573571    13.34548 < 0.000000000000000222
ORIGIN_hex1644  5.0918243970  0.1282004850    39.71767 < 0.000000000000000222
ORIGIN_hex1645  5.6590723066  0.1281038915    44.17565 < 0.000000000000000222
ORIGIN_hex1646  3.7654048447  0.1285997680    29.28003 < 0.000000000000000222
ORIGIN_hex1647 -1.6589653039  0.4652501281    -3.56575             0.00036282
ORIGIN_hex1658  4.8739832902  0.1281509938    38.03313 < 0.000000000000000222
ORIGIN_hex1659  4.7010972803  0.1281116534    36.69531 < 0.000000000000000222
ORIGIN_hex1660  3.7645708487  0.1286570580    29.26051 < 0.000000000000000222
ORIGIN_hex1661  3.2758933230  0.1285563041    25.48217 < 0.000000000000000222
ORIGIN_hex1662  4.6128317513  0.1281693293    35.99014 < 0.000000000000000222
ORIGIN_hex1669 -0.1653654188  0.2283873631    -0.72406             0.46903088
ORIGIN_hex1670  1.9242799612  0.1574855520    12.21877 < 0.000000000000000222
ORIGIN_hex1672  4.7538409485  0.1283572235    37.03602 < 0.000000000000000222
ORIGIN_hex1673  4.4400723622  0.1287958113    34.47373 < 0.000000000000000222
ORIGIN_hex1674  3.7535327350  0.1286642450    29.17308 < 0.000000000000000222
ORIGIN_hex1684  5.1287583573  0.1280993171    40.03736 < 0.000000000000000222
ORIGIN_hex1685  3.8761946047  0.1282072618    30.23381 < 0.000000000000000222
ORIGIN_hex1686  4.5995448036  0.1281224657    35.89960 < 0.000000000000000222
ORIGIN_hex1687  2.1748070524  0.1297076843    16.76699 < 0.000000000000000222
ORIGIN_hex1688  2.3204033476  0.1293857606    17.93399 < 0.000000000000000222
ORIGIN_hex1689  2.6985705003  0.1365986473    19.75547 < 0.000000000000000222
ORIGIN_hex1695 -0.4061049856  0.2577242059    -1.57573             0.11508695
ORIGIN_hex1699  4.8143981451  0.1281847038    37.55829 < 0.000000000000000222
ORIGIN_hex1700  0.9638404381  0.1409257591     6.83935 0.00000000000795539085
ORIGIN_hex1701  2.5065985657  0.1323974042    18.93238 < 0.000000000000000222
ORIGIN_hex1712  3.8405737908  0.1282414429    29.94799 < 0.000000000000000222
ORIGIN_hex1713  5.0894155650  0.1280820214    39.73560 < 0.000000000000000222
ORIGIN_hex1714  2.5152419592  0.1293595507    19.44381 < 0.000000000000000222
ORIGIN_hex1716  4.3516327478  0.1282011420    33.94379 < 0.000000000000000222
ORIGIN_hex1723  2.4579339533  0.1362512541    18.03972 < 0.000000000000000222
ORIGIN_hex1726  2.4990047429  0.1314906658    19.00519 < 0.000000000000000222
ORIGIN_hex1727  6.0190043137  0.1281114292    46.98257 < 0.000000000000000222
ORIGIN_hex1728  3.3537433921  0.1287640723    26.04565 < 0.000000000000000222
ORIGIN_hex1738  3.4009792947  0.1283210956    26.50366 < 0.000000000000000222
ORIGIN_hex1739  4.4816942926  0.1281164613    34.98141 < 0.000000000000000222
ORIGIN_hex1740  3.2724232205  0.1283910603    25.48794 < 0.000000000000000222
ORIGIN_hex1741  3.6995185670  0.1283487386    28.82396 < 0.000000000000000222
ORIGIN_hex1743  2.1468472238  0.1324271764    16.21153 < 0.000000000000000222
ORIGIN_hex1744  0.8541006167  0.1868582792     4.57085 0.00000485756705328517
ORIGIN_hex1748 -0.4403221127  0.2182903687    -2.01714             0.04368096
ORIGIN_hex1749  5.7536669837  0.1281751408    44.88910 < 0.000000000000000222
ORIGIN_hex1753  6.1556241300  0.1280939570    48.05554 < 0.000000000000000222
ORIGIN_hex1754  4.8229977601  0.1282029696    37.62002 < 0.000000000000000222
ORIGIN_hex1765  5.4802483240  0.1280934645    42.78320 < 0.000000000000000222
ORIGIN_hex1766  5.1381484864  0.1280953202    40.11191 < 0.000000000000000222
ORIGIN_hex1767  4.7201518327  0.1280987289    36.84776 < 0.000000000000000222
ORIGIN_hex1768  1.3642061351  0.1318223050    10.34883 < 0.000000000000000222
ORIGIN_hex1770  2.8666104926  0.1289761623    22.22589 < 0.000000000000000222
ORIGIN_hex1771  1.6395505695  0.1366921523    11.99447 < 0.000000000000000222
ORIGIN_hex1776 -0.0182809001  0.1782876696    -0.10254             0.91833126
ORIGIN_hex1777  4.4206753281  0.1285098917    34.39949 < 0.000000000000000222
ORIGIN_hex1778  2.0239894581  0.1325101372    15.27422 < 0.000000000000000222
ORIGIN_hex1780  3.6449442273  0.1289276901    28.27123 < 0.000000000000000222
ORIGIN_hex1781  5.8891388415  0.1281112220    45.96895 < 0.000000000000000222
ORIGIN_hex1792  4.4930218742  0.1281386754    35.06375 < 0.000000000000000222
ORIGIN_hex1793  5.2145571169  0.1280753798    40.71475 < 0.000000000000000222
ORIGIN_hex1794  4.0758356658  0.1281750894    31.79897 < 0.000000000000000222
ORIGIN_hex1795  3.1863391318  0.1284124304    24.81332 < 0.000000000000000222
ORIGIN_hex1796  3.9046574921  0.1283476327    30.42251 < 0.000000000000000222
ORIGIN_hex1798 -0.2456903716  0.2019577624    -1.21654             0.22377801
ORIGIN_hex1800  2.3229349892  0.1328113446    17.49049 < 0.000000000000000222
ORIGIN_hex1802  0.9634778389  0.1420770453     6.78138 0.00000000001190367754
ORIGIN_hex1804  0.1390971407  0.1734896612     0.80176             0.42269157
ORIGIN_hex1805  3.8602608030  0.1285230144    30.03556 < 0.000000000000000222
ORIGIN_hex1806  4.9972996278  0.1281827311    38.98575 < 0.000000000000000222
ORIGIN_hex1807  5.1491452921  0.1281529265    40.17969 < 0.000000000000000222
ORIGIN_hex1808  2.7009105925  0.1319174286    20.47425 < 0.000000000000000222
ORIGIN_hex1820  4.6643387620  0.1281139585    36.40773 < 0.000000000000000222
ORIGIN_hex1821  5.4293568699  0.1280704292    42.39352 < 0.000000000000000222
ORIGIN_hex1822  3.2420123020  0.1283664061    25.25592 < 0.000000000000000222
ORIGIN_hex1823  3.1514728736  0.1285697166    24.51178 < 0.000000000000000222
ORIGIN_hex1824  4.5424642743  0.1281563837    35.44470 < 0.000000000000000222
ORIGIN_hex1827  4.6380146239  0.1282165685    36.17329 < 0.000000000000000222
ORIGIN_hex1828  4.3084948365  0.1283574695    33.56637 < 0.000000000000000222
ORIGIN_hex1829  4.2297731356  0.1284932496    32.91825 < 0.000000000000000222
ORIGIN_hex1831  3.4208841604  0.1292531480    26.46654 < 0.000000000000000222
ORIGIN_hex1833  5.9610788651  0.1280873375    46.53917 < 0.000000000000000222
ORIGIN_hex1834  5.0143817684  0.1282165460    39.10869 < 0.000000000000000222
ORIGIN_hex1835  5.5587755199  0.1281704655    43.37018 < 0.000000000000000222
ORIGIN_hex1846  0.6194385014  0.1375973008     4.50182 0.00000673735216537396
ORIGIN_hex1847  4.0061533041  0.1283589273    31.21055 < 0.000000000000000222
ORIGIN_hex1848  4.0538944701  0.1281619718    31.63102 < 0.000000000000000222
ORIGIN_hex1849  4.8686063719  0.1280956972    38.00757 < 0.000000000000000222
ORIGIN_hex1850  3.8106541590  0.1283825771    29.68202 < 0.000000000000000222
ORIGIN_hex1852  1.1432235912  0.1364430502     8.37876 < 0.000000000000000222
ORIGIN_hex1853  4.3517006505  0.1282655011    33.92729 < 0.000000000000000222
ORIGIN_hex1854  3.9280288457  0.1283920679    30.59401 < 0.000000000000000222
ORIGIN_hex1855  3.6718730309  0.1285194200    28.57057 < 0.000000000000000222
ORIGIN_hex1856  2.3318802513  0.1416566048    16.46150 < 0.000000000000000222
ORIGIN_hex1857  0.5801373462  0.1724228162     3.36462             0.00076649
ORIGIN_hex1858  4.3512427263  0.1282913311    33.91689 < 0.000000000000000222
ORIGIN_hex1859  4.7809774024  0.1281747713    37.30046 < 0.000000000000000222
ORIGIN_hex1860  5.4186309270  0.1281196296    42.29353 < 0.000000000000000222
ORIGIN_hex1861  6.5721694899  0.1281170095    51.29818 < 0.000000000000000222
ORIGIN_hex1862  2.4833924408  0.1343922535    18.47869 < 0.000000000000000222
ORIGIN_hex1874  4.2621719410  0.1281494728    33.25938 < 0.000000000000000222
ORIGIN_hex1875  4.3262359876  0.1281266630    33.76531 < 0.000000000000000222
ORIGIN_hex1876  1.9106773653  0.1294567352    14.75920 < 0.000000000000000222
ORIGIN_hex1877  4.0049990454  0.1282027744    31.23957 < 0.000000000000000222
ORIGIN_hex1878  3.0823304338  0.1286599266    23.95719 < 0.000000000000000222
ORIGIN_hex1879  2.6127756861  0.1289421255    20.26317 < 0.000000000000000222
ORIGIN_hex1882  5.1551769916  0.1281332816    40.23293 < 0.000000000000000222
ORIGIN_hex1883  4.7497803454  0.1282106936    37.04668 < 0.000000000000000222
ORIGIN_hex1884  3.8816881314  0.1288174609    30.13325 < 0.000000000000000222
ORIGIN_hex1886  6.7072451541  0.1280699255    52.37174 < 0.000000000000000222
ORIGIN_hex1887  6.5511456041  0.1280691561    51.15319 < 0.000000000000000222
ORIGIN_hex1888  4.8787682146  0.1282308967    38.04674 < 0.000000000000000222
ORIGIN_hex1889  2.5794970068  0.1398379769    18.44633 < 0.000000000000000222
ORIGIN_hex1890  3.6451591082  0.1346094270    27.07952 < 0.000000000000000222
ORIGIN_hex1900  2.9579807807  0.1288256180    22.96112 < 0.000000000000000222
ORIGIN_hex1901  4.4432543947  0.1281153990    34.68166 < 0.000000000000000222
ORIGIN_hex1902  3.8223324281  0.1282510428    29.80352 < 0.000000000000000222
ORIGIN_hex1903  3.3178909737  0.1288607285    25.74788 < 0.000000000000000222
ORIGIN_hex1904  3.4241213048  0.1283976545    26.66810 < 0.000000000000000222
ORIGIN_hex1905  3.5034139560  0.1283015958    27.30608 < 0.000000000000000222
ORIGIN_hex1906  3.8511440564  0.1282470699    30.02910 < 0.000000000000000222
ORIGIN_hex1907  4.6043396247  0.1281566365    35.92744 < 0.000000000000000222
ORIGIN_hex1908  4.3416189419  0.1282823021    33.84425 < 0.000000000000000222
ORIGIN_hex1909  5.5226028985  0.1281130606    43.10726 < 0.000000000000000222
ORIGIN_hex1910  4.2945348909  0.1283483754    33.45999 < 0.000000000000000222
ORIGIN_hex1912  3.4545026617  0.1289684404    26.78564 < 0.000000000000000222
ORIGIN_hex1913  4.4889374090  0.1282217053    35.00919 < 0.000000000000000222
ORIGIN_hex1914  6.0754768055  0.1280966902    47.42884 < 0.000000000000000222
ORIGIN_hex1916  5.8355152391  0.1290189590    45.22990 < 0.000000000000000222
ORIGIN_hex1928  4.1585163041  0.1281579492    32.44837 < 0.000000000000000222
ORIGIN_hex1929  3.7666645149  0.1281929850    29.38277 < 0.000000000000000222
ORIGIN_hex1930  3.6908899768  0.1282048469    28.78900 < 0.000000000000000222
ORIGIN_hex1931  3.5853095076  0.1282635450    27.95268 < 0.000000000000000222
ORIGIN_hex1932  4.2116628376  0.1281870358    32.85561 < 0.000000000000000222
ORIGIN_hex1933  4.2318803323  0.1283070084    32.98246 < 0.000000000000000222
ORIGIN_hex1934  2.7976306103  0.1286665946    21.74326 < 0.000000000000000222
ORIGIN_hex1935  4.9369551616  0.1281234765    38.53279 < 0.000000000000000222
ORIGIN_hex1936  5.2267859826  0.1281155006    40.79745 < 0.000000000000000222
ORIGIN_hex1937  4.8223096796  0.1281644106    37.62597 < 0.000000000000000222
ORIGIN_hex1938  1.6444570071  0.1343525403    12.23987 < 0.000000000000000222
ORIGIN_hex1940  6.3568131826  0.1280887824    49.62818 < 0.000000000000000222
ORIGIN_hex1941  5.4082409612  0.1281433190    42.20463 < 0.000000000000000222
ORIGIN_hex1942  4.9884032927  0.1283957004    38.85179 < 0.000000000000000222
ORIGIN_hex1954  3.2065277784  0.1288019125    24.89503 < 0.000000000000000222
ORIGIN_hex1955  4.3024825681  0.1281280722    33.57955 < 0.000000000000000222
ORIGIN_hex1956  3.1506195908  0.1283665266    24.54393 < 0.000000000000000222
ORIGIN_hex1958  4.6566838340  0.1281287658    36.34378 < 0.000000000000000222
ORIGIN_hex1959  5.1084875270  0.1280831576    39.88415 < 0.000000000000000222
ORIGIN_hex1960  5.1529370431  0.1281343499    40.21511 < 0.000000000000000222
ORIGIN_hex1961  4.9193187012  0.1281293502    38.39338 < 0.000000000000000222
ORIGIN_hex1962  5.3429203928  0.1280916052    41.71171 < 0.000000000000000222
ORIGIN_hex1963  4.3267795773  0.1281705563    33.75798 < 0.000000000000000222
ORIGIN_hex1964  3.6760568890  0.1284393582    28.62095 < 0.000000000000000222
ORIGIN_hex1967  6.7923670546  0.1280834044    53.03081 < 0.000000000000000222
ORIGIN_hex1968  6.4366060293  0.1281158615    50.24051 < 0.000000000000000222
ORIGIN_hex1982  3.4619830847  0.1283048789    26.98247 < 0.000000000000000222
ORIGIN_hex1983  3.5795720172  0.1282061576    27.92044 < 0.000000000000000222
ORIGIN_hex1984  4.6490615484  0.1280955395    36.29370 < 0.000000000000000222
ORIGIN_hex1985  3.5857180387  0.1283116162    27.94539 < 0.000000000000000222
ORIGIN_hex1986  4.5550286099  0.1281606367    35.54156 < 0.000000000000000222
ORIGIN_hex1987  5.9057374008  0.1280594583    46.11715 < 0.000000000000000222
ORIGIN_hex1988  4.2060423410  0.1281609999    32.81843 < 0.000000000000000222
ORIGIN_hex1989  5.2155163952  0.1280910077    40.71727 < 0.000000000000000222
ORIGIN_hex1990  6.5174063877  0.1280547485    50.89547 < 0.000000000000000222
ORIGIN_hex1991  6.1133308732  0.1280724004    47.73340 < 0.000000000000000222
ORIGIN_hex1992  3.6066355174  0.1288621216    27.98833 < 0.000000000000000222
ORIGIN_hex1994  5.1287780053  0.1283056766    39.97312 < 0.000000000000000222
ORIGIN_hex1995  6.9490143624  0.1280922943    54.25006 < 0.000000000000000222
ORIGIN_hex2009  3.3390173430  0.1283311149    26.01877 < 0.000000000000000222
ORIGIN_hex2010  4.0517821479  0.1281395782    31.62007 < 0.000000000000000222
ORIGIN_hex2011  4.8967843615  0.1280884299    38.22972 < 0.000000000000000222
ORIGIN_hex2012  4.0852833962  0.1281967745    31.86729 < 0.000000000000000222
ORIGIN_hex2013  4.4348379373  0.1281308457    34.61179 < 0.000000000000000222
ORIGIN_hex2014  4.8538121058  0.1281031936    37.88986 < 0.000000000000000222
ORIGIN_hex2015  4.6835947133  0.1281371061    36.55143 < 0.000000000000000222
ORIGIN_hex2016  5.1720281468  0.1281017198    40.37438 < 0.000000000000000222
ORIGIN_hex2017  4.8067396801  0.1281341100    37.51335 < 0.000000000000000222
ORIGIN_hex2021  5.4351569860  0.1282424450    42.38189 < 0.000000000000000222
ORIGIN_hex2036 -0.7155174492  0.1634195626    -4.37841 0.00001195496253959439
ORIGIN_hex2037  2.0812361271  0.1289309130    16.14226 < 0.000000000000000222
ORIGIN_hex2038  4.4560578370  0.1281113140    34.78270 < 0.000000000000000222
ORIGIN_hex2039  5.2970213586  0.1281283121    41.34154 < 0.000000000000000222
ORIGIN_hex2040  5.3956991206  0.1280825900    42.12672 < 0.000000000000000222
ORIGIN_hex2041  6.0126821678  0.1280823172    46.94389 < 0.000000000000000222
ORIGIN_hex2042  5.1443540400  0.1281050174    40.15732 < 0.000000000000000222
ORIGIN_hex2043  3.5889250082  0.1283523287    27.96151 < 0.000000000000000222
ORIGIN_hex2044  5.5244507066  0.1280795165    43.13298 < 0.000000000000000222
ORIGIN_hex2046  4.3524698981  0.1283916405    33.89995 < 0.000000000000000222
ORIGIN_hex2049  5.6704086767  0.1282614471    44.20977 < 0.000000000000000222
ORIGIN_hex2063  2.0073825928  0.1298933915    15.45408 < 0.000000000000000222
ORIGIN_hex2064  2.8434448683  0.1285386318    22.12133 < 0.000000000000000222
ORIGIN_hex2065  4.1340791963  0.1281427607    32.26151 < 0.000000000000000222
ORIGIN_hex2066  4.2941359754  0.1281488005    33.50898 < 0.000000000000000222
ORIGIN_hex2067  5.1024973159  0.1280835730    39.83725 < 0.000000000000000222
ORIGIN_hex2068  4.0206951475  0.1282315376    31.35496 < 0.000000000000000222
ORIGIN_hex2069  3.2706769316  0.1284929687    25.45413 < 0.000000000000000222
ORIGIN_hex2070  5.8702696557  0.1280944960    45.82765 < 0.000000000000000222
ORIGIN_hex2071  4.6298964872  0.1282201752    36.10895 < 0.000000000000000222
ORIGIN_hex2072  3.2361035499  0.1299223494    24.90798 < 0.000000000000000222
ORIGIN_hex2074 -0.0266141799  0.2083951459    -0.12771             0.89837834
ORIGIN_hex2089  1.6247430394  0.1558618383    10.42425 < 0.000000000000000222
ORIGIN_hex2090 -1.6767136752  1.0130039579    -1.65519             0.09788603
ORIGIN_hex2091  1.6698756950  0.1303648969    12.80924 < 0.000000000000000222
ORIGIN_hex2092  3.3244452831  0.1283571423    25.89996 < 0.000000000000000222
ORIGIN_hex2093  4.5304804800  0.1281224294    35.36056 < 0.000000000000000222
ORIGIN_hex2094  5.0126563547  0.1280969665    39.13173 < 0.000000000000000222
ORIGIN_hex2095  5.7521006514  0.1281385540    44.88970 < 0.000000000000000222
ORIGIN_hex2096  2.7668687890  0.1288738195    21.46960 < 0.000000000000000222
ORIGIN_hex2097  2.8724404085  0.1304362204    22.02180 < 0.000000000000000222
ORIGIN_hex2098  3.8285583608  0.1282921070    29.84251 < 0.000000000000000222
ORIGIN_hex2100  2.8891366610  0.1317421823    21.93023 < 0.000000000000000222
ORIGIN_hex2101  1.7032374311  0.1424384570    11.95771 < 0.000000000000000222
ORIGIN_hex2102  2.2068526873  0.1375614215    16.04267 < 0.000000000000000222
ORIGIN_hex2116  2.1204862758  0.1434858214    14.77837 < 0.000000000000000222
ORIGIN_hex2117 -0.7977229212  1.0130039402    -0.78748             0.43099944
ORIGIN_hex2119  4.6138072984  0.1281184681    36.01204 < 0.000000000000000222
ORIGIN_hex2120  4.0880489798  0.1281835225    31.89216 < 0.000000000000000222
ORIGIN_hex2121  4.3496045015  0.1281596534    33.93895 < 0.000000000000000222
ORIGIN_hex2122  1.7402585406  0.1359689035    12.79895 < 0.000000000000000222
ORIGIN_hex2123  4.5104410057  0.1281495081    35.19671 < 0.000000000000000222
ORIGIN_hex2124  4.1468702887  0.1283582323    32.30701 < 0.000000000000000222
ORIGIN_hex2125  3.9973448191  0.1283676437    31.13982 < 0.000000000000000222
ORIGIN_hex2126  3.7590365682  0.1287608820    29.19393 < 0.000000000000000222
ORIGIN_hex2129  1.0315042800  0.1599227767     6.45001 0.00000000011183921262
ORIGIN_hex2146  4.2097083714  0.1289114235    32.65582 < 0.000000000000000222
ORIGIN_hex2147  4.6866101628  0.1281090782    36.58297 < 0.000000000000000222
ORIGIN_hex2148  5.4037407548  0.1280760222    42.19167 < 0.000000000000000222
ORIGIN_hex2149  4.8431376822  0.1281391866    37.79591 < 0.000000000000000222
ORIGIN_hex2150  3.4450603090  0.1283746264    26.83599 < 0.000000000000000222
ORIGIN_hex2151  4.0721468031  0.1282489452    31.75189 < 0.000000000000000222
ORIGIN_hex2152  5.4350859800  0.1281147615    42.42357 < 0.000000000000000222
ORIGIN_hex2153  2.5910255715  0.1313155137    19.73130 < 0.000000000000000222
ORIGIN_hex2154  5.2890457814  0.1281897779    41.25950 < 0.000000000000000222
ORIGIN_hex2155  2.2167714117  0.1342301474    16.51471 < 0.000000000000000222
ORIGIN_hex2171  0.0355840485  0.2884067527     0.12338             0.90180503
ORIGIN_hex2172  5.0560525885  0.1285436188    39.33336 < 0.000000000000000222
ORIGIN_hex2174  3.6351460746  0.1284217445    28.30631 < 0.000000000000000222
ORIGIN_hex2175  5.3207029979  0.1280900308    41.53878 < 0.000000000000000222
ORIGIN_hex2176  4.9286887058  0.1281134013    38.47130 < 0.000000000000000222
ORIGIN_hex2177  5.8471419385  0.1280692632    45.65609 < 0.000000000000000222
ORIGIN_hex2178  4.5851995015  0.1281666178    35.77530 < 0.000000000000000222
ORIGIN_hex2179  4.8831503380  0.1281551711    38.10342 < 0.000000000000000222
ORIGIN_hex2180  5.6514455380  0.1281203654    44.11044 < 0.000000000000000222
ORIGIN_hex2181  6.0380588075  0.1281253299    47.12619 < 0.000000000000000222
ORIGIN_hex2182  2.8471123296  0.1375409043    20.70011 < 0.000000000000000222
ORIGIN_hex2200  3.7521895322  0.1293440200    29.00938 < 0.000000000000000222
ORIGIN_hex2201  5.2356109414  0.1280840545    40.87637 < 0.000000000000000222
ORIGIN_hex2202  2.9747331320  0.1290809650    23.04548 < 0.000000000000000222
ORIGIN_hex2203  5.0101642040  0.1281402914    39.09905 < 0.000000000000000222
ORIGIN_hex2204  4.2813415858  0.1281624833    33.40558 < 0.000000000000000222
ORIGIN_hex2205  4.3920726715  0.1281816304    34.26445 < 0.000000000000000222
ORIGIN_hex2206  5.9252212917  0.1280729399    46.26443 < 0.000000000000000222
ORIGIN_hex2207  4.7892121298  0.1281758853    37.36438 < 0.000000000000000222
ORIGIN_hex2208  6.2524195536  0.1280963291    48.81029 < 0.000000000000000222
ORIGIN_hex2209  1.3020666634  0.1468129024     8.86888 < 0.000000000000000222
ORIGIN_hex2227  3.6288391101  0.1283639166    28.26993 < 0.000000000000000222
ORIGIN_hex2228  5.0665261397  0.1281107329    39.54802 < 0.000000000000000222
ORIGIN_hex2229  4.1928365095  0.1281699673    32.71310 < 0.000000000000000222
ORIGIN_hex2230  4.1365275791  0.1283311187    32.23324 < 0.000000000000000222
ORIGIN_hex2231  4.8072236750  0.1281146469    37.52283 < 0.000000000000000222
ORIGIN_hex2233  6.0706898185  0.1280702820    47.40124 < 0.000000000000000222
ORIGIN_hex2234  1.8650835216  0.1348007580    13.83585 < 0.000000000000000222
ORIGIN_hex2235  3.5317058238  0.1321001118    26.73507 < 0.000000000000000222
ORIGIN_hex2254  3.5591229224  0.1290719819    27.57471 < 0.000000000000000222
ORIGIN_hex2255  5.0303273562  0.1281057279    39.26700 < 0.000000000000000222
ORIGIN_hex2256  4.2730552897  0.1281594241    33.34172 < 0.000000000000000222
ORIGIN_hex2257  3.3812815057  0.1285066137    26.31212 < 0.000000000000000222
ORIGIN_hex2258  4.2217261718  0.1282132905    32.92737 < 0.000000000000000222
ORIGIN_hex2259  3.5213693010  0.1285711004    27.38850 < 0.000000000000000222
ORIGIN_hex2260  5.6800738186  0.1280888292    44.34480 < 0.000000000000000222
ORIGIN_hex2261  5.9485199312  0.1280939512    46.43873 < 0.000000000000000222
ORIGIN_hex2262  5.6179549686  0.1281546373    43.83731 < 0.000000000000000222
ORIGIN_hex2281  4.9952708039  0.1281252552    38.98740 < 0.000000000000000222
ORIGIN_hex2282  4.9248672518  0.1281152669    38.44091 < 0.000000000000000222
ORIGIN_hex2283  4.8134024494  0.1281070099    37.57329 < 0.000000000000000222
ORIGIN_hex2284  3.7177196434  0.1282929344    28.97837 < 0.000000000000000222
ORIGIN_hex2285  5.7046485841  0.1280972279    44.53374 < 0.000000000000000222
ORIGIN_hex2286  4.1548923753  0.1282575426    32.39492 < 0.000000000000000222
ORIGIN_hex2287  6.1291677885  0.1280740165    47.85645 < 0.000000000000000222
ORIGIN_hex2288  5.0042181015  0.1282774299    39.01090 < 0.000000000000000222
ORIGIN_hex2308  4.4745855302  0.1283056376    34.87443 < 0.000000000000000222
ORIGIN_hex2309  5.2012586789  0.1280932463    40.60525 < 0.000000000000000222
ORIGIN_hex2310  4.5304983424  0.1281225586    35.36066 < 0.000000000000000222
ORIGIN_hex2311  4.6006840535  0.1281203489    35.90908 < 0.000000000000000222
ORIGIN_hex2312  2.2235719089  0.1296739148    17.14741 < 0.000000000000000222
ORIGIN_hex2313  5.0321184859  0.1281350393    39.27199 < 0.000000000000000222
ORIGIN_hex2314  5.8647028399  0.1280697345    45.79304 < 0.000000000000000222
ORIGIN_hex2315  4.9576687894  0.1281638471    38.68227 < 0.000000000000000222
ORIGIN_hex2316  6.4052409737  0.1280886584    50.00631 < 0.000000000000000222
ORIGIN_hex2317  6.2335118397  0.1283877190    48.55224 < 0.000000000000000222
ORIGIN_hex2335  3.5854753166  0.1284105275    27.92197 < 0.000000000000000222
ORIGIN_hex2336  5.0925025793  0.1280891220    39.75749 < 0.000000000000000222
ORIGIN_hex2337  3.8320469182  0.1282143863    29.88781 < 0.000000000000000222
ORIGIN_hex2338  1.6733963127  0.1308278754    12.79082 < 0.000000000000000222
ORIGIN_hex2339  5.1889374409  0.1281121190    40.50310 < 0.000000000000000222
ORIGIN_hex2340  5.8234863836  0.1280722371    45.47033 < 0.000000000000000222
ORIGIN_hex2341  5.5156842309  0.1280901564    43.06095 < 0.000000000000000222
ORIGIN_hex2342  5.4769640094  0.1281062769    42.75328 < 0.000000000000000222
ORIGIN_hex2343  5.7143876829  0.1281270094    44.59940 < 0.000000000000000222
ORIGIN_hex2362  4.0668353515  0.1284450394    31.66207 < 0.000000000000000222
ORIGIN_hex2363  4.4065212838  0.1281756079    34.37878 < 0.000000000000000222
ORIGIN_hex2364  1.0079269546  0.1325685543     7.60306 0.00000000000002892046
ORIGIN_hex2365  3.0876682526  0.1284232955    24.04290 < 0.000000000000000222
ORIGIN_hex2366 -1.7590723725  0.2230513328    -7.88640 0.00000000000000311025
ORIGIN_hex2367  4.8581596701  0.1281569113    37.90790 < 0.000000000000000222
ORIGIN_hex2368  5.4043612038  0.1280936324    42.19071 < 0.000000000000000222
ORIGIN_hex2369  5.5809286545  0.1281005558    43.56678 < 0.000000000000000222
ORIGIN_hex2370  6.2182623058  0.1280753827    48.55158 < 0.000000000000000222
ORIGIN_hex2371  6.2224328614  0.1280953603    48.57657 < 0.000000000000000222
ORIGIN_hex2389  4.2908990037  0.1282121633    33.46718 < 0.000000000000000222
ORIGIN_hex2390  4.9328358155  0.1281026410    38.50690 < 0.000000000000000222
ORIGIN_hex2391  4.4193879097  0.1281600677    34.48335 < 0.000000000000000222
ORIGIN_hex2392  2.8947834016  0.1290508850    22.43133 < 0.000000000000000222
ORIGIN_hex2393  3.3446972387  0.1307574599    25.57940 < 0.000000000000000222
ORIGIN_hex2394  3.9346746171  0.1283653292    30.65216 < 0.000000000000000222
ORIGIN_hex2395  5.6655747945  0.1280933983    44.23003 < 0.000000000000000222
ORIGIN_hex2396  5.9370826891  0.1280796961    46.35460 < 0.000000000000000222
ORIGIN_hex2397  4.8581115408  0.1282053472    37.89321 < 0.000000000000000222
ORIGIN_hex2398  5.5209679858  0.1282637060    43.04388 < 0.000000000000000222
ORIGIN_hex2416  4.3749703648  0.1282392189    34.11570 < 0.000000000000000222
ORIGIN_hex2417  4.6875785889  0.1282252115    36.55739 < 0.000000000000000222
ORIGIN_hex2418  4.3538382337  0.1281509281    33.97430 < 0.000000000000000222
ORIGIN_hex2419  3.9692712669  0.1281970438    30.96227 < 0.000000000000000222
ORIGIN_hex2420  3.2323050692  0.1303116836    24.80441 < 0.000000000000000222
ORIGIN_hex2422  4.5892356450  0.1286531178    35.67139 < 0.000000000000000222
ORIGIN_hex2423  5.3135545704  0.1281387646    41.46719 < 0.000000000000000222
ORIGIN_hex2424  6.6576945172  0.1280647655    51.98693 < 0.000000000000000222
ORIGIN_hex2425  6.3305862658  0.1280847505    49.42498 < 0.000000000000000222
ORIGIN_hex2426  5.8784226208  0.1283883572    45.78626 < 0.000000000000000222
ORIGIN_hex2443  5.3656037792  0.1280984837    41.88655 < 0.000000000000000222
ORIGIN_hex2444  5.3796522008  0.1280805140    42.00211 < 0.000000000000000222
ORIGIN_hex2445  5.4246848045  0.1280765299    42.35503 < 0.000000000000000222
ORIGIN_hex2448  2.2754741828  0.1318026566    17.26425 < 0.000000000000000222
ORIGIN_hex2449  5.8365141413  0.1281525297    45.54350 < 0.000000000000000222
ORIGIN_hex2450  5.9073534726  0.1281125496    46.11065 < 0.000000000000000222
ORIGIN_hex2451  6.8876618477  0.1280643828    53.78281 < 0.000000000000000222
ORIGIN_hex2452  2.3569598405  0.1327690090    17.75233 < 0.000000000000000222
ORIGIN_hex2471  4.5529923208  0.1281483002    35.52909 < 0.000000000000000222
ORIGIN_hex2472  3.6626140083  0.1289272507    28.40838 < 0.000000000000000222
ORIGIN_hex2473  5.0562940883  0.1281194569    39.46547 < 0.000000000000000222
ORIGIN_hex2476  3.1522236612  0.1304568091    24.16297 < 0.000000000000000222
ORIGIN_hex2478  5.5215986930  0.1281550607    43.08530 < 0.000000000000000222
ORIGIN_hex2479  4.1408951154  0.1285489639    32.21259 < 0.000000000000000222
ORIGIN_hex2480  3.1984231988  0.1330346739    24.04203 < 0.000000000000000222
ORIGIN_hex2497  5.5027449089  0.1280889810    42.96033 < 0.000000000000000222
ORIGIN_hex2498  3.7295803744  0.1283450952    29.05900 < 0.000000000000000222
ORIGIN_hex2499  5.3956198441  0.1281091312    42.11737 < 0.000000000000000222
ORIGIN_hex2500  1.1676743597  0.1350861724     8.64392 < 0.000000000000000222
ORIGIN_hex2503 -0.7473221861  0.1991811511    -3.75197             0.00017545
ORIGIN_hex2504  4.4330486765  0.1287533839    34.43054 < 0.000000000000000222
ORIGIN_hex2505  5.6089661021  0.1281535097    43.76756 < 0.000000000000000222
ORIGIN_hex2525  4.2198587456  0.1282562205    32.90179 < 0.000000000000000222
ORIGIN_hex2526  5.0424284020  0.1281187361    39.35746 < 0.000000000000000222
ORIGIN_hex2527  5.4040737265  0.1280970161    42.18735 < 0.000000000000000222
ORIGIN_hex2531 -1.2020552853  0.4652191503    -2.58385             0.00977050
ORIGIN_hex2532  5.6983051209  0.1281629762    44.46140 < 0.000000000000000222
ORIGIN_hex2533  6.5691490183  0.1282157449    51.23512 < 0.000000000000000222
ORIGIN_hex2551  4.4936521000  0.1282259889    35.04478 < 0.000000000000000222
ORIGIN_hex2552  3.5822518955  0.1286160433    27.85229 < 0.000000000000000222
ORIGIN_hex2553  4.6965202631  0.1282663902    36.61536 < 0.000000000000000222
ORIGIN_hex2554  3.6979767731  0.1284471088    28.78988 < 0.000000000000000222
ORIGIN_hex2557  3.2298681865  0.1305868812    24.73348 < 0.000000000000000222
ORIGIN_hex2559  5.8293233443  0.1282595903    45.44941 < 0.000000000000000222
ORIGIN_hex2579  4.3886077070  0.1282112686    34.22950 < 0.000000000000000222
ORIGIN_hex2580  5.1726795584  0.1280991724    40.38027 < 0.000000000000000222
ORIGIN_hex2581  4.8566613775  0.1281646174    37.89393 < 0.000000000000000222
ORIGIN_hex2584  1.0894592032  0.1424299637     7.64909 0.00000000000002024111
ORIGIN_hex2605  4.5079727778  0.1283648373    35.11844 < 0.000000000000000222
ORIGIN_hex2606  4.4392575448  0.1288689519    34.44784 < 0.000000000000000222
ORIGIN_hex2607  5.6929359246  0.1280794201    44.44848 < 0.000000000000000222
ORIGIN_hex2608  4.3836697899  0.1282687011    34.17568 < 0.000000000000000222
ORIGIN_hex2609  3.4916140706  0.1288243811    27.10367 < 0.000000000000000222
ORIGIN_hex2610  2.9324352369  0.1302504979    22.51381 < 0.000000000000000222
ORIGIN_hex2611  0.7881420614  0.1523865082     5.17199 0.00000023160938520535
ORIGIN_hex2633  4.4900735786  0.1282041818    35.02283 < 0.000000000000000222
ORIGIN_hex2634  6.0760394486  0.1280633285    47.44558 < 0.000000000000000222
ORIGIN_hex2635  5.3851572692  0.1281277746    42.02959 < 0.000000000000000222
ORIGIN_hex2636  5.4423094057  0.1281066907    42.48263 < 0.000000000000000222
ORIGIN_hex2637  3.9198195861  0.1284008075    30.52800 < 0.000000000000000222
ORIGIN_hex2638  3.6041271108  0.1284603050    28.05635 < 0.000000000000000222
ORIGIN_hex2660  3.7788248374  0.1282858486    29.45629 < 0.000000000000000222
ORIGIN_hex2661  5.1766294990  0.1280928674    40.41310 < 0.000000000000000222
ORIGIN_hex2662  4.3357286198  0.1281842864    33.82418 < 0.000000000000000222
ORIGIN_hex2663  5.8901537695  0.1280844992    45.98647 < 0.000000000000000222
ORIGIN_hex2664  4.4788826949  0.1282016211    34.93624 < 0.000000000000000222
ORIGIN_hex2665  5.3608641472  0.1281244962    41.84106 < 0.000000000000000222
ORIGIN_hex2687  4.4635283221  0.1282205524    34.81133 < 0.000000000000000222
ORIGIN_hex2688  5.1390653353  0.1280927927    40.11986 < 0.000000000000000222
ORIGIN_hex2689  5.3004418783  0.1281006047    41.37718 < 0.000000000000000222
ORIGIN_hex2690  4.5673161696  0.1281504439    35.64027 < 0.000000000000000222
ORIGIN_hex2691  5.8827008856  0.1280765466    45.93113 < 0.000000000000000222
ORIGIN_hex2693  5.6321974586  0.1281089176    43.96413 < 0.000000000000000222
ORIGIN_hex2714  4.8046335685  0.1281412647    37.49482 < 0.000000000000000222
ORIGIN_hex2715  5.5320117306  0.1281053402    43.18330 < 0.000000000000000222
ORIGIN_hex2716  1.3851691205  0.1306137599    10.60508 < 0.000000000000000222
ORIGIN_hex2717  4.6569954798  0.1281122876    36.35089 < 0.000000000000000222
ORIGIN_hex2718  4.9785707672  0.1281511247    38.84922 < 0.000000000000000222
ORIGIN_hex2719  5.6754375664  0.1281000256    44.30473 < 0.000000000000000222
ORIGIN_hex2742  5.3019348159  0.1280933196    41.39119 < 0.000000000000000222
ORIGIN_hex2743  3.9715900854  0.1284767614    30.91291 < 0.000000000000000222
ORIGIN_hex2744  5.1935527237  0.1280815840    40.54879 < 0.000000000000000222
ORIGIN_hex2745  5.2142417999  0.1280882571    40.70820 < 0.000000000000000222
ORIGIN_hex2746  4.3652012043  0.1284328754    33.98819 < 0.000000000000000222
ORIGIN_hex2747  5.0216889410  0.1281861488    39.17497 < 0.000000000000000222
ORIGIN_hex2768  5.2626497897  0.1281317435    41.07218 < 0.000000000000000222
ORIGIN_hex2769  5.4620451050  0.1280879897    42.64291 < 0.000000000000000222
ORIGIN_hex2770  3.5579063802  0.1282965906    27.73189 < 0.000000000000000222
ORIGIN_hex2771  5.9915600356  0.1280628759    46.78608 < 0.000000000000000222
ORIGIN_hex2772  4.2503405850  0.1283158311    33.12405 < 0.000000000000000222
ORIGIN_hex2773  4.9789063081  0.1281267620    38.85922 < 0.000000000000000222
ORIGIN_hex2795  1.9233556904  0.1615804384    11.90339 < 0.000000000000000222
ORIGIN_hex2796  2.5146858342  0.1297814369    19.37631 < 0.000000000000000222
ORIGIN_hex2797  3.6331860150  0.1282666862    28.32525 < 0.000000000000000222
ORIGIN_hex2798  4.2364800096  0.1281525234    33.05811 < 0.000000000000000222
ORIGIN_hex2799  4.8074184753  0.1281061634    37.52683 < 0.000000000000000222
ORIGIN_hex2800  4.9293841031  0.1281320964    38.47111 < 0.000000000000000222
ORIGIN_hex2801  2.4269620585  0.1308507774    18.54756 < 0.000000000000000222
ORIGIN_hex2822  2.8466575968  0.1292570090    22.02324 < 0.000000000000000222
ORIGIN_hex2823  2.9112903299  0.1285995808    22.63841 < 0.000000000000000222
ORIGIN_hex2824  4.5234327596  0.1281527713    35.29719 < 0.000000000000000222
ORIGIN_hex2825  5.2933907968  0.1280806912    41.32856 < 0.000000000000000222
ORIGIN_hex2826  5.3414242156  0.1281333532    41.68645 < 0.000000000000000222
ORIGIN_hex2827  5.5846409389  0.1280950427    43.59764 < 0.000000000000000222
ORIGIN_hex2850  4.1318112692  0.1284794726    32.15931 < 0.000000000000000222
ORIGIN_hex2851  2.4020207476  0.1290181875    18.61769 < 0.000000000000000222
ORIGIN_hex2852  4.8881023224  0.1281166367    38.15353 < 0.000000000000000222
ORIGIN_hex2853  5.7686897279  0.1280720353    45.04254 < 0.000000000000000222
ORIGIN_hex2854  5.5177361476  0.1280906071    43.07682 < 0.000000000000000222
ORIGIN_hex2877  2.5894087987  0.1291891670    20.04354 < 0.000000000000000222
ORIGIN_hex2878  4.2394288302  0.1281734876    33.07571 < 0.000000000000000222
ORIGIN_hex2879  5.2051433047  0.1281568121    40.61542 < 0.000000000000000222
ORIGIN_hex2880  4.8784763774  0.1281234380    38.07638 < 0.000000000000000222
ORIGIN_hex2881  5.2926133516  0.1281110343    41.31270 < 0.000000000000000222
ORIGIN_hex2905  4.0862726618  0.1282614878    31.85892 < 0.000000000000000222
ORIGIN_hex2906  3.8646798650  0.1283896630    30.10118 < 0.000000000000000222
ORIGIN_hex2907  4.8376127454  0.1281159502    37.75964 < 0.000000000000000222
ORIGIN_hex2908  5.1529337695  0.1281243636    40.21822 < 0.000000000000000222
ORIGIN_hex2909  4.0326542311  0.1296063991    31.11462 < 0.000000000000000222
ORIGIN_hex2931  1.0657738192  0.1352541671     7.87979 0.00000000000000327944
ORIGIN_hex2932 -0.1649175945  0.1457155489    -1.13178             0.25772795
ORIGIN_hex2933  2.8664775816  0.1286630571    22.27895 < 0.000000000000000222
ORIGIN_hex2934  4.4065841623  0.1281676821    34.38140 < 0.000000000000000222
ORIGIN_hex2959  1.7314688737  0.1312500753    13.19214 < 0.000000000000000222
ORIGIN_hex2960  3.7419925802  0.1293181764    28.93632 < 0.000000000000000222
ORIGIN_hex2961  4.3397043450  0.1282714592    33.83219 < 0.000000000000000222
ORIGIN_hex2962  4.1964581404  0.1283008693    32.70795 < 0.000000000000000222
ORIGIN_hex2963  1.0883665329  0.1476773931     7.36989 0.00000000000017076550
ORIGIN_hex2987  2.2867856229  0.1340937630    17.05363 < 0.000000000000000222
ORIGIN_hex2988  2.4710872787  0.1298667700    19.02786 < 0.000000000000000222
ORIGIN_hex2989  2.3585033814  0.1294775882    18.21553 < 0.000000000000000222
ORIGIN_hex2990  2.2141432532  0.1335828731    16.57505 < 0.000000000000000222
ORIGIN_hex3015  4.0917350332  0.1294211985    31.61565 < 0.000000000000000222
ORIGIN_hex3016  3.6828306837  0.1290108847    28.54667 < 0.000000000000000222
ORIGIN_hex3017  1.1512312323  0.1328591476     8.66505 < 0.000000000000000222
ORIGIN_hex3040  4.6581002119  0.1283320335    36.29725 < 0.000000000000000222
ORIGIN_hex3043  2.5536029638  0.1291891926    19.76638 < 0.000000000000000222
ORIGIN_hex3044  2.7294360924  0.1293766522    21.09682 < 0.000000000000000222
ORIGIN_hex3068  2.6707115318  0.1294203454    20.63595 < 0.000000000000000222
ORIGIN_hex3070  0.9314841352  0.1447604741     6.43466 0.00000000012375169387
ORIGIN_hex3072  1.7030952522  0.1370490939    12.42690 < 0.000000000000000222
ORIGIN_hex3092  4.9512181518  0.1290774012    38.35852 < 0.000000000000000222
ORIGIN_hex3098  4.1019548469  0.1283469892    31.95988 < 0.000000000000000222
ORIGIN_hex3123  6.0504115122  0.1281744539    47.20450 < 0.000000000000000222
ORIGIN_hex3126 -1.8133351869  0.2963765155    -6.11835 0.00000000094549356580
ORIGIN_hex3151  3.4838238736  0.1288756506    27.03244 < 0.000000000000000222
ORIGIN_hex3152 -1.1701670274  0.1719441419    -6.80551 0.00000000001006941214
ORIGIN_hex3173  4.3600807398  0.1294583221    33.67942 < 0.000000000000000222
ORIGIN_hex3178  2.4645870316  0.1295932316    19.01787 < 0.000000000000000222
ORIGIN_hex3179  1.9069222121  0.1299094962    14.67885 < 0.000000000000000222
ORIGIN_hex3205  2.4303772493  0.1320681049    18.40245 < 0.000000000000000222
ORIGIN_hex3206  4.4501137701  0.1284470854    34.64550 < 0.000000000000000222
ORIGIN_hex3232  1.9415125467  0.1352697460    14.35290 < 0.000000000000000222
ORIGIN_hex3233  1.2664458626  0.1407198671     8.99977 < 0.000000000000000222
ORIGIN_hex3308  4.0331856979  0.1339752213    30.10397 < 0.000000000000000222
DESTIN_hex146   1.3403098872  0.0552883030    24.24220 < 0.000000000000000222
DESTIN_hex174  -0.3026711449  0.0582053286    -5.20006 0.00000019922524219511
DESTIN_hex175  -0.0256713953  0.0545392148    -0.47070             0.63785777
DESTIN_hex200   0.4337182471  0.0610998765     7.09851 0.00000000000126106639
DESTIN_hex201   0.2915056844  0.0531550869     5.48406 0.00000004156737604725
DESTIN_hex202  -0.3555119207  0.0562227954    -6.32327 0.00000000025608511348
DESTIN_hex203  -0.7025971494  0.0552175925   -12.72415 < 0.000000000000000222
DESTIN_hex227  -2.0647845771  0.0668921697   -30.86736 < 0.000000000000000222
DESTIN_hex228  -0.4163946566  0.0536496290    -7.76137 0.00000000000000840164
DESTIN_hex229  -3.5670014991  0.1127151958   -31.64615 < 0.000000000000000222
DESTIN_hex230   0.7959554534  0.0519877834    15.31043 < 0.000000000000000222
DESTIN_hex231  -2.3896753350  0.0601505635   -39.72823 < 0.000000000000000222
DESTIN_hex254   1.6311909801  0.0538693955    30.28048 < 0.000000000000000222
DESTIN_hex255  -0.3587688436  0.0543398558    -6.60231 0.00000000004047863157
DESTIN_hex256   0.7942174563  0.0523082531    15.18341 < 0.000000000000000222
DESTIN_hex257  -1.4983363056  0.0551947847   -27.14634 < 0.000000000000000222
DESTIN_hex258  -0.7844064632  0.0550321507   -14.25360 < 0.000000000000000222
DESTIN_hex259  -1.3802163913  0.0527954243   -26.14273 < 0.000000000000000222
DESTIN_hex281  -2.2615354465  0.0688225342   -32.86039 < 0.000000000000000222
DESTIN_hex282  -1.1888402515  0.0582392376   -20.41305 < 0.000000000000000222
DESTIN_hex284   0.1504920773  0.0516508199     2.91364             0.00357238
DESTIN_hex285  -0.9043040816  0.0520017903   -17.38986 < 0.000000000000000222
DESTIN_hex286  -0.0179897632  0.0517546763    -0.34760             0.72814296
DESTIN_hex312  -0.5191882258  0.0520726735    -9.97045 < 0.000000000000000222
DESTIN_hex313  -1.9493904572  0.0561277498   -34.73131 < 0.000000000000000222
DESTIN_hex314  -1.3978880715  0.0532670254   -26.24303 < 0.000000000000000222
DESTIN_hex336  -1.5666070429  0.0659514423   -23.75395 < 0.000000000000000222
DESTIN_hex338  -2.2407377875  0.0560356034   -39.98775 < 0.000000000000000222
DESTIN_hex339  -2.6882494090  0.0566395006   -47.46245 < 0.000000000000000222
DESTIN_hex340  -4.9904033562  0.2631919225   -18.96108 < 0.000000000000000222
DESTIN_hex366  -1.6838344832  0.0531019564   -31.70946 < 0.000000000000000222
DESTIN_hex367  -0.9083379525  0.0518898841   -17.50511 < 0.000000000000000222
DESTIN_hex391  -0.6944831568  0.0587578103   -11.81942 < 0.000000000000000222
DESTIN_hex392  -1.5217354985  0.0538925334   -28.23648 < 0.000000000000000222
DESTIN_hex393  -0.4634969406  0.0514869226    -9.00223 < 0.000000000000000222
DESTIN_hex394  -3.1507545614  0.0934839861   -33.70368 < 0.000000000000000222
DESTIN_hex419   0.0177669880  0.0539891694     0.32908             0.74209197
DESTIN_hex420  -0.8679606491  0.0530671639   -16.35589 < 0.000000000000000222
DESTIN_hex421  -1.2718837010  0.0558824287   -22.75999 < 0.000000000000000222
DESTIN_hex445   0.8110901891  0.0524553242    15.46250 < 0.000000000000000222
DESTIN_hex446  -2.2835618546  0.0546144340   -41.81242 < 0.000000000000000222
DESTIN_hex447  -1.4621592629  0.0536849428   -27.23593 < 0.000000000000000222
DESTIN_hex472  -1.1790682977  0.0604799441   -19.49519 < 0.000000000000000222
DESTIN_hex473  -0.5710463685  0.0524258449   -10.89246 < 0.000000000000000222
DESTIN_hex474  -1.0421360763  0.0533978471   -19.51644 < 0.000000000000000222
DESTIN_hex499   0.4193486831  0.0526363981     7.96690 0.00000000000000162710
DESTIN_hex500  -1.4486901835  0.0530137623   -27.32668 < 0.000000000000000222
DESTIN_hex526   1.2033403386  0.0520013964    23.14054 < 0.000000000000000222
DESTIN_hex527  -0.6456333054  0.0534153161   -12.08704 < 0.000000000000000222
DESTIN_hex528  -0.1072199668  0.0515573292    -2.07963             0.03755984
DESTIN_hex552   0.0513630123  0.0546102804     0.94054             0.34694196
DESTIN_hex553  -3.2301738029  0.0780363845   -41.39318 < 0.000000000000000222
DESTIN_hex554  -0.3559291255  0.0520676149    -6.83590 0.00000000000814904978
DESTIN_hex555  -1.1514035948  0.0518373532   -22.21185 < 0.000000000000000222
DESTIN_hex581   0.3361301550  0.0515836515     6.51621 0.00000000007210368560
DESTIN_hex582  -1.8354146272  0.0523332275   -35.07169 < 0.000000000000000222
DESTIN_hex607  -0.4506436186  0.0540748810    -8.33370 < 0.000000000000000222
DESTIN_hex608  -0.7775092920  0.0524135671   -14.83412 < 0.000000000000000222
DESTIN_hex609   0.0635652165  0.0512241753     1.24092             0.21463449
DESTIN_hex610   0.0518747362  0.0516928150     1.00352             0.31561038
DESTIN_hex611  -2.0020690088  0.0578710896   -34.59532 < 0.000000000000000222
DESTIN_hex634   0.4052311098  0.0529501564     7.65307 0.00000000000001962412
DESTIN_hex635   0.2199717102  0.0520298891     4.22780 0.00002359925473604047
DESTIN_hex636  -1.8574004373  0.0521893925   -35.58962 < 0.000000000000000222
DESTIN_hex638   0.9399743276  0.0512210205    18.35134 < 0.000000000000000222
DESTIN_hex661  -0.6495075107  0.0553212475   -11.74065 < 0.000000000000000222
DESTIN_hex662  -0.3661034368  0.0522775559    -7.00307 0.00000000000250411801
DESTIN_hex663  -1.9440791168  0.0518688097   -37.48070 < 0.000000000000000222
DESTIN_hex664  -0.6953363317  0.0518193157   -13.41848 < 0.000000000000000222
DESTIN_hex665  -1.3037432214  0.0523562737   -24.90138 < 0.000000000000000222
DESTIN_hex689  -1.2475886371  0.0536873981   -23.23802 < 0.000000000000000222
DESTIN_hex690  -1.1833211166  0.0518636947   -22.81598 < 0.000000000000000222
DESTIN_hex692  -1.8938829226  0.0527147793   -35.92698 < 0.000000000000000222
DESTIN_hex693  -2.2837798831  0.0568765235   -40.15330 < 0.000000000000000222
DESTIN_hex715  -0.8890801429  0.0556085710   -15.98819 < 0.000000000000000222
DESTIN_hex716  -1.4611557477  0.0535165955   -27.30285 < 0.000000000000000222
DESTIN_hex717  -2.0679935412  0.0521028429   -39.69061 < 0.000000000000000222
DESTIN_hex718  -0.5020989955  0.0512543413    -9.79622 < 0.000000000000000222
DESTIN_hex719  -2.1114514934  0.0545264467   -38.72344 < 0.000000000000000222
DESTIN_hex720  -3.9664673953  0.0727844677   -54.49607 < 0.000000000000000222
DESTIN_hex743   0.5887133430  0.0517975027    11.36567 < 0.000000000000000222
DESTIN_hex744  -0.9849185544  0.0517502349   -19.03216 < 0.000000000000000222
DESTIN_hex745  -2.1977363636  0.0517083475   -42.50254 < 0.000000000000000222
DESTIN_hex746  -2.2133203906  0.0517989093   -42.72909 < 0.000000000000000222
DESTIN_hex747  -0.4100148218  0.0515446278    -7.95456 0.00000000000000179770
DESTIN_hex748  -2.0700981840  0.0546998313   -37.84469 < 0.000000000000000222
DESTIN_hex769  -0.5082749011  0.0535930831    -9.48396 < 0.000000000000000222
DESTIN_hex770   0.8287680815  0.0514501739    16.10817 < 0.000000000000000222
DESTIN_hex771  -1.2622206515  0.0514885288   -24.51460 < 0.000000000000000222
DESTIN_hex772  -0.5732319664  0.0511298104   -11.21131 < 0.000000000000000222
DESTIN_hex773  -2.8749672435  0.0528106260   -54.43918 < 0.000000000000000222
DESTIN_hex774  -1.3348683844  0.0524372041   -25.45651 < 0.000000000000000222
DESTIN_hex775  -1.6628159878  0.0533310150   -31.17916 < 0.000000000000000222
DESTIN_hex776  -4.5825759346  0.1791354723   -25.58162 < 0.000000000000000222
DESTIN_hex777  -2.8927568822  0.0666615004   -43.39472 < 0.000000000000000222
DESTIN_hex797  -0.8971023444  0.0538573464   -16.65701 < 0.000000000000000222
DESTIN_hex798  -3.1556185051  0.0690119575   -45.72568 < 0.000000000000000222
DESTIN_hex799  -0.7529633719  0.0511859491   -14.71035 < 0.000000000000000222
DESTIN_hex800  -1.5628680320  0.0513323063   -30.44609 < 0.000000000000000222
DESTIN_hex802  -4.9736370779  0.0891978996   -55.75958 < 0.000000000000000222
DESTIN_hex803  -2.8289811101  0.0608147072   -46.51804 < 0.000000000000000222
DESTIN_hex805  -3.0786168615  0.0735843542   -41.83793 < 0.000000000000000222
DESTIN_hex806  -0.5734052148  0.0535407400   -10.70970 < 0.000000000000000222
DESTIN_hex823  -0.3263558825  0.0540585455    -6.03708 0.00000000156925806400
DESTIN_hex824  -0.0318080108  0.0522781051    -0.60844             0.54289670
DESTIN_hex825  -1.4965051627  0.0521467692   -28.69795 < 0.000000000000000222
DESTIN_hex826   0.7999493073  0.0510600289    15.66684 < 0.000000000000000222
DESTIN_hex827  -0.8277475645  0.0512500997   -16.15114 < 0.000000000000000222
DESTIN_hex832  -4.7737921000  0.2066131442   -23.10498 < 0.000000000000000222
DESTIN_hex833  -2.7376570199  0.0717621841   -38.14902 < 0.000000000000000222
DESTIN_hex851  -0.9342369311  0.0550523587   -16.96997 < 0.000000000000000222
DESTIN_hex852  -0.0018037097  0.0518654478    -0.03478             0.97225779
DESTIN_hex853  -1.9672477026  0.0515082886   -38.19284 < 0.000000000000000222
DESTIN_hex854  -1.8090748478  0.0513616364   -35.22230 < 0.000000000000000222
DESTIN_hex856  -6.9707469998  0.2026696201   -34.39463 < 0.000000000000000222
DESTIN_hex861  -2.9906216471  0.0726114302   -41.18665 < 0.000000000000000222
DESTIN_hex862  -1.8633852957  0.0622941673   -29.91268 < 0.000000000000000222
DESTIN_hex878  -0.2012702327  0.0525232104    -3.83202             0.00012709
DESTIN_hex879  -0.7242827009  0.0515089125   -14.06131 < 0.000000000000000222
DESTIN_hex880  -2.1742240165  0.0515296227   -42.19367 < 0.000000000000000222
DESTIN_hex881  -1.8815335054  0.0515876687   -36.47254 < 0.000000000000000222
DESTIN_hex888  -3.1961944225  0.1453636624   -21.98757 < 0.000000000000000222
DESTIN_hex889  -2.1524912117  0.0699241988   -30.78321 < 0.000000000000000222
DESTIN_hex905  -1.6489949086  0.0539559269   -30.56189 < 0.000000000000000222
DESTIN_hex906  -2.4411892308  0.0543028809   -44.95506 < 0.000000000000000222
DESTIN_hex907  -1.0138758399  0.0514338214   -19.71224 < 0.000000000000000222
DESTIN_hex908  -1.1847038541  0.0512796300   -23.10282 < 0.000000000000000222
DESTIN_hex910  -1.8892988615  0.0527081690   -35.84452 < 0.000000000000000222
DESTIN_hex932  -1.0395733299  0.0518190824   -20.06159 < 0.000000000000000222
DESTIN_hex933  -2.1166649895  0.0522992450   -40.47219 < 0.000000000000000222
DESTIN_hex934  -1.4200884832  0.0513428315   -27.65894 < 0.000000000000000222
DESTIN_hex935  -1.1545765108  0.0512697507   -22.51964 < 0.000000000000000222
DESTIN_hex937  -1.1809039130  0.0520294301   -22.69685 < 0.000000000000000222
DESTIN_hex959   0.2682383296  0.0513504476     5.22368 0.00000017540136566945
DESTIN_hex960  -1.0002706947  0.0514144537   -19.45505 < 0.000000000000000222
DESTIN_hex961  -1.4081757661  0.0514439877   -27.37299 < 0.000000000000000222
DESTIN_hex962   0.6648009079  0.0510957637    13.01088 < 0.000000000000000222
DESTIN_hex986  -2.3890843490  0.0542953391   -44.00165 < 0.000000000000000222
DESTIN_hex987  -0.5898923979  0.0512604593   -11.50775 < 0.000000000000000222
DESTIN_hex988  -2.5889055094  0.0522870543   -49.51332 < 0.000000000000000222
DESTIN_hex989  -0.9653624108  0.0512372778   -18.84102 < 0.000000000000000222
DESTIN_hex991  -2.0557577740  0.0521865561   -39.39248 < 0.000000000000000222
DESTIN_hex1013 -1.6870036357  0.0547623583   -30.80590 < 0.000000000000000222
DESTIN_hex1014 -2.8041324883  0.0531846986   -52.72442 < 0.000000000000000222
DESTIN_hex1015 -3.5660055952  0.0552637603   -64.52702 < 0.000000000000000222
DESTIN_hex1016 -1.7107580237  0.0513616711   -33.30807 < 0.000000000000000222
DESTIN_hex1042 -0.7176176660  0.0513113403   -13.98556 < 0.000000000000000222
DESTIN_hex1043 -1.1933125526  0.0513045747   -23.25938 < 0.000000000000000222
DESTIN_hex1045 -4.3303020339  0.0572932520   -75.58136 < 0.000000000000000222
DESTIN_hex1067 -0.0199382312  0.0514046964    -0.38787             0.69811380
DESTIN_hex1068 -3.4393119378  0.0604302104   -56.91378 < 0.000000000000000222
DESTIN_hex1069 -3.4723334749  0.0540921866   -64.19288 < 0.000000000000000222
DESTIN_hex1070 -0.9960539754  0.0512191517   -19.44690 < 0.000000000000000222
DESTIN_hex1078 -2.6094136650  0.0636512238   -40.99550 < 0.000000000000000222
DESTIN_hex1093 -0.6832362625  0.0521875443   -13.09194 < 0.000000000000000222
DESTIN_hex1094 -2.2287734526  0.0529508020   -42.09140 < 0.000000000000000222
DESTIN_hex1095 -3.8546775328  0.0560660132   -68.75248 < 0.000000000000000222
DESTIN_hex1096 -1.5070783899  0.0513352407   -29.35758 < 0.000000000000000222
DESTIN_hex1097 -1.5298152423  0.0514223831   -29.74999 < 0.000000000000000222
DESTIN_hex1099 -1.5790855666  0.0514321147   -30.70233 < 0.000000000000000222
DESTIN_hex1100 -4.9082144651  0.0688229720   -71.31651 < 0.000000000000000222
DESTIN_hex1122 -1.2896065941  0.0516152596   -24.98499 < 0.000000000000000222
DESTIN_hex1123  0.3076898063  0.0511079091     6.02040 0.00000000173991819250
DESTIN_hex1124 -1.1330586473  0.0512530837   -22.10713 < 0.000000000000000222
DESTIN_hex1125 -1.8196965969  0.0515389089   -35.30724 < 0.000000000000000222
DESTIN_hex1126 -6.0360209881  0.0788766165   -76.52485 < 0.000000000000000222
DESTIN_hex1127 -2.2598098852  0.0514669723   -43.90796 < 0.000000000000000222
DESTIN_hex1128 -1.6642189105  0.0516209715   -32.23920 < 0.000000000000000222
DESTIN_hex1132 -1.6501865531  0.0548588434   -30.08059 < 0.000000000000000222
DESTIN_hex1147 -3.0838760270  0.0607174358   -50.79062 < 0.000000000000000222
DESTIN_hex1148 -1.4370329993  0.0516676118   -27.81303 < 0.000000000000000222
DESTIN_hex1149 -2.0048816326  0.0517692290   -38.72728 < 0.000000000000000222
DESTIN_hex1150 -1.0499064530  0.0512679022   -20.47883 < 0.000000000000000222
DESTIN_hex1151 -1.6820957929  0.0513422508   -32.76241 < 0.000000000000000222
DESTIN_hex1152 -1.8885372655  0.0515337012   -36.64665 < 0.000000000000000222
DESTIN_hex1153 -2.1765045871  0.0515706283   -42.20434 < 0.000000000000000222
DESTIN_hex1154 -0.0585415256  0.0511313528    -1.14492             0.25224054
DESTIN_hex1155 -4.6113842744  0.0624589807   -73.83060 < 0.000000000000000222
DESTIN_hex1158 -2.5748809634  0.0590826406   -43.58101 < 0.000000000000000222
DESTIN_hex1174 -0.7530438576  0.0523093792   -14.39596 < 0.000000000000000222
DESTIN_hex1175  0.2017092706  0.0516322650     3.90665 0.00009358393728017387
DESTIN_hex1176 -0.7999833987  0.0512885435   -15.59770 < 0.000000000000000222
DESTIN_hex1177 -1.0953494931  0.0512923429   -21.35503 < 0.000000000000000222
DESTIN_hex1178 -1.6076095130  0.0513590771   -31.30137 < 0.000000000000000222
DESTIN_hex1179 -2.6301324407  0.0518127065   -50.76231 < 0.000000000000000222
DESTIN_hex1180 -4.0143968072  0.0540588311   -74.25978 < 0.000000000000000222
DESTIN_hex1181 -1.4470944513  0.0512397192   -28.24165 < 0.000000000000000222
DESTIN_hex1182 -1.8535406095  0.0515425510   -35.96137 < 0.000000000000000222
DESTIN_hex1183 -1.7208254564  0.0520433067   -33.06526 < 0.000000000000000222
DESTIN_hex1185 -1.6905915554  0.0534344208   -31.63862 < 0.000000000000000222
DESTIN_hex1201 -1.5254975796  0.0528403802   -28.86992 < 0.000000000000000222
DESTIN_hex1202 -1.2980730271  0.0516068970   -25.15309 < 0.000000000000000222
DESTIN_hex1203 -0.2620651550  0.0512483803    -5.11363 0.00000031602934887746
DESTIN_hex1205 -0.0924348085  0.0511228847    -1.80809             0.07059240
DESTIN_hex1206 -1.2910434328  0.0513084931   -25.16237 < 0.000000000000000222
DESTIN_hex1207 -1.6551239086  0.0512792017   -32.27671 < 0.000000000000000222
DESTIN_hex1209 -0.3242441997  0.0512656381    -6.32479 0.00000000025358346849
DESTIN_hex1210 -1.7895261472  0.0530458002   -33.73549 < 0.000000000000000222
DESTIN_hex1211 -2.0400921651  0.0537512511   -37.95432 < 0.000000000000000222
DESTIN_hex1212 -1.8901850507  0.0538795764   -35.08166 < 0.000000000000000222
DESTIN_hex1228 -1.3620026820  0.0528278983   -25.78188 < 0.000000000000000222
DESTIN_hex1229 -0.9708423593  0.0514758777   -18.86014 < 0.000000000000000222
DESTIN_hex1230 -1.8659676434  0.0519199857   -35.93929 < 0.000000000000000222
DESTIN_hex1231  0.3438467113  0.0513081670     6.70160 0.00000000002061524765
DESTIN_hex1232 -0.8919605608  0.0512324661   -17.41006 < 0.000000000000000222
DESTIN_hex1233 -0.0623098576  0.0511911156    -1.21720             0.22352789
DESTIN_hex1235 -0.8930749012  0.0512476856   -17.42664 < 0.000000000000000222
DESTIN_hex1236 -3.2014755706  0.0525845624   -60.88242 < 0.000000000000000222
DESTIN_hex1237 -0.5185489681  0.0513826268   -10.09191 < 0.000000000000000222
DESTIN_hex1238 -3.3977783097  0.0566431630   -59.98567 < 0.000000000000000222
DESTIN_hex1239 -1.9963732070  0.0533228924   -37.43933 < 0.000000000000000222
DESTIN_hex1240 -3.0241728619  0.0811465161   -37.26806 < 0.000000000000000222
DESTIN_hex1255 -0.3930925675  0.0520456437    -7.55284 0.00000000000004258587
DESTIN_hex1256 -2.0841059823  0.0519459533   -40.12066 < 0.000000000000000222
DESTIN_hex1257 -1.5278624315  0.0515887281   -29.61621 < 0.000000000000000222
DESTIN_hex1258 -0.3000453118  0.0512341203    -5.85636 0.00000000473129896108
DESTIN_hex1259 -1.7595506461  0.0514920281   -34.17132 < 0.000000000000000222
DESTIN_hex1261 -1.8982354073  0.0513783780   -36.94619 < 0.000000000000000222
DESTIN_hex1262 -1.7237070555  0.0514180978   -33.52335 < 0.000000000000000222
DESTIN_hex1263 -2.8744395285  0.0538768966   -53.35199 < 0.000000000000000222
DESTIN_hex1264 -1.1327902722  0.0516242145   -21.94300 < 0.000000000000000222
DESTIN_hex1265 -3.9899321519  0.0571821400   -69.77585 < 0.000000000000000222
DESTIN_hex1266 -1.5351674978  0.0527438654   -29.10609 < 0.000000000000000222
DESTIN_hex1282 -1.8269983144  0.0525670229   -34.75560 < 0.000000000000000222
DESTIN_hex1283 -1.1505764787  0.0513607220   -22.40188 < 0.000000000000000222
DESTIN_hex1284 -1.8263692067  0.0517303543   -35.30556 < 0.000000000000000222
DESTIN_hex1285 -0.8340183955  0.0513774687   -16.23315 < 0.000000000000000222
DESTIN_hex1286 -2.3682780954  0.0520326506   -45.51523 < 0.000000000000000222
DESTIN_hex1287 -1.7139813739  0.0517737870   -33.10520 < 0.000000000000000222
DESTIN_hex1288 -2.1353361454  0.0517448247   -41.26666 < 0.000000000000000222
DESTIN_hex1289 -1.0584432280  0.0511920891   -20.67591 < 0.000000000000000222
DESTIN_hex1293 -3.6779610367  0.0555620320   -66.19558 < 0.000000000000000222
DESTIN_hex1308 -2.1184620198  0.0531103750   -39.88791 < 0.000000000000000222
DESTIN_hex1309 -0.1929357271  0.0512609246    -3.76380             0.00016735
DESTIN_hex1310  0.8840770303  0.0510995616    17.30107 < 0.000000000000000222
DESTIN_hex1311 -0.6089351647  0.0515931808   -11.80263 < 0.000000000000000222
DESTIN_hex1312 -3.2113593507  0.0549185501   -58.47495 < 0.000000000000000222
DESTIN_hex1314 -0.7660768665  0.0513144154   -14.92908 < 0.000000000000000222
DESTIN_hex1315 -0.0629105785  0.0511234948    -1.23056             0.21848710
DESTIN_hex1316 -2.7748895312  0.0521523463   -53.20738 < 0.000000000000000222
DESTIN_hex1318 -1.5000103983  0.0545160406   -27.51503 < 0.000000000000000222
DESTIN_hex1319  0.6549550687  0.0511829680    12.79635 < 0.000000000000000222
DESTIN_hex1320 -3.2200200776  0.0538566440   -59.78873 < 0.000000000000000222
DESTIN_hex1335 -3.7300007135  0.1021469377   -36.51603 < 0.000000000000000222
DESTIN_hex1336 -0.3098802100  0.0513040907    -6.04007 0.00000000154049045770
DESTIN_hex1337 -1.0139257296  0.0512819639   -19.77159 < 0.000000000000000222
DESTIN_hex1338 -2.2472035508  0.0522649441   -42.99638 < 0.000000000000000222
DESTIN_hex1339 -2.2414506403  0.0538252908   -41.64308 < 0.000000000000000222
DESTIN_hex1340 -2.5751544699  0.0525514250   -49.00256 < 0.000000000000000222
DESTIN_hex1341 -2.0799773756  0.0519439646   -40.04272 < 0.000000000000000222
DESTIN_hex1342 -1.8298581602  0.0515836488   -35.47361 < 0.000000000000000222
DESTIN_hex1343 -2.4581120987  0.0516692839   -47.57395 < 0.000000000000000222
DESTIN_hex1347 -2.4586904304  0.0524347073   -46.89052 < 0.000000000000000222
DESTIN_hex1348 -1.1677441280  0.0513485527   -22.74152 < 0.000000000000000222
DESTIN_hex1362 -0.5423263150  0.0513957373   -10.55197 < 0.000000000000000222
DESTIN_hex1363 -0.5142553888  0.0513087085   -10.02277 < 0.000000000000000222
DESTIN_hex1364 -1.6341115094  0.0515647427   -31.69048 < 0.000000000000000222
DESTIN_hex1366 -1.0752406761  0.0514239430   -20.90934 < 0.000000000000000222
DESTIN_hex1367 -3.6184902128  0.0556467317   -65.02610 < 0.000000000000000222
DESTIN_hex1368 -0.9760494440  0.0514943465   -18.95450 < 0.000000000000000222
DESTIN_hex1369 -1.1325766048  0.0513228961   -22.06767 < 0.000000000000000222
DESTIN_hex1370 -1.4227321545  0.0516113125   -27.56629 < 0.000000000000000222
DESTIN_hex1372 -1.9054094349  0.0591796693   -32.19703 < 0.000000000000000222
DESTIN_hex1374 -1.7589992960  0.0514412797   -34.19431 < 0.000000000000000222
DESTIN_hex1375 -0.5761203312  0.0512999639   -11.23042 < 0.000000000000000222
DESTIN_hex1389 -0.3599109802  0.0514405408    -6.99664 0.00000000000262172510
DESTIN_hex1390 -0.3351915854  0.0516026635    -6.49563 0.00000000008268902957
DESTIN_hex1391 -1.0913782363  0.0514616354   -21.20761 < 0.000000000000000222
DESTIN_hex1392 -2.2927032432  0.0524657924   -43.69901 < 0.000000000000000222
DESTIN_hex1394 -2.0632367428  0.0521894428   -39.53360 < 0.000000000000000222
DESTIN_hex1396 -2.7414378448  0.0531295090   -51.59916 < 0.000000000000000222
DESTIN_hex1397 -2.2544944515  0.0518016194   -43.52170 < 0.000000000000000222
DESTIN_hex1401 -0.0251676429  0.0511737363    -0.49181             0.62285522
DESTIN_hex1402 -1.5837350591  0.0513678357   -30.83126 < 0.000000000000000222
DESTIN_hex1416 -1.4110085300  0.0571655849   -24.68283 < 0.000000000000000222
DESTIN_hex1417 -1.6558393259  0.0523737416   -31.61583 < 0.000000000000000222
DESTIN_hex1418 -1.6213530680  0.0540719735   -29.98509 < 0.000000000000000222
DESTIN_hex1419  0.6111181618  0.0511500804    11.94755 < 0.000000000000000222
DESTIN_hex1420  0.3053443865  0.0511542502     5.96909 0.00000000238578675632
DESTIN_hex1422 -2.3778712687  0.0532965324   -44.61587 < 0.000000000000000222
DESTIN_hex1423 -1.9285840202  0.0516498057   -37.33962 < 0.000000000000000222
DESTIN_hex1426 -0.5226940455  0.0518963987   -10.07188 < 0.000000000000000222
DESTIN_hex1428 -1.8501280532  0.0514891082   -35.93242 < 0.000000000000000222
DESTIN_hex1429 -1.5949584026  0.0514686777   -30.98891 < 0.000000000000000222
DESTIN_hex1443  0.1634374655  0.0512644417     3.18813             0.00143198
DESTIN_hex1444 -0.2654283293  0.0514178872    -5.16218 0.00000024409191997064
DESTIN_hex1445 -0.1816582495  0.0512746029    -3.54285             0.00039583
DESTIN_hex1446 -2.4631800842  0.0534103228   -46.11805 < 0.000000000000000222
DESTIN_hex1447 -0.7759555023  0.0513377534   -15.11471 < 0.000000000000000222
DESTIN_hex1455 -1.8744161610  0.0518407498   -36.15720 < 0.000000000000000222
DESTIN_hex1456 -1.7904634110  0.0514835679   -34.77738 < 0.000000000000000222
DESTIN_hex1457 -5.4462021427  0.0846094656   -64.36871 < 0.000000000000000222
DESTIN_hex1469  0.1355638768  0.0513354578     2.64075             0.00827238
DESTIN_hex1470  0.3615371731  0.0512363441     7.05626 0.00000000000171038668
DESTIN_hex1471 -0.3326135754  0.0512914219    -6.48478 0.00000000008886148167
DESTIN_hex1472 -1.3755529307  0.0518563852   -26.52620 < 0.000000000000000222
DESTIN_hex1480 -3.4346852999  0.0666237597   -51.55346 < 0.000000000000000222
DESTIN_hex1482 -0.6266953627  0.0512243790   -12.23432 < 0.000000000000000222
DESTIN_hex1483 -1.1884296816  0.0514743894   -23.08779 < 0.000000000000000222
DESTIN_hex1496 -2.1816778979  0.0537831862   -40.56431 < 0.000000000000000222
DESTIN_hex1497  0.2935437795  0.0515950844     5.68937 0.00000001275052407181
DESTIN_hex1498 -0.7130682755  0.0514314657   -13.86444 < 0.000000000000000222
DESTIN_hex1499 -1.1285565915  0.0515726305   -21.88286 < 0.000000000000000222
DESTIN_hex1500 -3.3335335875  0.0594135607   -56.10729 < 0.000000000000000222
DESTIN_hex1501 -1.5528953784  0.0518184580   -29.96800 < 0.000000000000000222
DESTIN_hex1507  0.5801729646  0.0518258873    11.19466 < 0.000000000000000222
DESTIN_hex1509 -2.1251955264  0.0521023644   -40.78885 < 0.000000000000000222
DESTIN_hex1510  0.9069246920  0.0511175608    17.74194 < 0.000000000000000222
DESTIN_hex1511 -3.0495641484  0.0551154127   -55.33051 < 0.000000000000000222
DESTIN_hex1523 -2.5529433857  0.0620252679   -41.15973 < 0.000000000000000222
DESTIN_hex1524  0.0668707878  0.0524417591     1.27514             0.20225832
DESTIN_hex1525 -0.0575257188  0.0512086280    -1.12336             0.26128468
DESTIN_hex1526 -2.3329815447  0.0533041603   -43.76734 < 0.000000000000000222
DESTIN_hex1527 -3.1525336302  0.0664357037   -47.45240 < 0.000000000000000222
DESTIN_hex1534 -4.8278490324  0.1056457248   -45.69848 < 0.000000000000000222
DESTIN_hex1536 -1.0137799851  0.0512758856   -19.77109 < 0.000000000000000222
DESTIN_hex1537 -1.7726576148  0.0516770223   -34.30263 < 0.000000000000000222
DESTIN_hex1550  0.0471303467  0.0513547411     0.91774             0.35875453
DESTIN_hex1551 -0.8430457158  0.0517544851   -16.28933 < 0.000000000000000222
DESTIN_hex1552 -2.6328534367  0.0551554956   -47.73511 < 0.000000000000000222
DESTIN_hex1553 -0.9924487349  0.0514228404   -19.29976 < 0.000000000000000222
DESTIN_hex1554 -2.3853805520  0.0542691747   -43.95461 < 0.000000000000000222
DESTIN_hex1555 -1.8000565888  0.0521227594   -34.53494 < 0.000000000000000222
DESTIN_hex1562 -2.3316301781  0.0621584109   -37.51110 < 0.000000000000000222
DESTIN_hex1563 -1.1516504475  0.0514531067   -22.38252 < 0.000000000000000222
DESTIN_hex1564 -1.4366226436  0.0513456522   -27.97944 < 0.000000000000000222
DESTIN_hex1565  0.0892124364  0.0513289543     1.73805             0.08220150
DESTIN_hex1576 -0.2688042385  0.0517739581    -5.19188 0.00000020817985617642
DESTIN_hex1578 -2.2867026416  0.0525645258   -43.50277 < 0.000000000000000222
DESTIN_hex1579  0.0437530060  0.0512176226     0.85426             0.39296268
DESTIN_hex1581 -1.3744837581  0.0517763187   -26.54657 < 0.000000000000000222
DESTIN_hex1588 -2.7825523913  0.0707937870   -39.30504 < 0.000000000000000222
DESTIN_hex1590 -1.4205227296  0.0514237912   -27.62384 < 0.000000000000000222
DESTIN_hex1591 -1.1191141232  0.0513662827   -21.78694 < 0.000000000000000222
DESTIN_hex1592 -0.9670361995  0.0518278577   -18.65862 < 0.000000000000000222
DESTIN_hex1604  0.6098983716  0.0511652552    11.92017 < 0.000000000000000222
DESTIN_hex1605 -0.3983815538  0.0512930110    -7.76678 0.00000000000000805062
DESTIN_hex1606 -0.7182784491  0.0513333465   -13.99243 < 0.000000000000000222
DESTIN_hex1607 -1.7607294691  0.0518492950   -33.95860 < 0.000000000000000222
DESTIN_hex1616 -2.7165766672  0.0604785310   -44.91803 < 0.000000000000000222
DESTIN_hex1617 -2.0888852023  0.0524133732   -39.85405 < 0.000000000000000222
DESTIN_hex1618  0.5226463757  0.0511485333    10.21821 < 0.000000000000000222
DESTIN_hex1619 -1.0968745098  0.0514622404   -21.31416 < 0.000000000000000222
DESTIN_hex1620 -0.5183072062  0.0516970878   -10.02585 < 0.000000000000000222
DESTIN_hex1630 -2.6346798587  0.0538612394   -48.91606 < 0.000000000000000222
DESTIN_hex1631 -0.9236373863  0.0514640264   -17.94724 < 0.000000000000000222
DESTIN_hex1632 -0.7419692852  0.0514597362   -14.41844 < 0.000000000000000222
DESTIN_hex1633 -2.6272120089  0.0533931577   -49.20503 < 0.000000000000000222
DESTIN_hex1634 -0.7252888226  0.0515059025   -14.08166 < 0.000000000000000222
DESTIN_hex1635  0.0900645079  0.0512356755     1.75785             0.07877345
DESTIN_hex1642 -2.2061920695  0.0648090343   -34.04143 < 0.000000000000000222
DESTIN_hex1644 -1.1627756486  0.0514404729   -22.60430 < 0.000000000000000222
DESTIN_hex1645 -1.0335756285  0.0513484850   -20.12865 < 0.000000000000000222
DESTIN_hex1646 -0.4688849835  0.0514215030    -9.11846 < 0.000000000000000222
DESTIN_hex1647 -1.9386807031  0.0584266397   -33.18145 < 0.000000000000000222
DESTIN_hex1658 -1.0026061192  0.0519517916   -19.29878 < 0.000000000000000222
DESTIN_hex1659 -0.0864660914  0.0512228534    -1.68804             0.09140405
DESTIN_hex1660 -1.1162909843  0.0523205051   -21.33563 < 0.000000000000000222
DESTIN_hex1661 -2.8439048861  0.0546461707   -52.04216 < 0.000000000000000222
DESTIN_hex1662 -1.0793508777  0.0515967535   -20.91897 < 0.000000000000000222
DESTIN_hex1669 -4.7940374992  0.1309365309   -36.61345 < 0.000000000000000222
DESTIN_hex1670 -1.8581239081  0.0559593571   -33.20488 < 0.000000000000000222
DESTIN_hex1672 -1.4695158801  0.0519508069   -28.28668 < 0.000000000000000222
DESTIN_hex1673 -0.1818202818  0.0513702684    -3.53941             0.00040103
DESTIN_hex1674 -0.5322439833  0.0515396624   -10.32688 < 0.000000000000000222
DESTIN_hex1684 -0.5236277150  0.0513851887   -10.19025 < 0.000000000000000222
DESTIN_hex1685 -0.6242495086  0.0515602696   -12.10718 < 0.000000000000000222
DESTIN_hex1686 -0.6228657141  0.0513654493   -12.12616 < 0.000000000000000222
DESTIN_hex1687 -1.2889599835  0.0518434058   -24.86256 < 0.000000000000000222
DESTIN_hex1688 -1.5859846122  0.0520067434   -30.49575 < 0.000000000000000222
DESTIN_hex1689 -2.5694876955  0.0558718789   -45.98893 < 0.000000000000000222
DESTIN_hex1695 -4.2549687614  0.0816325908   -52.12341 < 0.000000000000000222
DESTIN_hex1699 -1.1288953337  0.0513934055   -21.96576 < 0.000000000000000222
DESTIN_hex1700 -2.1502704042  0.0527872936   -40.73462 < 0.000000000000000222
DESTIN_hex1701  0.1772486597  0.0518161142     3.42072             0.00062455
DESTIN_hex1712 -2.0468853928  0.0524407760   -39.03232 < 0.000000000000000222
DESTIN_hex1713  0.2295997505  0.0511732912     4.48671 0.00000723311997325553
DESTIN_hex1714 -1.3579778941  0.0522251188   -26.00239 < 0.000000000000000222
DESTIN_hex1716 -0.6806229075  0.0513952469   -13.24292 < 0.000000000000000222
DESTIN_hex1723 -4.2692382576  0.0823506572   -51.84219 < 0.000000000000000222
DESTIN_hex1726 -2.0715120899  0.0528188764   -39.21916 < 0.000000000000000222
DESTIN_hex1727 -1.0929611239  0.0514936101   -21.22518 < 0.000000000000000222
DESTIN_hex1728 -0.3020370559  0.0513335196    -5.88382 0.00000000400910141359
DESTIN_hex1738 -0.9532127655  0.0514131391   -18.54026 < 0.000000000000000222
DESTIN_hex1739  0.4443011075  0.0511423639     8.68754 < 0.000000000000000222
DESTIN_hex1740 -1.1429786807  0.0516454110   -22.13127 < 0.000000000000000222
DESTIN_hex1741 -0.6919783343  0.0515455014   -13.42461 < 0.000000000000000222
DESTIN_hex1743 -2.1652610745  0.0575847877   -37.60127 < 0.000000000000000222
DESTIN_hex1744 -3.6383279473  0.1006614899   -36.14419 < 0.000000000000000222
DESTIN_hex1748 -5.4363341974  0.1141463767   -47.62599 < 0.000000000000000222
DESTIN_hex1749 -0.8449468808  0.0517224509   -16.33617 < 0.000000000000000222
DESTIN_hex1753  0.1167556903  0.0511779733     2.28137             0.02252680
DESTIN_hex1754 -1.5600018177  0.0516484989   -30.20420 < 0.000000000000000222
DESTIN_hex1765  0.5932078329  0.0511948437    11.58726 < 0.000000000000000222
DESTIN_hex1766 -0.3494274407  0.0513270446    -6.80786 0.00000000000990597632
DESTIN_hex1767 -0.5339601149  0.0512976319   -10.40906 < 0.000000000000000222
DESTIN_hex1768 -2.6529375785  0.0555149924   -47.78777 < 0.000000000000000222
DESTIN_hex1770 -1.9402617346  0.0526209676   -36.87241 < 0.000000000000000222
DESTIN_hex1771 -3.3134552972  0.0610403363   -54.28304 < 0.000000000000000222
DESTIN_hex1776 -5.8750888526  0.1110134407   -52.92232 < 0.000000000000000222
DESTIN_hex1777 -0.9894820218  0.0515617660   -19.19023 < 0.000000000000000222
DESTIN_hex1778 -2.7789796679  0.0532910743   -52.14719 < 0.000000000000000222
DESTIN_hex1780 -2.0693778035  0.0533379852   -38.79745 < 0.000000000000000222
DESTIN_hex1781 -0.9109019877  0.0513769710   -17.72977 < 0.000000000000000222
DESTIN_hex1791 -0.7426697513  0.0535830697   -13.86016 < 0.000000000000000222
DESTIN_hex1792 -1.2875401595  0.0516764736   -24.91540 < 0.000000000000000222
DESTIN_hex1793 -0.1065978334  0.0512109072    -2.08155             0.03738400
DESTIN_hex1794 -0.7083649600  0.0513765733   -13.78770 < 0.000000000000000222
DESTIN_hex1795 -0.7172523337  0.0514500850   -13.94074 < 0.000000000000000222
DESTIN_hex1796 -0.2914224940  0.0514041181    -5.66924 0.00000001434288844408
DESTIN_hex1798 -5.5988935360  0.1490551477   -37.56256 < 0.000000000000000222
DESTIN_hex1800 -1.7206703931  0.0551413601   -31.20471 < 0.000000000000000222
DESTIN_hex1802 -2.9546083039  0.0556261271   -53.11548 < 0.000000000000000222
DESTIN_hex1804 -4.5252407590  0.0635760434   -71.17840 < 0.000000000000000222
DESTIN_hex1805 -2.7449372580  0.0525229373   -52.26169 < 0.000000000000000222
DESTIN_hex1806 -1.8947003733  0.0516906604   -36.65460 < 0.000000000000000222
DESTIN_hex1807 -2.5808461966  0.0519749142   -49.65561 < 0.000000000000000222
DESTIN_hex1808 -2.1808116869  0.0536056156   -40.68252 < 0.000000000000000222
DESTIN_hex1820 -0.8053203057  0.0514077478   -15.66535 < 0.000000000000000222
DESTIN_hex1821  0.3740317551  0.0511735087     7.30909 0.00000000000026895858
DESTIN_hex1822 -1.5637248059  0.0519958292   -30.07404 < 0.000000000000000222
DESTIN_hex1823 -0.9093047756  0.0517770166   -17.56194 < 0.000000000000000222
DESTIN_hex1824 -0.1414382420  0.0512691855    -2.75874             0.00580251
DESTIN_hex1827 -1.6833079844  0.0520747055   -32.32487 < 0.000000000000000222
DESTIN_hex1828 -1.3577607014  0.0518509526   -26.18584 < 0.000000000000000222
DESTIN_hex1829 -0.3318264888  0.0513660550    -6.46003 0.00000000010467909806
DESTIN_hex1831 -2.7760635102  0.0541694835   -51.24774 < 0.000000000000000222
DESTIN_hex1833 -0.5143856969  0.0512053626   -10.04554 < 0.000000000000000222
DESTIN_hex1834 -0.6331369128  0.0512472507   -12.35455 < 0.000000000000000222
DESTIN_hex1835 -2.5298974919  0.0523247509   -48.34992 < 0.000000000000000222
DESTIN_hex1846 -3.0332241573  0.0576480675   -52.61623 < 0.000000000000000222
DESTIN_hex1847 -2.3753556168  0.0541138723   -43.89550 < 0.000000000000000222
DESTIN_hex1848 -1.0064097809  0.0514624604   -19.55619 < 0.000000000000000222
DESTIN_hex1849  0.8172983503  0.0511267884    15.98572 < 0.000000000000000222
DESTIN_hex1850 -0.7061009426  0.0517544737   -13.64328 < 0.000000000000000222
DESTIN_hex1852 -3.5952721306  0.0607433801   -59.18788 < 0.000000000000000222
DESTIN_hex1853 -0.5602011826  0.0513852143   -10.90199 < 0.000000000000000222
DESTIN_hex1854 -1.2555203206  0.0515797595   -24.34134 < 0.000000000000000222
DESTIN_hex1855 -2.9679327523  0.0536718468   -55.29776 < 0.000000000000000222
DESTIN_hex1856 -5.6518446023  0.1592178163   -35.49756 < 0.000000000000000222
DESTIN_hex1857 -3.9798710811  0.0679628775   -58.55948 < 0.000000000000000222
DESTIN_hex1858 -2.7033820978  0.0523152873   -51.67480 < 0.000000000000000222
DESTIN_hex1859 -2.0720556847  0.0515772576   -40.17382 < 0.000000000000000222
DESTIN_hex1860 -1.6098893127  0.0514010814   -31.32014 < 0.000000000000000222
DESTIN_hex1861 -1.9305038676  0.0520601265   -37.08220 < 0.000000000000000222
DESTIN_hex1862 -2.5377226606  0.0550616654   -46.08874 < 0.000000000000000222
DESTIN_hex1874 -0.4751346137  0.0513128537    -9.25956 < 0.000000000000000222
DESTIN_hex1875 -0.2858086522  0.0512595135    -5.57572 0.00000002465093199733
DESTIN_hex1876 -1.3695095237  0.0520771574   -26.29770 < 0.000000000000000222
DESTIN_hex1877 -0.8870331122  0.0515371577   -17.21153 < 0.000000000000000222
DESTIN_hex1878 -0.8488454189  0.0515091640   -16.47950 < 0.000000000000000222
DESTIN_hex1879 -1.8526394631  0.0521661905   -35.51418 < 0.000000000000000222
DESTIN_hex1882 -0.6055453987  0.0513085744   -11.80203 < 0.000000000000000222
DESTIN_hex1883 -1.6685549145  0.0517699145   -32.23020 < 0.000000000000000222
DESTIN_hex1884 -2.4605308804  0.0544069765   -45.22455 < 0.000000000000000222
DESTIN_hex1886  0.6132164540  0.0511317438    11.99287 < 0.000000000000000222
DESTIN_hex1887  0.6160122659  0.0511297136    12.04803 < 0.000000000000000222
DESTIN_hex1888 -2.2867399363  0.0517742728   -44.16750 < 0.000000000000000222
DESTIN_hex1889 -5.6634305188  0.1023273418   -55.34621 < 0.000000000000000222
DESTIN_hex1890 -2.5598538334  0.0627532241   -40.79239 < 0.000000000000000222
DESTIN_hex1900 -1.0253616016  0.0519784136   -19.72668 < 0.000000000000000222
DESTIN_hex1901 -0.0871452607  0.0512240876    -1.70126             0.08889502
DESTIN_hex1902 -0.7934567258  0.0515728035   -15.38518 < 0.000000000000000222
DESTIN_hex1903 -0.7456206583  0.0515875396   -14.45350 < 0.000000000000000222
DESTIN_hex1904 -0.8113367423  0.0516801229   -15.69920 < 0.000000000000000222
DESTIN_hex1905 -1.2876307324  0.0515417707   -24.98228 < 0.000000000000000222
DESTIN_hex1906 -1.0584424840  0.0514212163   -20.58377 < 0.000000000000000222
DESTIN_hex1907 -0.9155293467  0.0513983846   -17.81241 < 0.000000000000000222
DESTIN_hex1908 -1.4141687688  0.0516690177   -27.36976 < 0.000000000000000222
DESTIN_hex1909 -1.3388222832  0.0515241942   -25.98434 < 0.000000000000000222
DESTIN_hex1910 -2.3016559620  0.0525216965   -43.82296 < 0.000000000000000222
DESTIN_hex1912 -4.8303237586  0.0621347114   -77.73954 < 0.000000000000000222
DESTIN_hex1913 -1.6664404027  0.0513124020   -32.47637 < 0.000000000000000222
DESTIN_hex1914 -1.2596123746  0.0512930847   -24.55716 < 0.000000000000000222
DESTIN_hex1916 -2.2949461449  0.0583328254   -39.34228 < 0.000000000000000222
DESTIN_hex1928 -0.4304196368  0.0513954234    -8.37467 < 0.000000000000000222
DESTIN_hex1929 -0.4854593761  0.0513645361    -9.45126 < 0.000000000000000222
DESTIN_hex1930 -0.4183938101  0.0512722053    -8.16025 0.00000000000000033434
DESTIN_hex1931 -1.2627235389  0.0516377903   -24.45348 < 0.000000000000000222
DESTIN_hex1932 -0.4648663536  0.0512881604    -9.06381 < 0.000000000000000222
DESTIN_hex1933 -0.4263607337  0.0513765128    -8.29875 < 0.000000000000000222
DESTIN_hex1934 -1.6702409356  0.0516811573   -32.31818 < 0.000000000000000222
DESTIN_hex1935 -1.1587097782  0.0514298547   -22.52991 < 0.000000000000000222
DESTIN_hex1936 -1.1448882419  0.0514223890   -22.26439 < 0.000000000000000222
DESTIN_hex1937 -0.7896067658  0.0512994526   -15.39211 < 0.000000000000000222
DESTIN_hex1938 -3.0181996735  0.0686226055   -43.98259 < 0.000000000000000222
DESTIN_hex1940 -1.9244672668  0.0515227922   -37.35177 < 0.000000000000000222
DESTIN_hex1941 -2.8478816879  0.0518743013   -54.89966 < 0.000000000000000222
DESTIN_hex1942 -1.6355761327  0.0517378336   -31.61277 < 0.000000000000000222
DESTIN_hex1954 -1.1627881225  0.0525536507   -22.12573 < 0.000000000000000222
DESTIN_hex1955  0.1695537867  0.0512055447     3.31124             0.00092884
DESTIN_hex1956 -0.7372529664  0.0514650220   -14.32532 < 0.000000000000000222
DESTIN_hex1958 -0.2267483852  0.0512552789    -4.42390 0.00000969335265088397
DESTIN_hex1959 -0.3241831612  0.0512076437    -6.33076 0.00000000024396092521
DESTIN_hex1960 -0.1301110902  0.0512923423    -2.53666             0.01119165
DESTIN_hex1961  0.4397574771  0.0511418948     8.59877 < 0.000000000000000222
DESTIN_hex1962 -1.2517763748  0.0513644622   -24.37048 < 0.000000000000000222
DESTIN_hex1963 -1.5590142354  0.0513802066   -30.34270 < 0.000000000000000222
DESTIN_hex1964 -0.6814068651  0.0512905608   -13.28523 < 0.000000000000000222
DESTIN_hex1967 -1.5194683277  0.0513796355   -29.57336 < 0.000000000000000222
DESTIN_hex1968 -1.7481053021  0.0515083191   -33.93831 < 0.000000000000000222
DESTIN_hex1982  0.6886067836  0.0511498536    13.46254 < 0.000000000000000222
DESTIN_hex1983  0.0199737766  0.0512204857     0.38996             0.69656849
DESTIN_hex1984  0.1776552494  0.0511680612     3.47199             0.00051661
DESTIN_hex1985 -0.4343108710  0.0513035296    -8.46552 < 0.000000000000000222
DESTIN_hex1986 -1.2616002260  0.0516229633   -24.43874 < 0.000000000000000222
DESTIN_hex1987  0.5515630678  0.0511210640    10.78935 < 0.000000000000000222
DESTIN_hex1988 -1.2336476917  0.0513582706   -24.02043 < 0.000000000000000222
DESTIN_hex1989 -1.4622866561  0.0514250168   -28.43532 < 0.000000000000000222
DESTIN_hex1990  0.7542199463  0.0511115914    14.75634 < 0.000000000000000222
DESTIN_hex1991 -0.3702900996  0.0512363111    -7.22710 0.00000000000049340573
DESTIN_hex1992 -0.1587332009  0.0512897088    -3.09484             0.00196922
DESTIN_hex1994 -3.9221385467  0.0545932917   -71.84287 < 0.000000000000000222
DESTIN_hex1995 -2.1800218201  0.0517204090   -42.15013 < 0.000000000000000222
DESTIN_hex2009  0.7655110832  0.0511406991    14.96873 < 0.000000000000000222
DESTIN_hex2010  0.1026856078  0.0511775078     2.00646             0.04480722
DESTIN_hex2011 -0.0302172877  0.0512047316    -0.59013             0.55510560
DESTIN_hex2012 -1.0253584070  0.0514822062   -19.91675 < 0.000000000000000222
DESTIN_hex2013 -1.0067194523  0.0512852274   -19.62981 < 0.000000000000000222
DESTIN_hex2014 -0.8915821967  0.0512566958   -17.39445 < 0.000000000000000222
DESTIN_hex2015 -0.6334133553  0.0512671717   -12.35515 < 0.000000000000000222
DESTIN_hex2016 -1.2300823235  0.0513693850   -23.94583 < 0.000000000000000222
DESTIN_hex2017 -1.0442338490  0.0513006269   -20.35519 < 0.000000000000000222
DESTIN_hex2021 -3.1965609644  0.0525292356   -60.85299 < 0.000000000000000222
DESTIN_hex2036 -2.4842213917  0.0586803133   -42.33484 < 0.000000000000000222
DESTIN_hex2037 -1.2146129755  0.0519150987   -23.39614 < 0.000000000000000222
DESTIN_hex2038  0.4885949991  0.0511480982     9.55255 < 0.000000000000000222
DESTIN_hex2039 -1.0539600433  0.0515071983   -20.46238 < 0.000000000000000222
DESTIN_hex2040 -0.8985307688  0.0513851094   -17.48621 < 0.000000000000000222
DESTIN_hex2041 -0.6019800936  0.0513877125   -11.71448 < 0.000000000000000222
DESTIN_hex2042 -0.9179867171  0.0515451758   -17.80936 < 0.000000000000000222
DESTIN_hex2043 -1.0218466617  0.0513014318   -19.91848 < 0.000000000000000222
DESTIN_hex2044 -1.1754172027  0.0513297367   -22.89934 < 0.000000000000000222
DESTIN_hex2046 -1.9298418973  0.0522414115   -36.94085 < 0.000000000000000222
DESTIN_hex2049 -4.2284190895  0.0562489019   -75.17336 < 0.000000000000000222
DESTIN_hex2063 -0.7743752632  0.0518994405   -14.92069 < 0.000000000000000222
DESTIN_hex2064 -0.0888034356  0.0512396863    -1.73310             0.08307812
DESTIN_hex2065 -0.7570396325  0.0513309046   -14.74822 < 0.000000000000000222
DESTIN_hex2066 -1.0874455264  0.0513655937   -21.17070 < 0.000000000000000222
DESTIN_hex2067 -1.2497833399  0.0513356575   -24.34533 < 0.000000000000000222
DESTIN_hex2068 -1.4640092250  0.0514385599   -28.46132 < 0.000000000000000222
DESTIN_hex2069 -2.8548178628  0.0528621095   -54.00499 < 0.000000000000000222
DESTIN_hex2070 -0.6985073046  0.0513594070   -13.60038 < 0.000000000000000222
DESTIN_hex2071  0.1629928833  0.0511686851     3.18540             0.00144553
DESTIN_hex2072 -4.0139914306  0.0645860921   -62.14947 < 0.000000000000000222
DESTIN_hex2074 -3.7359223229  0.0591158785   -63.19660 < 0.000000000000000222
DESTIN_hex2089 -1.1452788810  0.0808914364   -14.15822 < 0.000000000000000222
DESTIN_hex2090 -2.6301797464  0.1122048721   -23.44087 < 0.000000000000000222
DESTIN_hex2091 -1.9547181404  0.0543068302   -35.99396 < 0.000000000000000222
DESTIN_hex2092 -0.5708900323  0.0513835378   -11.11037 < 0.000000000000000222
DESTIN_hex2093 -0.1293404711  0.0511964163    -2.52636             0.01152520
DESTIN_hex2094 -0.6959915340  0.0513223715   -13.56117 < 0.000000000000000222
DESTIN_hex2095 -0.6343665041  0.0515059267   -12.31638 < 0.000000000000000222
DESTIN_hex2096 -1.9083541001  0.0518428348   -36.81037 < 0.000000000000000222
DESTIN_hex2097 -1.7676614597  0.0554480947   -31.87957 < 0.000000000000000222
DESTIN_hex2098 -1.4451326790  0.0514894834   -28.06656 < 0.000000000000000222
DESTIN_hex2100 -3.5479053494  0.0660375757   -53.72555 < 0.000000000000000222
DESTIN_hex2101 -2.5180068260  0.0537263495   -46.86726 < 0.000000000000000222
DESTIN_hex2102 -1.5448865481  0.0519414047   -29.74287 < 0.000000000000000222
DESTIN_hex2116 -2.1099967473  0.1113180568   -18.95467 < 0.000000000000000222
DESTIN_hex2117 -2.5232621834  0.1213377917   -20.79535 < 0.000000000000000222
DESTIN_hex2119 -0.5135875045  0.0513059455   -10.01029 < 0.000000000000000222
DESTIN_hex2120 -0.0646642780  0.0511867294    -1.26330             0.20648081
DESTIN_hex2121 -1.0249572352  0.0513579798   -19.95712 < 0.000000000000000222
DESTIN_hex2122 -4.3151481616  0.0706537979   -61.07454 < 0.000000000000000222
DESTIN_hex2123 -1.8190770949  0.0516472951   -35.22115 < 0.000000000000000222
DESTIN_hex2124 -1.6482312729  0.0516853919   -31.88969 < 0.000000000000000222
DESTIN_hex2125 -0.4010962409  0.0512404491    -7.82773 0.00000000000000496770
DESTIN_hex2126 -2.7552915186  0.0528428672   -52.14122 < 0.000000000000000222
DESTIN_hex2129 -3.0200822981  0.0555405856   -54.37613 < 0.000000000000000222
DESTIN_hex2146 -2.0222853253  0.0545877239   -37.04652 < 0.000000000000000222
DESTIN_hex2147 -0.6205572839  0.0512567308   -12.10684 < 0.000000000000000222
DESTIN_hex2148 -0.3790859719  0.0512250954    -7.40040 0.00000000000013577936
DESTIN_hex2149 -0.9231463492  0.0513855204   -17.96511 < 0.000000000000000222
DESTIN_hex2150 -2.4954845588  0.0524921933   -47.54011 < 0.000000000000000222
DESTIN_hex2151 -2.6666058378  0.0525380887   -50.75567 < 0.000000000000000222
DESTIN_hex2152 -0.1694745588  0.0511989287    -3.31012             0.00093256
DESTIN_hex2153 -1.1935100812  0.0525566245   -22.70903 < 0.000000000000000222
DESTIN_hex2154 -2.4262098432  0.0520923558   -46.57516 < 0.000000000000000222
DESTIN_hex2155 -2.3435596913  0.0524308503   -44.69811 < 0.000000000000000222
DESTIN_hex2171 -2.6948665903  0.1790678696   -15.04941 < 0.000000000000000222
DESTIN_hex2172 -1.7660143967  0.0549718502   -32.12580 < 0.000000000000000222
DESTIN_hex2174 -2.3565114246  0.0531246207   -44.35818 < 0.000000000000000222
DESTIN_hex2175  0.1109320478  0.0511690825     2.16795             0.03016244
DESTIN_hex2176 -0.7878552055  0.0513379274   -15.34646 < 0.000000000000000222
DESTIN_hex2177  0.7289129745  0.0511156038    14.26009 < 0.000000000000000222
DESTIN_hex2178 -2.5589757477  0.0519994284   -49.21161 < 0.000000000000000222
DESTIN_hex2179 -0.9858084241  0.0512734092   -19.22650 < 0.000000000000000222
DESTIN_hex2180 -1.7728205069  0.0515652957   -34.38011 < 0.000000000000000222
DESTIN_hex2181 -0.8071423317  0.0512988417   -15.73412 < 0.000000000000000222
DESTIN_hex2182 -2.1407877395  0.0539874215   -39.65345 < 0.000000000000000222
DESTIN_hex2200 -1.0575302976  0.0522339986   -20.24601 < 0.000000000000000222
DESTIN_hex2201 -0.7278741875  0.0512933294   -14.19043 < 0.000000000000000222
DESTIN_hex2202 -0.2302332994  0.0513531038    -4.48334 0.00000734845423840997
DESTIN_hex2203 -0.4997338866  0.0514667011    -9.70985 < 0.000000000000000222
DESTIN_hex2204 -0.4504582155  0.0512330768    -8.79233 < 0.000000000000000222
DESTIN_hex2205 -1.5649271751  0.0514664152   -30.40676 < 0.000000000000000222
DESTIN_hex2206 -0.7345387146  0.0512174377   -14.34157 < 0.000000000000000222
DESTIN_hex2207 -1.9873673096  0.0515268934   -38.56952 < 0.000000000000000222
DESTIN_hex2208 -1.5726816755  0.0514708756   -30.55479 < 0.000000000000000222
DESTIN_hex2209 -3.6160085227  0.0568964411   -63.55421 < 0.000000000000000222
DESTIN_hex2227 -1.5320582326  0.0517294748   -29.61674 < 0.000000000000000222
DESTIN_hex2228 -0.9602345007  0.0513630073   -18.69506 < 0.000000000000000222
DESTIN_hex2229 -0.3917143908  0.0512256160    -7.64685 0.00000000000002059689
DESTIN_hex2230 -0.7613201776  0.0515798967   -14.76002 < 0.000000000000000222
DESTIN_hex2231 -1.3744651199  0.0513760217   -26.75305 < 0.000000000000000222
DESTIN_hex2233 -0.8564720944  0.0512224336   -16.72064 < 0.000000000000000222
DESTIN_hex2234 -6.4192456702  0.0972713339   -65.99319 < 0.000000000000000222
DESTIN_hex2235 -4.4940374531  0.0733903757   -61.23470 < 0.000000000000000222
DESTIN_hex2254 -1.0359331647  0.0520716023   -19.89440 < 0.000000000000000222
DESTIN_hex2255 -1.1895060202  0.0515224397   -23.08714 < 0.000000000000000222
DESTIN_hex2256 -1.0997911807  0.0514016733   -21.39602 < 0.000000000000000222
DESTIN_hex2257 -1.2691049715  0.0518351005   -24.48351 < 0.000000000000000222
DESTIN_hex2258 -1.9746981048  0.0518372931   -38.09416 < 0.000000000000000222
DESTIN_hex2259 -2.2516950219  0.0519866244   -43.31297 < 0.000000000000000222
DESTIN_hex2260 -1.5351246702  0.0514331737   -29.84698 < 0.000000000000000222
DESTIN_hex2261 -1.3480077674  0.0513972150   -26.22725 < 0.000000000000000222
DESTIN_hex2262 -2.5828503751  0.0520750765   -49.59859 < 0.000000000000000222
DESTIN_hex2281 -1.2196851363  0.0515802410   -23.64636 < 0.000000000000000222
DESTIN_hex2282 -0.1679022284  0.0512091227    -3.27876             0.00104266
DESTIN_hex2283 -1.0954149966  0.0514444703   -21.29315 < 0.000000000000000222
DESTIN_hex2284 -0.9286195145  0.0513547502   -18.08245 < 0.000000000000000222
DESTIN_hex2285 -0.8166754586  0.0514047925   -15.88715 < 0.000000000000000222
DESTIN_hex2286 -1.8424646649  0.0515304802   -35.75485 < 0.000000000000000222
DESTIN_hex2287 -0.7263077691  0.0512104039   -14.18282 < 0.000000000000000222
DESTIN_hex2288 -3.1543400667  0.0530770342   -59.42947 < 0.000000000000000222
DESTIN_hex2308 -1.2162026938  0.0518530010   -23.45482 < 0.000000000000000222
DESTIN_hex2309 -0.5037301783  0.0512916860    -9.82089 < 0.000000000000000222
DESTIN_hex2310 -0.9387196391  0.0513197616   -18.29158 < 0.000000000000000222
DESTIN_hex2311 -0.0400343690  0.0511875103    -0.78211             0.43414872
DESTIN_hex2312 -1.8925266648  0.0519327087   -36.44190 < 0.000000000000000222
DESTIN_hex2313 -0.0627603842  0.0511840627    -1.22617             0.22013455
DESTIN_hex2314 -0.0851616995  0.0511386574    -1.66531             0.09585099
DESTIN_hex2315 -1.7882156773  0.0515076436   -34.71748 < 0.000000000000000222
DESTIN_hex2316 -1.4624775688  0.0513897740   -28.45853 < 0.000000000000000222
DESTIN_hex2317 -3.4949289732  0.0571301857   -61.17482 < 0.000000000000000222
DESTIN_hex2335 -2.3291392749  0.0534276876   -43.59424 < 0.000000000000000222
DESTIN_hex2336  0.1195257860  0.0511560196     2.33650             0.01946546
DESTIN_hex2337 -0.3770412746  0.0512233789    -7.36073 0.00000000000018291219
DESTIN_hex2338 -1.1345606007  0.0515631287   -22.00333 < 0.000000000000000222
DESTIN_hex2339 -0.5573047349  0.0512581896   -10.87250 < 0.000000000000000222
DESTIN_hex2340 -1.0329698503  0.0512626649   -20.15053 < 0.000000000000000222
DESTIN_hex2341 -0.9256472154  0.0512237161   -18.07068 < 0.000000000000000222
DESTIN_hex2342 -2.1499894981  0.0514865292   -41.75829 < 0.000000000000000222
DESTIN_hex2343 -2.3398239459  0.0517603614   -45.20494 < 0.000000000000000222
DESTIN_hex2362 -1.4993014778  0.0523865939   -28.61995 < 0.000000000000000222
DESTIN_hex2363 -1.0734351380  0.0514380425   -20.86851 < 0.000000000000000222
DESTIN_hex2364 -1.5303259655  0.0519117201   -29.47939 < 0.000000000000000222
DESTIN_hex2365 -0.0432487985  0.0512078277    -0.84457             0.39834875
DESTIN_hex2366 -0.4080435568  0.0524330127    -7.78219 0.00000000000000712809
DESTIN_hex2367 -1.0496516754  0.0514023818   -20.42029 < 0.000000000000000222
DESTIN_hex2368 -1.4227854567  0.0513296959   -27.71856 < 0.000000000000000222
DESTIN_hex2369 -0.4194756684  0.0511641334    -8.19863 0.00000000000000024315
DESTIN_hex2370  0.0504475621  0.0511306179     0.98664             0.32381868
DESTIN_hex2371 -1.9863097390  0.0515420760   -38.53764 < 0.000000000000000222
DESTIN_hex2389 -1.0645327903  0.0515007421   -20.67024 < 0.000000000000000222
DESTIN_hex2390 -0.1388943596  0.0511945198    -2.71307             0.00666629
DESTIN_hex2391 -0.3110959400  0.0512821800    -6.06636 0.00000000130845257588
DESTIN_hex2392 -0.1466013728  0.0518373709    -2.82810             0.00468249
DESTIN_hex2393  0.9694585508  0.0515949174    18.78981 < 0.000000000000000222
DESTIN_hex2394 -2.8513788054  0.0528467374   -53.95563 < 0.000000000000000222
DESTIN_hex2395 -1.4231966966  0.0513260212   -27.72856 < 0.000000000000000222
DESTIN_hex2396 -1.5795458257  0.0513018455   -30.78926 < 0.000000000000000222
DESTIN_hex2397 -3.0656997381  0.0520064903   -58.94841 < 0.000000000000000222
DESTIN_hex2398 -2.2312078362  0.0522774194   -42.68014 < 0.000000000000000222
DESTIN_hex2416 -1.3592837410  0.0518187154   -26.23152 < 0.000000000000000222
DESTIN_hex2417 -1.4365340642  0.0519601173   -27.64686 < 0.000000000000000222
DESTIN_hex2418 -0.9659494532  0.0513609469   -18.80708 < 0.000000000000000222
DESTIN_hex2419 -0.1421811716  0.0512113022    -2.77636             0.00549708
DESTIN_hex2420 -2.6784013154  0.0624802958   -42.86794 < 0.000000000000000222
DESTIN_hex2422 -2.7217529186  0.0552653862   -49.24878 < 0.000000000000000222
DESTIN_hex2423 -2.4379866967  0.0517275177   -47.13133 < 0.000000000000000222
DESTIN_hex2424 -0.7643905628  0.0511857164   -14.93367 < 0.000000000000000222
DESTIN_hex2425  0.0294817689  0.0511437383     0.57645             0.56431157
DESTIN_hex2426 -1.7263199704  0.0535273066   -32.25120 < 0.000000000000000222
DESTIN_hex2443  0.2394880626  0.0511796158     4.67936 0.00000287765865261254
DESTIN_hex2444 -0.3633670647  0.0512153350    -7.09489 0.00000000000129456300
DESTIN_hex2445 -0.2673239374  0.0512125412    -5.21989 0.00000017902743401433
DESTIN_hex2448 -1.3411217393  0.0522300068   -25.67723 < 0.000000000000000222
DESTIN_hex2449 -2.4911877464  0.0523418599   -47.59456 < 0.000000000000000222
DESTIN_hex2450 -2.2177837159  0.0515957384   -42.98385 < 0.000000000000000222
DESTIN_hex2451 -0.5416994509  0.0511777346   -10.58467 < 0.000000000000000222
DESTIN_hex2452 -3.6880932643  0.0562013167   -65.62290 < 0.000000000000000222
DESTIN_hex2471 -1.4155934854  0.0515166105   -27.47839 < 0.000000000000000222
DESTIN_hex2472 -3.2521740309  0.0545671946   -59.59944 < 0.000000000000000222
DESTIN_hex2473 -0.1289552790  0.0512351119    -2.51693             0.01183818
DESTIN_hex2476 -0.1499820703  0.0516502356    -2.90380             0.00368661
DESTIN_hex2478 -2.1801577933  0.0515368991   -42.30285 < 0.000000000000000222
DESTIN_hex2479 -3.6205126009  0.0533230512   -67.89770 < 0.000000000000000222
DESTIN_hex2480 -2.6685451304  0.0558297819   -47.79788 < 0.000000000000000222
DESTIN_hex2497 -0.6375703513  0.0513382308   -12.41902 < 0.000000000000000222
DESTIN_hex2498 -2.5969744718  0.0530265891   -48.97495 < 0.000000000000000222
DESTIN_hex2499 -1.5848601241  0.0517085189   -30.64988 < 0.000000000000000222
DESTIN_hex2500 -2.0542282603  0.0532765782   -38.55781 < 0.000000000000000222
DESTIN_hex2503 -3.5726805506  0.0773518143   -46.18742 < 0.000000000000000222
DESTIN_hex2504 -3.9406077719  0.0598403384   -65.85203 < 0.000000000000000222
DESTIN_hex2505 -2.1879204683  0.0515914123   -42.40862 < 0.000000000000000222
DESTIN_hex2525 -1.7138752032  0.0518907314   -33.02854 < 0.000000000000000222
DESTIN_hex2526 -0.5374571535  0.0512646412   -10.48397 < 0.000000000000000222
DESTIN_hex2527 -0.0292271940  0.0512031026    -0.57081             0.56812909
DESTIN_hex2531 -4.8150508106  0.1308218284   -36.80617 < 0.000000000000000222
DESTIN_hex2532 -2.4799556543  0.0520237741   -47.66966 < 0.000000000000000222
DESTIN_hex2533 -2.4028091806  0.0532426668   -45.12939 < 0.000000000000000222
DESTIN_hex2551 -0.5501871125  0.0513761461   -10.70900 < 0.000000000000000222
DESTIN_hex2552 -1.9764459388  0.0524072911   -37.71319 < 0.000000000000000222
DESTIN_hex2553 -1.2516073205  0.0517708338   -24.17592 < 0.000000000000000222
DESTIN_hex2554 -2.4633548761  0.0528527544   -46.60788 < 0.000000000000000222
DESTIN_hex2557 -0.2621402527  0.0519282122    -5.04813 0.00000044616060871309
DESTIN_hex2559 -2.8368529711  0.0532835220   -53.24072 < 0.000000000000000222
DESTIN_hex2579 -1.2851752469  0.0515428824   -24.93410 < 0.000000000000000222
DESTIN_hex2580 -0.3376388942  0.0512240983    -6.59141 0.00000000004356768829
DESTIN_hex2581 -1.5566450296  0.0516752766   -30.12359 < 0.000000000000000222
DESTIN_hex2584 -2.3418976092  0.0561541093   -41.70483 < 0.000000000000000222
DESTIN_hex2605 -2.1667325862  0.0537231963   -40.33142 < 0.000000000000000222
DESTIN_hex2606 -2.4476436852  0.0543562377   -45.02967 < 0.000000000000000222
DESTIN_hex2607 -1.3517835101  0.0514717052   -26.26265 < 0.000000000000000222
DESTIN_hex2608 -1.7887249952  0.0520483780   -34.36658 < 0.000000000000000222
DESTIN_hex2609 -3.4343257872  0.0593175506   -57.89730 < 0.000000000000000222
DESTIN_hex2610 -2.6430420945  0.0575471650   -45.92828 < 0.000000000000000222
DESTIN_hex2611  0.0496244041  0.0522713974     0.94936             0.34243725
DESTIN_hex2633 -1.0170552405  0.0515148218   -19.74296 < 0.000000000000000222
DESTIN_hex2634  0.9343515715  0.0511143911    18.27962 < 0.000000000000000222
DESTIN_hex2635 -1.9830189933  0.0520539451   -38.09546 < 0.000000000000000222
DESTIN_hex2636 -0.5494823175  0.0513121766   -10.70861 < 0.000000000000000222
DESTIN_hex2637 -1.9251524512  0.0520137280   -37.01239 < 0.000000000000000222
DESTIN_hex2638 -1.4213496181  0.0516264294   -27.53143 < 0.000000000000000222
DESTIN_hex2660 -1.0341562054  0.0513838427   -20.12610 < 0.000000000000000222
DESTIN_hex2661 -1.1341859781  0.0513154469   -22.10223 < 0.000000000000000222
DESTIN_hex2662 -1.9032179180  0.0517072142   -36.80759 < 0.000000000000000222
DESTIN_hex2663 -0.4758482619  0.0512947005    -9.27675 < 0.000000000000000222
DESTIN_hex2664 -1.4229198907  0.0515322249   -27.61223 < 0.000000000000000222
DESTIN_hex2665 -0.0540069557  0.0512015582    -1.05479             0.29152081
DESTIN_hex2687 -2.0311499837  0.0522384538   -38.88228 < 0.000000000000000222
DESTIN_hex2688 -1.0196301121  0.0513233777   -19.86678 < 0.000000000000000222
DESTIN_hex2689 -0.3616013436  0.0512177840    -7.06007 0.00000000000166414002
DESTIN_hex2690 -0.5032183420  0.0512437751    -9.82009 < 0.000000000000000222
DESTIN_hex2691 -1.0346795969  0.0513825735   -20.13678 < 0.000000000000000222
DESTIN_hex2693 -0.8397457833  0.0513640758   -16.34889 < 0.000000000000000222
DESTIN_hex2714 -1.8844969130  0.0518371804   -36.35416 < 0.000000000000000222
DESTIN_hex2715 -1.3178571263  0.0515702126   -25.55462 < 0.000000000000000222
DESTIN_hex2716 -3.0917754206  0.0533672910   -57.93390 < 0.000000000000000222
DESTIN_hex2717 -0.8357399079  0.0512452444   -16.30863 < 0.000000000000000222
DESTIN_hex2718 -1.8997119412  0.0518686854   -36.62541 < 0.000000000000000222
DESTIN_hex2719 -0.8985757766  0.0513594948   -17.49581 < 0.000000000000000222
DESTIN_hex2742 -0.7259045770  0.0512996497   -14.15028 < 0.000000000000000222
DESTIN_hex2743 -0.5376404877  0.0515276773   -10.43401 < 0.000000000000000222
DESTIN_hex2744 -0.1456176111  0.0511794738    -2.84523             0.00443787
DESTIN_hex2745 -0.2242610627  0.0511825412    -4.38159 0.00001178147534155887
DESTIN_hex2746 -2.4066871658  0.0529500350   -45.45204 < 0.000000000000000222
DESTIN_hex2747 -1.5375828909  0.0517191416   -29.72947 < 0.000000000000000222
DESTIN_hex2768 -0.7317308560  0.0514090379   -14.23351 < 0.000000000000000222
DESTIN_hex2769  0.2596110457  0.0511889642     5.07162 0.00000039444053764537
DESTIN_hex2770 -0.2830973558  0.0512390060    -5.52504 0.00000003294179431218
DESTIN_hex2771  1.0928917427  0.0511117700    21.38239 < 0.000000000000000222
DESTIN_hex2772 -3.5677543871  0.0572606818   -62.30723 < 0.000000000000000222
DESTIN_hex2773 -1.9101220633  0.0517162800   -36.93464 < 0.000000000000000222
DESTIN_hex2795 -2.0377993299  0.0816409032   -24.96052 < 0.000000000000000222
DESTIN_hex2796 -5.4375657429  0.1263040290   -43.05140 < 0.000000000000000222
DESTIN_hex2797 -0.5362610461  0.0513214500   -10.44906 < 0.000000000000000222
DESTIN_hex2798 -2.1487950922  0.0518989659   -41.40343 < 0.000000000000000222
DESTIN_hex2799 -1.4746306883  0.0514553950   -28.65843 < 0.000000000000000222
DESTIN_hex2800 -0.1282945531  0.0512001224    -2.50575             0.01221930
DESTIN_hex2801 -3.3808979502  0.0590148307   -57.28895 < 0.000000000000000222
DESTIN_hex2822 -2.2716228716  0.0528915306   -42.94871 < 0.000000000000000222
DESTIN_hex2823 -0.8872829842  0.0514627970   -17.24125 < 0.000000000000000222
DESTIN_hex2824  0.0517198340  0.0512661337     1.00885             0.31304662
DESTIN_hex2825 -0.8207795805  0.0512754526   -16.00726 < 0.000000000000000222
DESTIN_hex2826 -1.2639583166  0.0516803834   -24.45722 < 0.000000000000000222
DESTIN_hex2827  0.6266701509  0.0511472403    12.25228 < 0.000000000000000222
DESTIN_hex2850 -1.6306865726  0.0526706196   -30.96008 < 0.000000000000000222
DESTIN_hex2851  0.2527598612  0.0512287143     4.93395 0.00000080583510069634
DESTIN_hex2852 -1.5135459624  0.0517935824   -29.22265 < 0.000000000000000222
DESTIN_hex2853  0.2910099304  0.0511559823     5.68868 0.00000001280263363684
DESTIN_hex2854 -0.7715682201  0.0513305609   -15.03136 < 0.000000000000000222
DESTIN_hex2877 -1.2067991605  0.0526154539   -22.93621 < 0.000000000000000222
DESTIN_hex2878 -0.6734290394  0.0514489890   -13.08926 < 0.000000000000000222
DESTIN_hex2879 -1.1163047452  0.0516026785   -21.63269 < 0.000000000000000222
DESTIN_hex2880 -1.9056156084  0.0517005936   -36.85868 < 0.000000000000000222
DESTIN_hex2881 -1.4315039039  0.0516860412   -27.69614 < 0.000000000000000222
DESTIN_hex2905 -0.0754420365  0.0515015887    -1.46485             0.14296220
DESTIN_hex2906 -0.8849062036  0.0518132178   -17.07877 < 0.000000000000000222
DESTIN_hex2907 -1.6941366668  0.0516951006   -32.77171 < 0.000000000000000222
DESTIN_hex2908 -0.7165710790  0.0513687211   -13.94956 < 0.000000000000000222
DESTIN_hex2909 -2.8405960319  0.0622404795   -45.63904 < 0.000000000000000222
DESTIN_hex2931  0.1259428173  0.0516483713     2.43847             0.01474973
DESTIN_hex2932 -0.5025768456  0.0517253850    -9.71625 < 0.000000000000000222
DESTIN_hex2933 -0.0949948838  0.0513596511    -1.84960             0.06437102
DESTIN_hex2934 -1.4143953873  0.0515713012   -27.42602 < 0.000000000000000222
DESTIN_hex2959  0.2501241421  0.0518643841     4.82266 0.00000141658352928406
DESTIN_hex2960  1.1308654294  0.0515410811    21.94105 < 0.000000000000000222
DESTIN_hex2961 -0.7654885783  0.0516675144   -14.81566 < 0.000000000000000222
DESTIN_hex2962 -0.4007977190  0.0513674939    -7.80256 0.00000000000000606660
DESTIN_hex2963 -0.4382615662  0.0524476809    -8.35617 < 0.000000000000000222
DESTIN_hex2987 -0.3288535367  0.0522013650    -6.29971 0.00000000029820025808
DESTIN_hex2988 -2.8751622455  0.0563089271   -51.06050 < 0.000000000000000222
DESTIN_hex2989 -0.8479799047  0.0516700079   -16.41145 < 0.000000000000000222
DESTIN_hex2990  0.0154828785  0.0526765935     0.29392             0.76881651
DESTIN_hex3015 -1.5148411341  0.0550174015   -27.53385 < 0.000000000000000222
DESTIN_hex3016 -0.5536919730  0.0523927899   -10.56809 < 0.000000000000000222
DESTIN_hex3017 -1.0430846113  0.0519260257   -20.08790 < 0.000000000000000222
DESTIN_hex3040  0.2080632750  0.0514030511     4.04768 0.00005172705552611095
DESTIN_hex3043 -1.2074063157  0.0520388884   -23.20200 < 0.000000000000000222
DESTIN_hex3044 -0.8157882891  0.0519493061   -15.70355 < 0.000000000000000222
DESTIN_hex3068 -1.5621258708  0.0526298035   -29.68139 < 0.000000000000000222
DESTIN_hex3070 -1.5496650422  0.0550868762   -28.13129 < 0.000000000000000222
DESTIN_hex3072 -1.2953801301  0.0565694083   -22.89895 < 0.000000000000000222
DESTIN_hex3092  0.2335950722  0.0538931366     4.33441 0.00001461500625532990
DESTIN_hex3098 -0.2595117038  0.0516285775    -5.02651 0.00000049947925913314
DESTIN_hex3123  1.6519576938  0.0511821619    32.27604 < 0.000000000000000222
DESTIN_hex3126 -3.8044755429  0.0785637894   -48.42531 < 0.000000000000000222
DESTIN_hex3151  1.1268192795  0.0512868191    21.97093 < 0.000000000000000222
DESTIN_hex3152 -4.2115355186  0.0830226041   -50.72758 < 0.000000000000000222
DESTIN_hex3173 -0.9664888271  0.0574743666   -16.81600 < 0.000000000000000222
DESTIN_hex3178 -0.3436175004  0.0520031992    -6.60762 0.00000000003905414326
DESTIN_hex3179 -0.6752767179  0.0521353437   -12.95238 < 0.000000000000000222
DESTIN_hex3205  0.3103531233  0.0525011756     5.91136 0.00000000339303438041
DESTIN_hex3206  0.9147202232  0.0514776473    17.76927 < 0.000000000000000222
DESTIN_hex3232  0.0709654671  0.0565663077     1.25455             0.20964084
DESTIN_hex3233 -0.7682907737  0.0554352681   -13.85924 < 0.000000000000000222
DESTIN_hex3308  0.2419880563  0.0547464312     4.42016 0.00000986272592849379
dist           -1.6001837283  0.0002897849 -5521.97139 < 0.000000000000000222
                  
(Intercept)    ***
ORIGIN_hex146  ***
ORIGIN_hex174  ***
ORIGIN_hex175     
ORIGIN_hex200  ***
ORIGIN_hex201  ***
ORIGIN_hex202  ***
ORIGIN_hex203  ***
ORIGIN_hex227  ***
ORIGIN_hex228  ***
ORIGIN_hex229  ***
ORIGIN_hex230  ***
ORIGIN_hex231  ***
ORIGIN_hex254  ***
ORIGIN_hex255  ***
ORIGIN_hex256  ***
ORIGIN_hex257  ***
ORIGIN_hex258  ** 
ORIGIN_hex259  ***
ORIGIN_hex281  ***
ORIGIN_hex282  ***
ORIGIN_hex284  ***
ORIGIN_hex285  ***
ORIGIN_hex286  ***
ORIGIN_hex312  ***
ORIGIN_hex313  ***
ORIGIN_hex314  ***
ORIGIN_hex336     
ORIGIN_hex338  ***
ORIGIN_hex339  ***
ORIGIN_hex340  *  
ORIGIN_hex366  ***
ORIGIN_hex367  ***
ORIGIN_hex391  ***
ORIGIN_hex392  ***
ORIGIN_hex393  ***
ORIGIN_hex394     
ORIGIN_hex419  ***
ORIGIN_hex420  ***
ORIGIN_hex421  ***
ORIGIN_hex445  ***
ORIGIN_hex446  ***
ORIGIN_hex447  ***
ORIGIN_hex472     
ORIGIN_hex473  ***
ORIGIN_hex474  ***
ORIGIN_hex499  ***
ORIGIN_hex500  ***
ORIGIN_hex526  ***
ORIGIN_hex527  ***
ORIGIN_hex528  ***
ORIGIN_hex552  ** 
ORIGIN_hex553  ***
ORIGIN_hex554  ***
ORIGIN_hex555  ***
ORIGIN_hex581  ***
ORIGIN_hex582  ***
ORIGIN_hex607  ***
ORIGIN_hex608  ***
ORIGIN_hex609  ***
ORIGIN_hex610  ***
ORIGIN_hex611     
ORIGIN_hex634  ***
ORIGIN_hex635     
ORIGIN_hex636  ***
ORIGIN_hex638  ***
ORIGIN_hex661  ***
ORIGIN_hex662  ***
ORIGIN_hex663  ***
ORIGIN_hex664  ***
ORIGIN_hex665  ***
ORIGIN_hex689  ***
ORIGIN_hex690  ***
ORIGIN_hex692  ***
ORIGIN_hex693  ***
ORIGIN_hex715  ***
ORIGIN_hex716  ***
ORIGIN_hex717  ***
ORIGIN_hex718  ***
ORIGIN_hex719  ***
ORIGIN_hex720  *  
ORIGIN_hex743  ***
ORIGIN_hex744  ***
ORIGIN_hex745  ***
ORIGIN_hex746  ***
ORIGIN_hex747  ***
ORIGIN_hex748  ***
ORIGIN_hex769  ***
ORIGIN_hex770  ***
ORIGIN_hex771  ***
ORIGIN_hex772  ***
ORIGIN_hex773  ***
ORIGIN_hex774  ***
ORIGIN_hex775  ***
ORIGIN_hex776  ***
ORIGIN_hex777  ***
ORIGIN_hex797  ***
ORIGIN_hex798  .  
ORIGIN_hex799  ***
ORIGIN_hex800  ***
ORIGIN_hex802  ***
ORIGIN_hex803  ***
ORIGIN_hex805  ***
ORIGIN_hex806  ***
ORIGIN_hex823  ***
ORIGIN_hex824  ***
ORIGIN_hex825  ***
ORIGIN_hex826  ***
ORIGIN_hex827  ***
ORIGIN_hex832     
ORIGIN_hex833  ***
ORIGIN_hex851  ***
ORIGIN_hex852  ***
ORIGIN_hex853  ***
ORIGIN_hex854  ***
ORIGIN_hex856     
ORIGIN_hex861  ***
ORIGIN_hex862  ***
ORIGIN_hex878  ***
ORIGIN_hex879  ***
ORIGIN_hex880  ***
ORIGIN_hex881  ***
ORIGIN_hex888  ***
ORIGIN_hex889  ***
ORIGIN_hex905  ***
ORIGIN_hex906     
ORIGIN_hex907  ***
ORIGIN_hex908  ***
ORIGIN_hex910  ***
ORIGIN_hex932  ***
ORIGIN_hex933  ***
ORIGIN_hex934  ***
ORIGIN_hex935  ***
ORIGIN_hex937  ***
ORIGIN_hex959  ***
ORIGIN_hex960  ***
ORIGIN_hex961  ***
ORIGIN_hex962  ***
ORIGIN_hex986     
ORIGIN_hex987  ***
ORIGIN_hex988  ***
ORIGIN_hex989  ***
ORIGIN_hex991  ***
ORIGIN_hex1013    
ORIGIN_hex1014 ***
ORIGIN_hex1015 ***
ORIGIN_hex1016 ***
ORIGIN_hex1042 ***
ORIGIN_hex1043 ***
ORIGIN_hex1045 ***
ORIGIN_hex1067 ***
ORIGIN_hex1068 ***
ORIGIN_hex1069 ***
ORIGIN_hex1070 ***
ORIGIN_hex1078 ***
ORIGIN_hex1093 ***
ORIGIN_hex1094 ***
ORIGIN_hex1095 ***
ORIGIN_hex1096 ***
ORIGIN_hex1097 ***
ORIGIN_hex1099 ***
ORIGIN_hex1100 ***
ORIGIN_hex1122 ***
ORIGIN_hex1123 ***
ORIGIN_hex1124 ***
ORIGIN_hex1125 ***
ORIGIN_hex1126 ***
ORIGIN_hex1127 ***
ORIGIN_hex1128 ***
ORIGIN_hex1132 .  
ORIGIN_hex1147 ** 
ORIGIN_hex1148 ***
ORIGIN_hex1149 ***
ORIGIN_hex1150 ***
ORIGIN_hex1151 ***
ORIGIN_hex1152 ***
ORIGIN_hex1153 ***
ORIGIN_hex1154 ***
ORIGIN_hex1155 ***
ORIGIN_hex1158 ***
ORIGIN_hex1174 ***
ORIGIN_hex1175 ***
ORIGIN_hex1176 ***
ORIGIN_hex1177 ***
ORIGIN_hex1178 ***
ORIGIN_hex1179 ***
ORIGIN_hex1180 ***
ORIGIN_hex1181 ***
ORIGIN_hex1182 ***
ORIGIN_hex1183 ***
ORIGIN_hex1185 ***
ORIGIN_hex1201 ***
ORIGIN_hex1202 ***
ORIGIN_hex1203 ***
ORIGIN_hex1205 ***
ORIGIN_hex1206 ***
ORIGIN_hex1207 ***
ORIGIN_hex1209 ***
ORIGIN_hex1210 ***
ORIGIN_hex1211 ***
ORIGIN_hex1212 ***
ORIGIN_hex1228 ***
ORIGIN_hex1229 ***
ORIGIN_hex1230 ***
ORIGIN_hex1231 ***
ORIGIN_hex1232 ***
ORIGIN_hex1233 ***
ORIGIN_hex1235 ***
ORIGIN_hex1236 ***
ORIGIN_hex1237 ***
ORIGIN_hex1238 ***
ORIGIN_hex1239 ***
ORIGIN_hex1240 ***
ORIGIN_hex1255 ***
ORIGIN_hex1256 ***
ORIGIN_hex1257 ***
ORIGIN_hex1258 ***
ORIGIN_hex1259 ***
ORIGIN_hex1261 ***
ORIGIN_hex1262 ***
ORIGIN_hex1263 ***
ORIGIN_hex1264 ***
ORIGIN_hex1265 ***
ORIGIN_hex1266 ***
ORIGIN_hex1282 ***
ORIGIN_hex1283 ***
ORIGIN_hex1284 ***
ORIGIN_hex1285 ***
ORIGIN_hex1286 ***
ORIGIN_hex1287 ***
ORIGIN_hex1288 ***
ORIGIN_hex1289 ***
ORIGIN_hex1293 ***
ORIGIN_hex1308 ***
ORIGIN_hex1309 ***
ORIGIN_hex1310 ***
ORIGIN_hex1311 ***
ORIGIN_hex1312 ***
ORIGIN_hex1314 ***
ORIGIN_hex1315 ***
ORIGIN_hex1316 ***
ORIGIN_hex1318 ***
ORIGIN_hex1319 ***
ORIGIN_hex1320 ***
ORIGIN_hex1335 .  
ORIGIN_hex1336 ***
ORIGIN_hex1337 ***
ORIGIN_hex1338 ***
ORIGIN_hex1339 ***
ORIGIN_hex1340 ***
ORIGIN_hex1341 ***
ORIGIN_hex1342 ***
ORIGIN_hex1343 ***
ORIGIN_hex1347 ***
ORIGIN_hex1348 ***
ORIGIN_hex1362 ***
ORIGIN_hex1363 ***
ORIGIN_hex1364 ***
ORIGIN_hex1366 ***
ORIGIN_hex1367 ***
ORIGIN_hex1368 ***
ORIGIN_hex1369 ***
ORIGIN_hex1370 ***
ORIGIN_hex1372    
ORIGIN_hex1374 ***
ORIGIN_hex1375 ***
ORIGIN_hex1389 ***
ORIGIN_hex1390 ***
ORIGIN_hex1391 ***
ORIGIN_hex1392 ***
ORIGIN_hex1394 ***
ORIGIN_hex1396 ***
ORIGIN_hex1397 ***
ORIGIN_hex1401 ***
ORIGIN_hex1402 ***
ORIGIN_hex1416 ** 
ORIGIN_hex1417 ***
ORIGIN_hex1418 ***
ORIGIN_hex1419 ***
ORIGIN_hex1420 ***
ORIGIN_hex1422 ***
ORIGIN_hex1423 ***
ORIGIN_hex1426 ***
ORIGIN_hex1428 ***
ORIGIN_hex1429 ***
ORIGIN_hex1443 ***
ORIGIN_hex1444 ***
ORIGIN_hex1445 ***
ORIGIN_hex1446 ***
ORIGIN_hex1447 ***
ORIGIN_hex1455 ***
ORIGIN_hex1456 ***
ORIGIN_hex1457 ***
ORIGIN_hex1469 ***
ORIGIN_hex1470 ***
ORIGIN_hex1471 ***
ORIGIN_hex1472 ***
ORIGIN_hex1480 ***
ORIGIN_hex1482 ***
ORIGIN_hex1483 ***
ORIGIN_hex1496 ***
ORIGIN_hex1497 ***
ORIGIN_hex1498 ***
ORIGIN_hex1499 ***
ORIGIN_hex1500 ***
ORIGIN_hex1501 ***
ORIGIN_hex1507 ***
ORIGIN_hex1509 ***
ORIGIN_hex1510 ***
ORIGIN_hex1511 ***
ORIGIN_hex1523 ***
ORIGIN_hex1524 ***
ORIGIN_hex1525 ***
ORIGIN_hex1526 ***
ORIGIN_hex1527 ***
ORIGIN_hex1534    
ORIGIN_hex1536 ***
ORIGIN_hex1537 ***
ORIGIN_hex1550 ***
ORIGIN_hex1551 ***
ORIGIN_hex1552 ***
ORIGIN_hex1553 ***
ORIGIN_hex1554 ***
ORIGIN_hex1555 ***
ORIGIN_hex1562 ***
ORIGIN_hex1563 ***
ORIGIN_hex1564 ***
ORIGIN_hex1565 ***
ORIGIN_hex1576 ***
ORIGIN_hex1578 ***
ORIGIN_hex1579 ***
ORIGIN_hex1581 ***
ORIGIN_hex1588 ***
ORIGIN_hex1590 ***
ORIGIN_hex1591 ***
ORIGIN_hex1592 ***
ORIGIN_hex1604 ***
ORIGIN_hex1605 ***
ORIGIN_hex1606 ***
ORIGIN_hex1607 ***
ORIGIN_hex1616 ***
ORIGIN_hex1617 ***
ORIGIN_hex1618 ***
ORIGIN_hex1619 ***
ORIGIN_hex1620 ***
ORIGIN_hex1630 ***
ORIGIN_hex1631 ***
ORIGIN_hex1632 ***
ORIGIN_hex1633 ***
ORIGIN_hex1634 ***
ORIGIN_hex1635 ***
ORIGIN_hex1642 ***
ORIGIN_hex1644 ***
ORIGIN_hex1645 ***
ORIGIN_hex1646 ***
ORIGIN_hex1647 ***
ORIGIN_hex1658 ***
ORIGIN_hex1659 ***
ORIGIN_hex1660 ***
ORIGIN_hex1661 ***
ORIGIN_hex1662 ***
ORIGIN_hex1669    
ORIGIN_hex1670 ***
ORIGIN_hex1672 ***
ORIGIN_hex1673 ***
ORIGIN_hex1674 ***
ORIGIN_hex1684 ***
ORIGIN_hex1685 ***
ORIGIN_hex1686 ***
ORIGIN_hex1687 ***
ORIGIN_hex1688 ***
ORIGIN_hex1689 ***
ORIGIN_hex1695    
ORIGIN_hex1699 ***
ORIGIN_hex1700 ***
ORIGIN_hex1701 ***
ORIGIN_hex1712 ***
ORIGIN_hex1713 ***
ORIGIN_hex1714 ***
ORIGIN_hex1716 ***
ORIGIN_hex1723 ***
ORIGIN_hex1726 ***
ORIGIN_hex1727 ***
ORIGIN_hex1728 ***
ORIGIN_hex1738 ***
ORIGIN_hex1739 ***
ORIGIN_hex1740 ***
ORIGIN_hex1741 ***
ORIGIN_hex1743 ***
ORIGIN_hex1744 ***
ORIGIN_hex1748 *  
ORIGIN_hex1749 ***
ORIGIN_hex1753 ***
ORIGIN_hex1754 ***
ORIGIN_hex1765 ***
ORIGIN_hex1766 ***
ORIGIN_hex1767 ***
ORIGIN_hex1768 ***
ORIGIN_hex1770 ***
ORIGIN_hex1771 ***
ORIGIN_hex1776    
ORIGIN_hex1777 ***
ORIGIN_hex1778 ***
ORIGIN_hex1780 ***
ORIGIN_hex1781 ***
ORIGIN_hex1792 ***
ORIGIN_hex1793 ***
ORIGIN_hex1794 ***
ORIGIN_hex1795 ***
ORIGIN_hex1796 ***
ORIGIN_hex1798    
ORIGIN_hex1800 ***
ORIGIN_hex1802 ***
ORIGIN_hex1804    
ORIGIN_hex1805 ***
ORIGIN_hex1806 ***
ORIGIN_hex1807 ***
ORIGIN_hex1808 ***
ORIGIN_hex1820 ***
ORIGIN_hex1821 ***
ORIGIN_hex1822 ***
ORIGIN_hex1823 ***
ORIGIN_hex1824 ***
ORIGIN_hex1827 ***
ORIGIN_hex1828 ***
ORIGIN_hex1829 ***
ORIGIN_hex1831 ***
ORIGIN_hex1833 ***
ORIGIN_hex1834 ***
ORIGIN_hex1835 ***
ORIGIN_hex1846 ***
ORIGIN_hex1847 ***
ORIGIN_hex1848 ***
ORIGIN_hex1849 ***
ORIGIN_hex1850 ***
ORIGIN_hex1852 ***
ORIGIN_hex1853 ***
ORIGIN_hex1854 ***
ORIGIN_hex1855 ***
ORIGIN_hex1856 ***
ORIGIN_hex1857 ***
ORIGIN_hex1858 ***
ORIGIN_hex1859 ***
ORIGIN_hex1860 ***
ORIGIN_hex1861 ***
ORIGIN_hex1862 ***
ORIGIN_hex1874 ***
ORIGIN_hex1875 ***
ORIGIN_hex1876 ***
ORIGIN_hex1877 ***
ORIGIN_hex1878 ***
ORIGIN_hex1879 ***
ORIGIN_hex1882 ***
ORIGIN_hex1883 ***
ORIGIN_hex1884 ***
ORIGIN_hex1886 ***
ORIGIN_hex1887 ***
ORIGIN_hex1888 ***
ORIGIN_hex1889 ***
ORIGIN_hex1890 ***
ORIGIN_hex1900 ***
ORIGIN_hex1901 ***
ORIGIN_hex1902 ***
ORIGIN_hex1903 ***
ORIGIN_hex1904 ***
ORIGIN_hex1905 ***
ORIGIN_hex1906 ***
ORIGIN_hex1907 ***
ORIGIN_hex1908 ***
ORIGIN_hex1909 ***
ORIGIN_hex1910 ***
ORIGIN_hex1912 ***
ORIGIN_hex1913 ***
ORIGIN_hex1914 ***
ORIGIN_hex1916 ***
ORIGIN_hex1928 ***
ORIGIN_hex1929 ***
ORIGIN_hex1930 ***
ORIGIN_hex1931 ***
ORIGIN_hex1932 ***
ORIGIN_hex1933 ***
ORIGIN_hex1934 ***
ORIGIN_hex1935 ***
ORIGIN_hex1936 ***
ORIGIN_hex1937 ***
ORIGIN_hex1938 ***
ORIGIN_hex1940 ***
ORIGIN_hex1941 ***
ORIGIN_hex1942 ***
ORIGIN_hex1954 ***
ORIGIN_hex1955 ***
ORIGIN_hex1956 ***
ORIGIN_hex1958 ***
ORIGIN_hex1959 ***
ORIGIN_hex1960 ***
ORIGIN_hex1961 ***
ORIGIN_hex1962 ***
ORIGIN_hex1963 ***
ORIGIN_hex1964 ***
ORIGIN_hex1967 ***
ORIGIN_hex1968 ***
ORIGIN_hex1982 ***
ORIGIN_hex1983 ***
ORIGIN_hex1984 ***
ORIGIN_hex1985 ***
ORIGIN_hex1986 ***
ORIGIN_hex1987 ***
ORIGIN_hex1988 ***
ORIGIN_hex1989 ***
ORIGIN_hex1990 ***
ORIGIN_hex1991 ***
ORIGIN_hex1992 ***
ORIGIN_hex1994 ***
ORIGIN_hex1995 ***
ORIGIN_hex2009 ***
ORIGIN_hex2010 ***
ORIGIN_hex2011 ***
ORIGIN_hex2012 ***
ORIGIN_hex2013 ***
ORIGIN_hex2014 ***
ORIGIN_hex2015 ***
ORIGIN_hex2016 ***
ORIGIN_hex2017 ***
ORIGIN_hex2021 ***
ORIGIN_hex2036 ***
ORIGIN_hex2037 ***
ORIGIN_hex2038 ***
ORIGIN_hex2039 ***
ORIGIN_hex2040 ***
ORIGIN_hex2041 ***
ORIGIN_hex2042 ***
ORIGIN_hex2043 ***
ORIGIN_hex2044 ***
ORIGIN_hex2046 ***
ORIGIN_hex2049 ***
ORIGIN_hex2063 ***
ORIGIN_hex2064 ***
ORIGIN_hex2065 ***
ORIGIN_hex2066 ***
ORIGIN_hex2067 ***
ORIGIN_hex2068 ***
ORIGIN_hex2069 ***
ORIGIN_hex2070 ***
ORIGIN_hex2071 ***
ORIGIN_hex2072 ***
ORIGIN_hex2074    
ORIGIN_hex2089 ***
ORIGIN_hex2090 .  
ORIGIN_hex2091 ***
ORIGIN_hex2092 ***
ORIGIN_hex2093 ***
ORIGIN_hex2094 ***
ORIGIN_hex2095 ***
ORIGIN_hex2096 ***
ORIGIN_hex2097 ***
ORIGIN_hex2098 ***
ORIGIN_hex2100 ***
ORIGIN_hex2101 ***
ORIGIN_hex2102 ***
ORIGIN_hex2116 ***
ORIGIN_hex2117    
ORIGIN_hex2119 ***
ORIGIN_hex2120 ***
ORIGIN_hex2121 ***
ORIGIN_hex2122 ***
ORIGIN_hex2123 ***
ORIGIN_hex2124 ***
ORIGIN_hex2125 ***
ORIGIN_hex2126 ***
ORIGIN_hex2129 ***
ORIGIN_hex2146 ***
ORIGIN_hex2147 ***
ORIGIN_hex2148 ***
ORIGIN_hex2149 ***
ORIGIN_hex2150 ***
ORIGIN_hex2151 ***
ORIGIN_hex2152 ***
ORIGIN_hex2153 ***
ORIGIN_hex2154 ***
ORIGIN_hex2155 ***
ORIGIN_hex2171    
ORIGIN_hex2172 ***
ORIGIN_hex2174 ***
ORIGIN_hex2175 ***
ORIGIN_hex2176 ***
ORIGIN_hex2177 ***
ORIGIN_hex2178 ***
ORIGIN_hex2179 ***
ORIGIN_hex2180 ***
ORIGIN_hex2181 ***
ORIGIN_hex2182 ***
ORIGIN_hex2200 ***
ORIGIN_hex2201 ***
ORIGIN_hex2202 ***
ORIGIN_hex2203 ***
ORIGIN_hex2204 ***
ORIGIN_hex2205 ***
ORIGIN_hex2206 ***
ORIGIN_hex2207 ***
ORIGIN_hex2208 ***
ORIGIN_hex2209 ***
ORIGIN_hex2227 ***
ORIGIN_hex2228 ***
ORIGIN_hex2229 ***
ORIGIN_hex2230 ***
ORIGIN_hex2231 ***
ORIGIN_hex2233 ***
ORIGIN_hex2234 ***
ORIGIN_hex2235 ***
ORIGIN_hex2254 ***
ORIGIN_hex2255 ***
ORIGIN_hex2256 ***
ORIGIN_hex2257 ***
ORIGIN_hex2258 ***
ORIGIN_hex2259 ***
ORIGIN_hex2260 ***
ORIGIN_hex2261 ***
ORIGIN_hex2262 ***
ORIGIN_hex2281 ***
ORIGIN_hex2282 ***
ORIGIN_hex2283 ***
ORIGIN_hex2284 ***
ORIGIN_hex2285 ***
ORIGIN_hex2286 ***
ORIGIN_hex2287 ***
ORIGIN_hex2288 ***
ORIGIN_hex2308 ***
ORIGIN_hex2309 ***
ORIGIN_hex2310 ***
ORIGIN_hex2311 ***
ORIGIN_hex2312 ***
ORIGIN_hex2313 ***
ORIGIN_hex2314 ***
ORIGIN_hex2315 ***
ORIGIN_hex2316 ***
ORIGIN_hex2317 ***
ORIGIN_hex2335 ***
ORIGIN_hex2336 ***
ORIGIN_hex2337 ***
ORIGIN_hex2338 ***
ORIGIN_hex2339 ***
ORIGIN_hex2340 ***
ORIGIN_hex2341 ***
ORIGIN_hex2342 ***
ORIGIN_hex2343 ***
ORIGIN_hex2362 ***
ORIGIN_hex2363 ***
ORIGIN_hex2364 ***
ORIGIN_hex2365 ***
ORIGIN_hex2366 ***
ORIGIN_hex2367 ***
ORIGIN_hex2368 ***
ORIGIN_hex2369 ***
ORIGIN_hex2370 ***
ORIGIN_hex2371 ***
ORIGIN_hex2389 ***
ORIGIN_hex2390 ***
ORIGIN_hex2391 ***
ORIGIN_hex2392 ***
ORIGIN_hex2393 ***
ORIGIN_hex2394 ***
ORIGIN_hex2395 ***
ORIGIN_hex2396 ***
ORIGIN_hex2397 ***
ORIGIN_hex2398 ***
ORIGIN_hex2416 ***
ORIGIN_hex2417 ***
ORIGIN_hex2418 ***
ORIGIN_hex2419 ***
ORIGIN_hex2420 ***
ORIGIN_hex2422 ***
ORIGIN_hex2423 ***
ORIGIN_hex2424 ***
ORIGIN_hex2425 ***
ORIGIN_hex2426 ***
ORIGIN_hex2443 ***
ORIGIN_hex2444 ***
ORIGIN_hex2445 ***
ORIGIN_hex2448 ***
ORIGIN_hex2449 ***
ORIGIN_hex2450 ***
ORIGIN_hex2451 ***
ORIGIN_hex2452 ***
ORIGIN_hex2471 ***
ORIGIN_hex2472 ***
ORIGIN_hex2473 ***
ORIGIN_hex2476 ***
ORIGIN_hex2478 ***
ORIGIN_hex2479 ***
ORIGIN_hex2480 ***
ORIGIN_hex2497 ***
ORIGIN_hex2498 ***
ORIGIN_hex2499 ***
ORIGIN_hex2500 ***
ORIGIN_hex2503 ***
ORIGIN_hex2504 ***
ORIGIN_hex2505 ***
ORIGIN_hex2525 ***
ORIGIN_hex2526 ***
ORIGIN_hex2527 ***
ORIGIN_hex2531 ** 
ORIGIN_hex2532 ***
ORIGIN_hex2533 ***
ORIGIN_hex2551 ***
ORIGIN_hex2552 ***
ORIGIN_hex2553 ***
ORIGIN_hex2554 ***
ORIGIN_hex2557 ***
ORIGIN_hex2559 ***
ORIGIN_hex2579 ***
ORIGIN_hex2580 ***
ORIGIN_hex2581 ***
ORIGIN_hex2584 ***
ORIGIN_hex2605 ***
ORIGIN_hex2606 ***
ORIGIN_hex2607 ***
ORIGIN_hex2608 ***
ORIGIN_hex2609 ***
ORIGIN_hex2610 ***
ORIGIN_hex2611 ***
ORIGIN_hex2633 ***
ORIGIN_hex2634 ***
ORIGIN_hex2635 ***
ORIGIN_hex2636 ***
ORIGIN_hex2637 ***
ORIGIN_hex2638 ***
ORIGIN_hex2660 ***
ORIGIN_hex2661 ***
ORIGIN_hex2662 ***
ORIGIN_hex2663 ***
ORIGIN_hex2664 ***
ORIGIN_hex2665 ***
ORIGIN_hex2687 ***
ORIGIN_hex2688 ***
ORIGIN_hex2689 ***
ORIGIN_hex2690 ***
ORIGIN_hex2691 ***
ORIGIN_hex2693 ***
ORIGIN_hex2714 ***
ORIGIN_hex2715 ***
ORIGIN_hex2716 ***
ORIGIN_hex2717 ***
ORIGIN_hex2718 ***
ORIGIN_hex2719 ***
ORIGIN_hex2742 ***
ORIGIN_hex2743 ***
ORIGIN_hex2744 ***
ORIGIN_hex2745 ***
ORIGIN_hex2746 ***
ORIGIN_hex2747 ***
ORIGIN_hex2768 ***
ORIGIN_hex2769 ***
ORIGIN_hex2770 ***
ORIGIN_hex2771 ***
ORIGIN_hex2772 ***
ORIGIN_hex2773 ***
ORIGIN_hex2795 ***
ORIGIN_hex2796 ***
ORIGIN_hex2797 ***
ORIGIN_hex2798 ***
ORIGIN_hex2799 ***
ORIGIN_hex2800 ***
ORIGIN_hex2801 ***
ORIGIN_hex2822 ***
ORIGIN_hex2823 ***
ORIGIN_hex2824 ***
ORIGIN_hex2825 ***
ORIGIN_hex2826 ***
ORIGIN_hex2827 ***
ORIGIN_hex2850 ***
ORIGIN_hex2851 ***
ORIGIN_hex2852 ***
ORIGIN_hex2853 ***
ORIGIN_hex2854 ***
ORIGIN_hex2877 ***
ORIGIN_hex2878 ***
ORIGIN_hex2879 ***
ORIGIN_hex2880 ***
ORIGIN_hex2881 ***
ORIGIN_hex2905 ***
ORIGIN_hex2906 ***
ORIGIN_hex2907 ***
ORIGIN_hex2908 ***
ORIGIN_hex2909 ***
ORIGIN_hex2931 ***
ORIGIN_hex2932    
ORIGIN_hex2933 ***
ORIGIN_hex2934 ***
ORIGIN_hex2959 ***
ORIGIN_hex2960 ***
ORIGIN_hex2961 ***
ORIGIN_hex2962 ***
ORIGIN_hex2963 ***
ORIGIN_hex2987 ***
ORIGIN_hex2988 ***
ORIGIN_hex2989 ***
ORIGIN_hex2990 ***
ORIGIN_hex3015 ***
ORIGIN_hex3016 ***
ORIGIN_hex3017 ***
ORIGIN_hex3040 ***
ORIGIN_hex3043 ***
ORIGIN_hex3044 ***
ORIGIN_hex3068 ***
ORIGIN_hex3070 ***
ORIGIN_hex3072 ***
ORIGIN_hex3092 ***
ORIGIN_hex3098 ***
ORIGIN_hex3123 ***
ORIGIN_hex3126 ***
ORIGIN_hex3151 ***
ORIGIN_hex3152 ***
ORIGIN_hex3173 ***
ORIGIN_hex3178 ***
ORIGIN_hex3179 ***
ORIGIN_hex3205 ***
ORIGIN_hex3206 ***
ORIGIN_hex3232 ***
ORIGIN_hex3233 ***
ORIGIN_hex3308 ***
DESTIN_hex146  ***
DESTIN_hex174  ***
DESTIN_hex175     
DESTIN_hex200  ***
DESTIN_hex201  ***
DESTIN_hex202  ***
DESTIN_hex203  ***
DESTIN_hex227  ***
DESTIN_hex228  ***
DESTIN_hex229  ***
DESTIN_hex230  ***
DESTIN_hex231  ***
DESTIN_hex254  ***
DESTIN_hex255  ***
DESTIN_hex256  ***
DESTIN_hex257  ***
DESTIN_hex258  ***
DESTIN_hex259  ***
DESTIN_hex281  ***
DESTIN_hex282  ***
DESTIN_hex284  ** 
DESTIN_hex285  ***
DESTIN_hex286     
DESTIN_hex312  ***
DESTIN_hex313  ***
DESTIN_hex314  ***
DESTIN_hex336  ***
DESTIN_hex338  ***
DESTIN_hex339  ***
DESTIN_hex340  ***
DESTIN_hex366  ***
DESTIN_hex367  ***
DESTIN_hex391  ***
DESTIN_hex392  ***
DESTIN_hex393  ***
DESTIN_hex394  ***
DESTIN_hex419     
DESTIN_hex420  ***
DESTIN_hex421  ***
DESTIN_hex445  ***
DESTIN_hex446  ***
DESTIN_hex447  ***
DESTIN_hex472  ***
DESTIN_hex473  ***
DESTIN_hex474  ***
DESTIN_hex499  ***
DESTIN_hex500  ***
DESTIN_hex526  ***
DESTIN_hex527  ***
DESTIN_hex528  *  
DESTIN_hex552     
DESTIN_hex553  ***
DESTIN_hex554  ***
DESTIN_hex555  ***
DESTIN_hex581  ***
DESTIN_hex582  ***
DESTIN_hex607  ***
DESTIN_hex608  ***
DESTIN_hex609     
DESTIN_hex610     
DESTIN_hex611  ***
DESTIN_hex634  ***
DESTIN_hex635  ***
DESTIN_hex636  ***
DESTIN_hex638  ***
DESTIN_hex661  ***
DESTIN_hex662  ***
DESTIN_hex663  ***
DESTIN_hex664  ***
DESTIN_hex665  ***
DESTIN_hex689  ***
DESTIN_hex690  ***
DESTIN_hex692  ***
DESTIN_hex693  ***
DESTIN_hex715  ***
DESTIN_hex716  ***
DESTIN_hex717  ***
DESTIN_hex718  ***
DESTIN_hex719  ***
DESTIN_hex720  ***
DESTIN_hex743  ***
DESTIN_hex744  ***
DESTIN_hex745  ***
DESTIN_hex746  ***
DESTIN_hex747  ***
DESTIN_hex748  ***
DESTIN_hex769  ***
DESTIN_hex770  ***
DESTIN_hex771  ***
DESTIN_hex772  ***
DESTIN_hex773  ***
DESTIN_hex774  ***
DESTIN_hex775  ***
DESTIN_hex776  ***
DESTIN_hex777  ***
DESTIN_hex797  ***
DESTIN_hex798  ***
DESTIN_hex799  ***
DESTIN_hex800  ***
DESTIN_hex802  ***
DESTIN_hex803  ***
DESTIN_hex805  ***
DESTIN_hex806  ***
DESTIN_hex823  ***
DESTIN_hex824     
DESTIN_hex825  ***
DESTIN_hex826  ***
DESTIN_hex827  ***
DESTIN_hex832  ***
DESTIN_hex833  ***
DESTIN_hex851  ***
DESTIN_hex852     
DESTIN_hex853  ***
DESTIN_hex854  ***
DESTIN_hex856  ***
DESTIN_hex861  ***
DESTIN_hex862  ***
DESTIN_hex878  ***
DESTIN_hex879  ***
DESTIN_hex880  ***
DESTIN_hex881  ***
DESTIN_hex888  ***
DESTIN_hex889  ***
DESTIN_hex905  ***
DESTIN_hex906  ***
DESTIN_hex907  ***
DESTIN_hex908  ***
DESTIN_hex910  ***
DESTIN_hex932  ***
DESTIN_hex933  ***
DESTIN_hex934  ***
DESTIN_hex935  ***
DESTIN_hex937  ***
DESTIN_hex959  ***
DESTIN_hex960  ***
DESTIN_hex961  ***
DESTIN_hex962  ***
DESTIN_hex986  ***
DESTIN_hex987  ***
DESTIN_hex988  ***
DESTIN_hex989  ***
DESTIN_hex991  ***
DESTIN_hex1013 ***
DESTIN_hex1014 ***
DESTIN_hex1015 ***
DESTIN_hex1016 ***
DESTIN_hex1042 ***
DESTIN_hex1043 ***
DESTIN_hex1045 ***
DESTIN_hex1067    
DESTIN_hex1068 ***
DESTIN_hex1069 ***
DESTIN_hex1070 ***
DESTIN_hex1078 ***
DESTIN_hex1093 ***
DESTIN_hex1094 ***
DESTIN_hex1095 ***
DESTIN_hex1096 ***
DESTIN_hex1097 ***
DESTIN_hex1099 ***
DESTIN_hex1100 ***
DESTIN_hex1122 ***
DESTIN_hex1123 ***
DESTIN_hex1124 ***
DESTIN_hex1125 ***
DESTIN_hex1126 ***
DESTIN_hex1127 ***
DESTIN_hex1128 ***
DESTIN_hex1132 ***
DESTIN_hex1147 ***
DESTIN_hex1148 ***
DESTIN_hex1149 ***
DESTIN_hex1150 ***
DESTIN_hex1151 ***
DESTIN_hex1152 ***
DESTIN_hex1153 ***
DESTIN_hex1154    
DESTIN_hex1155 ***
DESTIN_hex1158 ***
DESTIN_hex1174 ***
DESTIN_hex1175 ***
DESTIN_hex1176 ***
DESTIN_hex1177 ***
DESTIN_hex1178 ***
DESTIN_hex1179 ***
DESTIN_hex1180 ***
DESTIN_hex1181 ***
DESTIN_hex1182 ***
DESTIN_hex1183 ***
DESTIN_hex1185 ***
DESTIN_hex1201 ***
DESTIN_hex1202 ***
DESTIN_hex1203 ***
DESTIN_hex1205 .  
DESTIN_hex1206 ***
DESTIN_hex1207 ***
DESTIN_hex1209 ***
DESTIN_hex1210 ***
DESTIN_hex1211 ***
DESTIN_hex1212 ***
DESTIN_hex1228 ***
DESTIN_hex1229 ***
DESTIN_hex1230 ***
DESTIN_hex1231 ***
DESTIN_hex1232 ***
DESTIN_hex1233    
DESTIN_hex1235 ***
DESTIN_hex1236 ***
DESTIN_hex1237 ***
DESTIN_hex1238 ***
DESTIN_hex1239 ***
DESTIN_hex1240 ***
DESTIN_hex1255 ***
DESTIN_hex1256 ***
DESTIN_hex1257 ***
DESTIN_hex1258 ***
DESTIN_hex1259 ***
DESTIN_hex1261 ***
DESTIN_hex1262 ***
DESTIN_hex1263 ***
DESTIN_hex1264 ***
DESTIN_hex1265 ***
DESTIN_hex1266 ***
DESTIN_hex1282 ***
DESTIN_hex1283 ***
DESTIN_hex1284 ***
DESTIN_hex1285 ***
DESTIN_hex1286 ***
DESTIN_hex1287 ***
DESTIN_hex1288 ***
DESTIN_hex1289 ***
DESTIN_hex1293 ***
DESTIN_hex1308 ***
DESTIN_hex1309 ***
DESTIN_hex1310 ***
DESTIN_hex1311 ***
DESTIN_hex1312 ***
DESTIN_hex1314 ***
DESTIN_hex1315    
DESTIN_hex1316 ***
DESTIN_hex1318 ***
DESTIN_hex1319 ***
DESTIN_hex1320 ***
DESTIN_hex1335 ***
DESTIN_hex1336 ***
DESTIN_hex1337 ***
DESTIN_hex1338 ***
DESTIN_hex1339 ***
DESTIN_hex1340 ***
DESTIN_hex1341 ***
DESTIN_hex1342 ***
DESTIN_hex1343 ***
DESTIN_hex1347 ***
DESTIN_hex1348 ***
DESTIN_hex1362 ***
DESTIN_hex1363 ***
DESTIN_hex1364 ***
DESTIN_hex1366 ***
DESTIN_hex1367 ***
DESTIN_hex1368 ***
DESTIN_hex1369 ***
DESTIN_hex1370 ***
DESTIN_hex1372 ***
DESTIN_hex1374 ***
DESTIN_hex1375 ***
DESTIN_hex1389 ***
DESTIN_hex1390 ***
DESTIN_hex1391 ***
DESTIN_hex1392 ***
DESTIN_hex1394 ***
DESTIN_hex1396 ***
DESTIN_hex1397 ***
DESTIN_hex1401    
DESTIN_hex1402 ***
DESTIN_hex1416 ***
DESTIN_hex1417 ***
DESTIN_hex1418 ***
DESTIN_hex1419 ***
DESTIN_hex1420 ***
DESTIN_hex1422 ***
DESTIN_hex1423 ***
DESTIN_hex1426 ***
DESTIN_hex1428 ***
DESTIN_hex1429 ***
DESTIN_hex1443 ** 
DESTIN_hex1444 ***
DESTIN_hex1445 ***
DESTIN_hex1446 ***
DESTIN_hex1447 ***
DESTIN_hex1455 ***
DESTIN_hex1456 ***
DESTIN_hex1457 ***
DESTIN_hex1469 ** 
DESTIN_hex1470 ***
DESTIN_hex1471 ***
DESTIN_hex1472 ***
DESTIN_hex1480 ***
DESTIN_hex1482 ***
DESTIN_hex1483 ***
DESTIN_hex1496 ***
DESTIN_hex1497 ***
DESTIN_hex1498 ***
DESTIN_hex1499 ***
DESTIN_hex1500 ***
DESTIN_hex1501 ***
DESTIN_hex1507 ***
DESTIN_hex1509 ***
DESTIN_hex1510 ***
DESTIN_hex1511 ***
DESTIN_hex1523 ***
DESTIN_hex1524    
DESTIN_hex1525    
DESTIN_hex1526 ***
DESTIN_hex1527 ***
DESTIN_hex1534 ***
DESTIN_hex1536 ***
DESTIN_hex1537 ***
DESTIN_hex1550    
DESTIN_hex1551 ***
DESTIN_hex1552 ***
DESTIN_hex1553 ***
DESTIN_hex1554 ***
DESTIN_hex1555 ***
DESTIN_hex1562 ***
DESTIN_hex1563 ***
DESTIN_hex1564 ***
DESTIN_hex1565 .  
DESTIN_hex1576 ***
DESTIN_hex1578 ***
DESTIN_hex1579    
DESTIN_hex1581 ***
DESTIN_hex1588 ***
DESTIN_hex1590 ***
DESTIN_hex1591 ***
DESTIN_hex1592 ***
DESTIN_hex1604 ***
DESTIN_hex1605 ***
DESTIN_hex1606 ***
DESTIN_hex1607 ***
DESTIN_hex1616 ***
DESTIN_hex1617 ***
DESTIN_hex1618 ***
DESTIN_hex1619 ***
DESTIN_hex1620 ***
DESTIN_hex1630 ***
DESTIN_hex1631 ***
DESTIN_hex1632 ***
DESTIN_hex1633 ***
DESTIN_hex1634 ***
DESTIN_hex1635 .  
DESTIN_hex1642 ***
DESTIN_hex1644 ***
DESTIN_hex1645 ***
DESTIN_hex1646 ***
DESTIN_hex1647 ***
DESTIN_hex1658 ***
DESTIN_hex1659 .  
DESTIN_hex1660 ***
DESTIN_hex1661 ***
DESTIN_hex1662 ***
DESTIN_hex1669 ***
DESTIN_hex1670 ***
DESTIN_hex1672 ***
DESTIN_hex1673 ***
DESTIN_hex1674 ***
DESTIN_hex1684 ***
DESTIN_hex1685 ***
DESTIN_hex1686 ***
DESTIN_hex1687 ***
DESTIN_hex1688 ***
DESTIN_hex1689 ***
DESTIN_hex1695 ***
DESTIN_hex1699 ***
DESTIN_hex1700 ***
DESTIN_hex1701 ***
DESTIN_hex1712 ***
DESTIN_hex1713 ***
DESTIN_hex1714 ***
DESTIN_hex1716 ***
DESTIN_hex1723 ***
DESTIN_hex1726 ***
DESTIN_hex1727 ***
DESTIN_hex1728 ***
DESTIN_hex1738 ***
DESTIN_hex1739 ***
DESTIN_hex1740 ***
DESTIN_hex1741 ***
DESTIN_hex1743 ***
DESTIN_hex1744 ***
DESTIN_hex1748 ***
DESTIN_hex1749 ***
DESTIN_hex1753 *  
DESTIN_hex1754 ***
DESTIN_hex1765 ***
DESTIN_hex1766 ***
DESTIN_hex1767 ***
DESTIN_hex1768 ***
DESTIN_hex1770 ***
DESTIN_hex1771 ***
DESTIN_hex1776 ***
DESTIN_hex1777 ***
DESTIN_hex1778 ***
DESTIN_hex1780 ***
DESTIN_hex1781 ***
DESTIN_hex1791 ***
DESTIN_hex1792 ***
DESTIN_hex1793 *  
DESTIN_hex1794 ***
DESTIN_hex1795 ***
DESTIN_hex1796 ***
DESTIN_hex1798 ***
DESTIN_hex1800 ***
DESTIN_hex1802 ***
DESTIN_hex1804 ***
DESTIN_hex1805 ***
DESTIN_hex1806 ***
DESTIN_hex1807 ***
DESTIN_hex1808 ***
DESTIN_hex1820 ***
DESTIN_hex1821 ***
DESTIN_hex1822 ***
DESTIN_hex1823 ***
DESTIN_hex1824 ** 
DESTIN_hex1827 ***
DESTIN_hex1828 ***
DESTIN_hex1829 ***
DESTIN_hex1831 ***
DESTIN_hex1833 ***
DESTIN_hex1834 ***
DESTIN_hex1835 ***
DESTIN_hex1846 ***
DESTIN_hex1847 ***
DESTIN_hex1848 ***
DESTIN_hex1849 ***
DESTIN_hex1850 ***
DESTIN_hex1852 ***
DESTIN_hex1853 ***
DESTIN_hex1854 ***
DESTIN_hex1855 ***
DESTIN_hex1856 ***
DESTIN_hex1857 ***
DESTIN_hex1858 ***
DESTIN_hex1859 ***
DESTIN_hex1860 ***
DESTIN_hex1861 ***
DESTIN_hex1862 ***
DESTIN_hex1874 ***
DESTIN_hex1875 ***
DESTIN_hex1876 ***
DESTIN_hex1877 ***
DESTIN_hex1878 ***
DESTIN_hex1879 ***
DESTIN_hex1882 ***
DESTIN_hex1883 ***
DESTIN_hex1884 ***
DESTIN_hex1886 ***
DESTIN_hex1887 ***
DESTIN_hex1888 ***
DESTIN_hex1889 ***
DESTIN_hex1890 ***
DESTIN_hex1900 ***
DESTIN_hex1901 .  
DESTIN_hex1902 ***
DESTIN_hex1903 ***
DESTIN_hex1904 ***
DESTIN_hex1905 ***
DESTIN_hex1906 ***
DESTIN_hex1907 ***
DESTIN_hex1908 ***
DESTIN_hex1909 ***
DESTIN_hex1910 ***
DESTIN_hex1912 ***
DESTIN_hex1913 ***
DESTIN_hex1914 ***
DESTIN_hex1916 ***
DESTIN_hex1928 ***
DESTIN_hex1929 ***
DESTIN_hex1930 ***
DESTIN_hex1931 ***
DESTIN_hex1932 ***
DESTIN_hex1933 ***
DESTIN_hex1934 ***
DESTIN_hex1935 ***
DESTIN_hex1936 ***
DESTIN_hex1937 ***
DESTIN_hex1938 ***
DESTIN_hex1940 ***
DESTIN_hex1941 ***
DESTIN_hex1942 ***
DESTIN_hex1954 ***
DESTIN_hex1955 ***
DESTIN_hex1956 ***
DESTIN_hex1958 ***
DESTIN_hex1959 ***
DESTIN_hex1960 *  
DESTIN_hex1961 ***
DESTIN_hex1962 ***
DESTIN_hex1963 ***
DESTIN_hex1964 ***
DESTIN_hex1967 ***
DESTIN_hex1968 ***
DESTIN_hex1982 ***
DESTIN_hex1983    
DESTIN_hex1984 ***
DESTIN_hex1985 ***
DESTIN_hex1986 ***
DESTIN_hex1987 ***
DESTIN_hex1988 ***
DESTIN_hex1989 ***
DESTIN_hex1990 ***
DESTIN_hex1991 ***
DESTIN_hex1992 ** 
DESTIN_hex1994 ***
DESTIN_hex1995 ***
DESTIN_hex2009 ***
DESTIN_hex2010 *  
DESTIN_hex2011    
DESTIN_hex2012 ***
DESTIN_hex2013 ***
DESTIN_hex2014 ***
DESTIN_hex2015 ***
DESTIN_hex2016 ***
DESTIN_hex2017 ***
DESTIN_hex2021 ***
DESTIN_hex2036 ***
DESTIN_hex2037 ***
DESTIN_hex2038 ***
DESTIN_hex2039 ***
DESTIN_hex2040 ***
DESTIN_hex2041 ***
DESTIN_hex2042 ***
DESTIN_hex2043 ***
DESTIN_hex2044 ***
DESTIN_hex2046 ***
DESTIN_hex2049 ***
DESTIN_hex2063 ***
DESTIN_hex2064 .  
DESTIN_hex2065 ***
DESTIN_hex2066 ***
DESTIN_hex2067 ***
DESTIN_hex2068 ***
DESTIN_hex2069 ***
DESTIN_hex2070 ***
DESTIN_hex2071 ** 
DESTIN_hex2072 ***
DESTIN_hex2074 ***
DESTIN_hex2089 ***
DESTIN_hex2090 ***
DESTIN_hex2091 ***
DESTIN_hex2092 ***
DESTIN_hex2093 *  
DESTIN_hex2094 ***
DESTIN_hex2095 ***
DESTIN_hex2096 ***
DESTIN_hex2097 ***
DESTIN_hex2098 ***
DESTIN_hex2100 ***
DESTIN_hex2101 ***
DESTIN_hex2102 ***
DESTIN_hex2116 ***
DESTIN_hex2117 ***
DESTIN_hex2119 ***
DESTIN_hex2120    
DESTIN_hex2121 ***
DESTIN_hex2122 ***
DESTIN_hex2123 ***
DESTIN_hex2124 ***
DESTIN_hex2125 ***
DESTIN_hex2126 ***
DESTIN_hex2129 ***
DESTIN_hex2146 ***
DESTIN_hex2147 ***
DESTIN_hex2148 ***
DESTIN_hex2149 ***
DESTIN_hex2150 ***
DESTIN_hex2151 ***
DESTIN_hex2152 ***
DESTIN_hex2153 ***
DESTIN_hex2154 ***
DESTIN_hex2155 ***
DESTIN_hex2171 ***
DESTIN_hex2172 ***
DESTIN_hex2174 ***
DESTIN_hex2175 *  
DESTIN_hex2176 ***
DESTIN_hex2177 ***
DESTIN_hex2178 ***
DESTIN_hex2179 ***
DESTIN_hex2180 ***
DESTIN_hex2181 ***
DESTIN_hex2182 ***
DESTIN_hex2200 ***
DESTIN_hex2201 ***
DESTIN_hex2202 ***
DESTIN_hex2203 ***
DESTIN_hex2204 ***
DESTIN_hex2205 ***
DESTIN_hex2206 ***
DESTIN_hex2207 ***
DESTIN_hex2208 ***
DESTIN_hex2209 ***
DESTIN_hex2227 ***
DESTIN_hex2228 ***
DESTIN_hex2229 ***
DESTIN_hex2230 ***
DESTIN_hex2231 ***
DESTIN_hex2233 ***
DESTIN_hex2234 ***
DESTIN_hex2235 ***
DESTIN_hex2254 ***
DESTIN_hex2255 ***
DESTIN_hex2256 ***
DESTIN_hex2257 ***
DESTIN_hex2258 ***
DESTIN_hex2259 ***
DESTIN_hex2260 ***
DESTIN_hex2261 ***
DESTIN_hex2262 ***
DESTIN_hex2281 ***
DESTIN_hex2282 ** 
DESTIN_hex2283 ***
DESTIN_hex2284 ***
DESTIN_hex2285 ***
DESTIN_hex2286 ***
DESTIN_hex2287 ***
DESTIN_hex2288 ***
DESTIN_hex2308 ***
DESTIN_hex2309 ***
DESTIN_hex2310 ***
DESTIN_hex2311    
DESTIN_hex2312 ***
DESTIN_hex2313    
DESTIN_hex2314 .  
DESTIN_hex2315 ***
DESTIN_hex2316 ***
DESTIN_hex2317 ***
DESTIN_hex2335 ***
DESTIN_hex2336 *  
DESTIN_hex2337 ***
DESTIN_hex2338 ***
DESTIN_hex2339 ***
DESTIN_hex2340 ***
DESTIN_hex2341 ***
DESTIN_hex2342 ***
DESTIN_hex2343 ***
DESTIN_hex2362 ***
DESTIN_hex2363 ***
DESTIN_hex2364 ***
DESTIN_hex2365    
DESTIN_hex2366 ***
DESTIN_hex2367 ***
DESTIN_hex2368 ***
DESTIN_hex2369 ***
DESTIN_hex2370    
DESTIN_hex2371 ***
DESTIN_hex2389 ***
DESTIN_hex2390 ** 
DESTIN_hex2391 ***
DESTIN_hex2392 ** 
DESTIN_hex2393 ***
DESTIN_hex2394 ***
DESTIN_hex2395 ***
DESTIN_hex2396 ***
DESTIN_hex2397 ***
DESTIN_hex2398 ***
DESTIN_hex2416 ***
DESTIN_hex2417 ***
DESTIN_hex2418 ***
DESTIN_hex2419 ** 
DESTIN_hex2420 ***
DESTIN_hex2422 ***
DESTIN_hex2423 ***
DESTIN_hex2424 ***
DESTIN_hex2425    
DESTIN_hex2426 ***
DESTIN_hex2443 ***
DESTIN_hex2444 ***
DESTIN_hex2445 ***
DESTIN_hex2448 ***
DESTIN_hex2449 ***
DESTIN_hex2450 ***
DESTIN_hex2451 ***
DESTIN_hex2452 ***
DESTIN_hex2471 ***
DESTIN_hex2472 ***
DESTIN_hex2473 *  
DESTIN_hex2476 ** 
DESTIN_hex2478 ***
DESTIN_hex2479 ***
DESTIN_hex2480 ***
DESTIN_hex2497 ***
DESTIN_hex2498 ***
DESTIN_hex2499 ***
DESTIN_hex2500 ***
DESTIN_hex2503 ***
DESTIN_hex2504 ***
DESTIN_hex2505 ***
DESTIN_hex2525 ***
DESTIN_hex2526 ***
DESTIN_hex2527    
DESTIN_hex2531 ***
DESTIN_hex2532 ***
DESTIN_hex2533 ***
DESTIN_hex2551 ***
DESTIN_hex2552 ***
DESTIN_hex2553 ***
DESTIN_hex2554 ***
DESTIN_hex2557 ***
DESTIN_hex2559 ***
DESTIN_hex2579 ***
DESTIN_hex2580 ***
DESTIN_hex2581 ***
DESTIN_hex2584 ***
DESTIN_hex2605 ***
DESTIN_hex2606 ***
DESTIN_hex2607 ***
DESTIN_hex2608 ***
DESTIN_hex2609 ***
DESTIN_hex2610 ***
DESTIN_hex2611    
DESTIN_hex2633 ***
DESTIN_hex2634 ***
DESTIN_hex2635 ***
DESTIN_hex2636 ***
DESTIN_hex2637 ***
DESTIN_hex2638 ***
DESTIN_hex2660 ***
DESTIN_hex2661 ***
DESTIN_hex2662 ***
DESTIN_hex2663 ***
DESTIN_hex2664 ***
DESTIN_hex2665    
DESTIN_hex2687 ***
DESTIN_hex2688 ***
DESTIN_hex2689 ***
DESTIN_hex2690 ***
DESTIN_hex2691 ***
DESTIN_hex2693 ***
DESTIN_hex2714 ***
DESTIN_hex2715 ***
DESTIN_hex2716 ***
DESTIN_hex2717 ***
DESTIN_hex2718 ***
DESTIN_hex2719 ***
DESTIN_hex2742 ***
DESTIN_hex2743 ***
DESTIN_hex2744 ** 
DESTIN_hex2745 ***
DESTIN_hex2746 ***
DESTIN_hex2747 ***
DESTIN_hex2768 ***
DESTIN_hex2769 ***
DESTIN_hex2770 ***
DESTIN_hex2771 ***
DESTIN_hex2772 ***
DESTIN_hex2773 ***
DESTIN_hex2795 ***
DESTIN_hex2796 ***
DESTIN_hex2797 ***
DESTIN_hex2798 ***
DESTIN_hex2799 ***
DESTIN_hex2800 *  
DESTIN_hex2801 ***
DESTIN_hex2822 ***
DESTIN_hex2823 ***
DESTIN_hex2824    
DESTIN_hex2825 ***
DESTIN_hex2826 ***
DESTIN_hex2827 ***
DESTIN_hex2850 ***
DESTIN_hex2851 ***
DESTIN_hex2852 ***
DESTIN_hex2853 ***
DESTIN_hex2854 ***
DESTIN_hex2877 ***
DESTIN_hex2878 ***
DESTIN_hex2879 ***
DESTIN_hex2880 ***
DESTIN_hex2881 ***
DESTIN_hex2905    
DESTIN_hex2906 ***
DESTIN_hex2907 ***
DESTIN_hex2908 ***
DESTIN_hex2909 ***
DESTIN_hex2931 *  
DESTIN_hex2932 ***
DESTIN_hex2933 .  
DESTIN_hex2934 ***
DESTIN_hex2959 ***
DESTIN_hex2960 ***
DESTIN_hex2961 ***
DESTIN_hex2962 ***
DESTIN_hex2963 ***
DESTIN_hex2987 ***
DESTIN_hex2988 ***
DESTIN_hex2989 ***
DESTIN_hex2990    
DESTIN_hex3015 ***
DESTIN_hex3016 ***
DESTIN_hex3017 ***
DESTIN_hex3040 ***
DESTIN_hex3043 ***
DESTIN_hex3044 ***
DESTIN_hex3068 ***
DESTIN_hex3070 ***
DESTIN_hex3072 ***
DESTIN_hex3092 ***
DESTIN_hex3098 ***
DESTIN_hex3123 ***
DESTIN_hex3126 ***
DESTIN_hex3151 ***
DESTIN_hex3152 ***
DESTIN_hex3173 ***
DESTIN_hex3178 ***
DESTIN_hex3179 ***
DESTIN_hex3205 ***
DESTIN_hex3206 ***
DESTIN_hex3232    
DESTIN_hex3233 ***
DESTIN_hex3308 ***
dist           ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

(Dispersion parameter for poisson family taken to be 1)

    Null deviance: 98250529  on 65050  degrees of freedom
Residual deviance: 25093776  on 63410  degrees of freedom
AIC: 25454082

Number of Fisher Scoring iterations: 7
Insights
  • There is an inverse relationship between Distance and Number of Trips: More trips are made when the distance is nearer, while less trips are made when the distance is further.
Code
CalcRSquared(dbcSIM$data$TOTAL_TRIPS, dbcSIM$fitted.values)
[1] 0.5736803132
Insights

With reference to the R2 above, it can be concluded that the model accounts for 57.36% of the variation of flows.

Poisson Regression Models Comparison

Lastly, use compare_performance() of the performance package to identify the better model. First, create a list called model_list using the code chunk below.

Code
model_list <- list(unconstrained = uncSIM,
                   originConstrained=orcSIM,
                   destinConstrained=decSIM,
                   doublyConstrained=dbcSIM)

Next, compute the RMSE of all the models in model_list using the code chunk below.

Code
compare_performance(model_list, metrics = "RMSE")
# Comparison of Model Performance Indices

Name              | Model |     RMSE
------------------------------------
unconstrained     |   glm | 1569.416
originConstrained |   glm | 1474.109
destinConstrained |   glm | 1375.017
doublyConstrained |   glm | 1174.174
Insights

The print above reveals that doubly constrained SIM is the best model as it has the smallest RMSE value of 1174.174. This is supported by the R2 value of doubly constrained SIM being the highest at 0.5736. However, given that doubly constrained SIM considers only the distance decay effect and not propulsive and/or attractiveness variables, practically, it may not be the best SIM in terms of uncovering the factors driving urban commuting flows. In contrast, the second best model of destination constrained SIM identifies the key propulsive variables driving commuters to destination sites.

Visualise Fitted Values

The observed and fitted values of the destination constrained SIM will be visualised on a scatterplot.

In the code chunk below, the fitted values from the destination constrained SIM is extracted then appended to the flow_data data frame. rename() is used to rename the newly added column.

Code
df <- as.data.frame(decSIM$fitted.values) %>%
  round(digits = 0)

inter_zonal_flow <- flow_data %>%
  cbind(df) %>%
  rename(decTRIPS = "decSIM$fitted.values")

The scatterplot will then be created using geom_point() and other appropriate functions of ggplot2 package.

Code
ggplot(data = inter_zonal_flow,
                aes(x = decTRIPS,
                    y = TOTAL_TRIPS)) +
  geom_point() +
  geom_smooth(method = lm) +
  coord_cartesian(xlim=c(0,100000),
                  ylim=c(0,100000)) + 
  labs(title = "Observed vs. Fitted Values for Destination constrained SIM",
       x = "Fitted Values", y = "Observed Values")

Insights

Most of the values fall far from the linear regression line, suggesting that the model can be further refined in terms of accuracy.

Calibrate Spatial Econometric Interaction Model usng Maximum Likelihood Estimation

Spatial Econometric Interaction Models (SEIM) could also be used as they extend the traditional SIM by incorporating additional econometric considerations and addressing specific complexities that standard SIM might not adequately capture. For example, a limitation of SIM is that it assumes independence among observations. However, SEIM explicitly address spatial dependencies among observations, acknowledging that nearby locations might influence each other’s behavior or outcomes. SEIM can also handle spatial autocorrelation more effectively and address issues of multicollinearity.

To calibrate SEIM using spflow package, three data sets are required:

  • Spatial Weights
  • Distance Matrix
  • Explanatory Variables

Prepare Spatial Weights

There are three different matrices that can be used to describe the connectivity between TAZ: contiguity, fixed distance and adaptive distance.

Before fixed distance weights can be derived, there is a need to determine the upper limit for distance band by using the steps below:

  • st_centroid() is used to convert the hexagon grids into a point geometry.
  • knearneigh() of spdep is then used to return a matrix with the indices of points belonging to the set of the k nearest neighbours of each other by using. The returned knn object is then converted into a neighbours list of class nb with a list of integer vectors containing neighbour region number ids by using knn2nb().
  • Lastly, return the length of neighbour relationship edges by using nbdists() of spdep. The function returns in the units of the coordinates if the coordinates are projected (longlat = FALSE), and in km if otherwise (longlat = TRUE). Remove the list structure of the returned object by using unlist().
Code
coords <- hex_grid_bounded2 %>%
  filter(busstop_count > 0) %>%
  select(geometry) %>%
  st_centroid()
k1 <- knn2nb(knearneigh(coords))
k1dists <- unlist(nbdists(k1, coords, longlat = FALSE))

# Print summary report
summary(k1dists)
     Min.   1st Qu.    Median      Mean   3rd Qu.      Max. 
 750.0000  750.0000  750.0000  753.6959  750.0000 1984.3135 

The summary report shows that the largest first nearest neighbour distance is 1299.03m, so using this as the upper threshold (rounded up to the next integer) gives certainty that all units will have at least one neighbour.

Next , the code chunk below will be used to compute the three spatial weights at one go as follows:

  • poly2nb() of spdep package is used to build a neighbours list based on regions with contiguous boundaries.
  • dnearneigh() of **spdep* package is used to identifies neighbours of region centroids by Euclidean distance in the metric of the points between lower and and upper (less than or equal to) bounds.
  • knn2nb() and knearneigh() is used to to build the adaptive spatial weights.

Lastly, list() is used to keep these three spatial weights in a single list class called hexgrid_nb.

Code
centroids <- suppressWarnings({
    st_point_on_surface(st_geometry(hex_grid_bounded2))})

hexgrid_nb <- list(
  "by_contiguity" = poly2nb(hex_grid_bounded2),
  "by_distance" = dnearneigh(centroids, 
                             d1 = 0, d2 = 1300),
  "by_knn" = knn2nb(knearneigh(centroids, 6))
)

The code chunk below prints a summary of the spatial weights, which reveals that by using contiguity weights, there is at least one TAZ that does not have any neighbours.

Code
hexgrid_nb
$by_contiguity
Neighbour list object:
Number of regions: 1945 
Number of nonzero links: 10790 
Percentage nonzero weights: 0.2852214828 
Average number of links: 5.547557841 
1 region with no links:
1935

$by_distance
Neighbour list object:
Number of regions: 1945 
Number of nonzero links: 21126 
Percentage nonzero weights: 0.5584419876 
Average number of links: 10.86169666 

$by_knn
Neighbour list object:
Number of regions: 1945 
Number of nonzero links: 11670 
Percentage nonzero weights: 0.3084832905 
Average number of links: 6 
Non-symmetric neighbours list

Prepare Flow Data

From the existing flow_data data frame that was assembled earlier, only the required variables are selected using the select() function.

Code
flow_data1 <- flow_data %>%
  select(ORIGIN_hex, DESTIN_hex, TOTAL_TRIPS, dist)

Prepare Explanatory Variables

As both origin propulsive and destination attractiveness variables are required, this data set will be prepared by dropping the geometry (using st_drop_geometry()) from the existing hex_grid_bounded3 sf data frame that was assembled earlier.

Code
explanatory <- hex_grid_bounded3 %>%
  st_drop_geometry()

Prepare spflow objects

The development version (0.1.0.9010) of spflow will be used instead of the released version (0.1.0). The code chunk below will be used to install the development version of spflow package.

Code
devtools::install_github("LukeCe/spflow")

Next, load spflow package into the R environment.

Code
library(spflow)

Three spflow objects are required:

  • spflow_network-class is an S4 class that contains all information on a spatial network which is composed by a set of nodes that are linked by some neighborhood relation.
  • spflow_network_pair-class is an S4 class that holds information on O-D pairs. Each O-D pair is composed of two nodes, each belonging to one network. All origin nodes must belong to the same origin network should be contained in one spflow_network-class, and likewise for the destinations.
  • spflow_network_multi-class is an S4 class that gathers information on multiple objects of types spflow_network-class and spflow_network_pair-class. Its purpose is to ensure that the identification between the nodes that serve as origins or destinations, and the O-D pairs is consistent (similar to relational databases).

Creating spflow_network-class objects

spflow_network-class can be created using spflow_network() function of spflow package. For this model, the fixed distance based neighbourhood structure will be chosen.

Code
hex_net <- spflow_network(
  id_net = "sg",  # assign an id name, can give it any input
  node_neighborhood = nb2mat(hexgrid_nb$by_distance),
  node_data = explanatory,
  node_key_column = "index"
)

hex_net
Spatial network nodes with id: sg
--------------------------------------------------
Number of nodes: 1945
Average number of links per node: 10.862
Density of the neighborhood matrix: 0.56% (non-zero connections)

Data on nodes:
     index busstop_count housing_count biz_count school_count fin_count
1       33             0             0         0            0         0
2       34             0             0         0            0         0
3       35             0             0         0            0         0
4       36             0             0         0            0         0
5       37             0             0         0            0         0
6       60             0             0         0            0         0
---    ---           ---           ---       ---          ---       ---
1940  3884             0             0         0            0         0
1941  3904             0             0         0            0         0
1942  3908             0             0         0            0         0
1943  3909             0             0         0            0         0
1944  3910             0             0         0            0         0
1945  3937             0             0         0            0         0
     mrtlrt_count
1               0
2               0
3               0
4               0
5               0
6               0
---           ---
1940            0
1941            0
1942            0
1943            0
1944            0
1945            0

spflow_network_pair-class can be created using spflow_network_pair() function of spflow package.

Code
hex_net_pairs <- spflow_network_pair(
  id_orig_net = "sg",
  id_dest_net = "sg",
  pair_data = flow_data1,
  orig_key_column = "ORIGIN_hex",
  dest_key_column = "DESTIN_hex"
)

hex_net_pairs
Spatial network pair with id: sg_sg
--------------------------------------------------
Origin network id: sg (with 820 nodes)
Destination network id: sg (with 821 nodes)
Number of pairs: 65051
Completeness of pairs: 9.66% (65051/673220)

Data on node-pairs:
    DESTIN_hex ORIGIN_hex TOTAL_TRIPS    dist
1          201        118           1    2250
2          228        118           2    3000
3          254        118           2 1984.31
4          281        118           1 2598.08
5          285        118          56 6873.86
6          228        146          13    2250
---        ---        ---         ---     ---
11        2769       3308         535 7611.67
21        2742       3308           8 7901.74
31        2877       3308          37 6139.01
41        2931       3308           3 5408.33
51        3173       3308           7 1984.31
61        3232       3308           1 5952.94

spflow_network_multi-class can be created using spflow_network_multi() function of spflow package and only works on spflow_network-class and spflow_network_pair-class.

Code
hex_multi_net <- spflow_network_multi(hex_net, hex_net_pairs)

hex_multi_net
Collection of spatial network nodes and pairs
--------------------------------------------------
Contains 1 spatial network nodes  
    With id :  sg
Contains 1 spatial network pairs  
    With id :  sg_sg

Availability of origin-destination pair information:

 ID_ORIG_NET ID_DEST_NET ID_NET_PAIR COMPLETENESS       C_PAIRS    C_ORIG
          sg          sg       sg_sg        1.72% 65051/3783025 1945/1945
    C_DEST
 1945/1945

Correlation Analysis

Multicollinearity refers to a situation in which more than two explanatory variables in a multiple regression model are highly linearly related. In this situation, the coefficient estimates of the multiple regression may change erratically in response to small changes in the data or the procedure used to fit the model. To avoid including explanatory variables that are highly correlated, spflow provides two functions:

  • pair_cor() to create a correlation matrix, and
  • cor_image() to plot the correlation matrix as a correlogram.
Code
# Generate explanatory variables names
var_name <- explanatory %>%
  select(-(index)) %>%
  names()

# Generate the formula dynamically
cor_formula <- log(1 + TOTAL_TRIPS) ~ 
  busstop_count + 
  housing_count + 
  biz_count + 
  school_count + 
  fin_count + 
  mrtlrt_count + 
  P_(log(dist + 1))

cor_mat <- pair_cor(
  hex_multi_net, 
  spflow_formula = cor_formula, 
  add_lags_x = FALSE)

colnames(cor_mat) <- paste0(
  substr(
    colnames(cor_mat),1,3),"...")

cor_image(cor_mat)

Given that there are no variable pairs that are very highly correlated with one another, all variables will be used to calibrate the SEIM.

Model Calibration

There are currently three estimators of spatial econometric interaction models supported by spflow package:

  • Maximum likelihood estimation (MLE) – default estimation procedure.
  • Spatial two-stage least squares (S2SLS) – activate the S2SLS estimation via the estimation_control argument using the input spflow_control(estimation_method = "s2sls").
  • Bayesian Markov Chain Monte Carlo (MCMC) – activate the MCMC estimation via the estimation_control argument using the input spflow_control(estimation_method = "mcmc").

The code chunk below will be used to calibrate a base model based on the defaults (model 9 and MLE estimator). The spflow function offers a formula interface adapted to spatial interaction models, which has the following structure:

Y ~ O_(X1) + D_(X2) + I_(X3) + P_(X4)

  • O_(…) and D_(…) indicate which variables are used as characteristics of the origins and destinations respectively.
  • I_(…) indicates variables that should be used for the intra-regional parameters.
  • P_(…) declares which variables describe origin-destination pairs, which usually will include a measure of distance (distance decay).
Code
base_model <- spflow(
  spflow_formula = log(1 + TOTAL_TRIPS) ~ 
    O_(busstop_count +
         housing_count + 
         biz_count + 
         school_count + 
         mrtlrt_count) +
    D_(busstop_count +
         biz_count + 
         school_count + 
         fin_count + 
         mrtlrt_count) +
    P_(log(dist + 1)),
  spflow_networks = hex_multi_net)

base_model
--------------------------------------------------
Spatial interaction model estimated by: MLE  
Spatial correlation structure: SDM (model_9)
Dependent variable: log(1 + TOTAL_TRIPS)

--------------------------------------------------
Coefficients:
                         est     sd   t.stat  p.val
rho_d                  0.812  0.006  134.701  0.000
rho_o                  0.820  0.006  135.153  0.000
rho_w                 -0.999  0.013  -76.331  0.000
(Intercept)            5.991  0.099   60.529  0.000
(Intra)                   NA     NA       NA     NA
D_busstop_count        0.017  0.002   10.336  0.000
D_busstop_count.lag1  -0.030  0.004   -7.046  0.000
D_biz_count            0.005  0.000   10.637  0.000
D_biz_count.lag1      -0.001  0.001   -0.845  0.398
D_school_count         0.061  0.006    9.599  0.000
D_school_count.lag1    0.018  0.026    0.700  0.484
D_fin_count            0.004  0.000   10.558  0.000
D_fin_count.lag1      -0.005  0.001   -3.399  0.001
D_mrtlrt_count         0.047  0.008    5.614  0.000
D_mrtlrt_count.lag1   -0.079  0.027   -2.941  0.003
O_busstop_count        0.021  0.002   11.996  0.000
O_busstop_count.lag1  -0.038  0.005   -7.943  0.000
O_housing_count        0.000  0.000   30.082  0.000
O_housing_count.lag1   0.000  0.000    5.384  0.000
O_biz_count            0.000  0.000    0.993  0.321
O_biz_count.lag1      -0.005  0.001   -5.389  0.000
O_school_count         0.017  0.006    2.589  0.010
O_school_count.lag1    0.148  0.027    5.427  0.000
O_mrtlrt_count         0.058  0.008    7.496  0.000
O_mrtlrt_count.lag1   -0.194  0.019  -10.081  0.000
P_log(dist + 1)       -0.510  0.012  -43.006  0.000

--------------------------------------------------
R2_corr: 0.6213425511  
Observations: 65051  
Model coherence: Unknown

t.stat refers to the coefficients: a positive number means there is a direct relationship between the explanatory variable and the dependent variable, while a negative number implies an inverse relationship. p.val shows whether the coefficients are statistically significant, and hence, a good explanatory variable, or not statistically significant, and hence, not a good explanatory variable.

Insights

The R2 value is 0.6213, which means the model accounts for 62.13% of the variation of flows. While not perfect, this value is much higher than the R2 values of the SIM seen earlier.

Among the destination explanatory variables:

  • Bus stop counts, Financial services counts and MRT/LRT station counts and their lags all have a t.stat that is statistically significant. This means that such counts within the TAZ and in neighbouring TAZ will affect the attractiveness of the specific destination TAZ.
  • However, for all three variables, their coefficients are positive while the coefficients of their lags are negative. This means that the more of such counts there are in the destination TAZ, the more trips are made to that TAZ. And the more of such counts there are in neighbouring TAZ, the less trips are made to that TAZ.
  • School and Business counts have a t.stat that is statistically significant, but their lags are not. This means that such counts within the TAZ will affect the attractiveness of the TAZ but counts in neighbouring zones do not affect the attractiveness of the specific TAZ.

Among the origin explanatory variables:

  • Bus stop counts and MRT/LRT station counts and their lags both have a t.stat that is statistically significant. This means that they are good explanatory variable as such counts within the TAZ and in neighbouring TAZ will affect the propulsiveness of the specific origin TAZ.
  • However, for both variables, their coefficients are positive while the coefficients of their lags are negative. This means that the more of such counts there are in the origin TAZ, the more trips are made from that origin TAZ. And the more of such counts there are in neighbouring TAZ, the less trips are made from that origin TAZ.
  • School and Housing counts and their lags also have a t.stat that is statistically significant, making them good explanatory variables. For these two variables, their coefficients and the coefficients of their lags are positive, which means the more of such counts there are in the origin TAZ and its neighbouring TAZ, the more trips are made from that origin TAZ.
  • Business counts has a t.stat that is not statistically significant, but their lags are statistically significant. This means that while the business counts of the origin TAZ is not a good explanatory variable, counts in the neighbouring TAZ are: the more of such counts there are in the neighbouring TAZ, the less trips are made from that origin TAZ.

Residual diagnostics

In building explanatory models, it is important to check if the model calibrate conform to the statistical assumption of the statistical methods used. *spflow package provides several functions to support residual diagnostics needs. In the code chunk below, spflow_moran_plots() is used.

Code
old_par <- par(mfrow = c(1, 3), 
               mar = c(2,2,2,2))

spflow_moran_plots(base_model)

Visualise Fitted Values

Lastly, the observed and fitted values of the SEIM will be visualised on a scatterplot.

In the code chunk below, the fitted values from the destination constrained SIM is extracted then appended to the flow_data data frame. rename() is used to rename the newly added column.

Code
model.df <- as_tibble(base_model@spflow_indicators) %>%
  mutate(FITTED_Y = round(exp(FITTED),0))

inter_zonal_flow2 <- flow_data %>%
  left_join(model.df) %>%
  mutate(diff = (FITTED_Y-TOTAL_TRIPS))

The scatterplot will then be created using geom_point() and other appropriate functions of ggplot2 package.

Code
ggplot(data = inter_zonal_flow2,
                aes(x = FITTED,
                    y = ACTUAL)) +
  geom_point() +
  geom_smooth(method = lm) +
  coord_cartesian(xlim=c(0,14),
                  ylim=c(0,14)) + 
  labs(title = "Observed vs. Fitted Values for SEIM",
       x = "Fitted Values", y = "Observed Values")

Insights

Most of the values fall closer to the linear regression line as compared to the destination constrained SIM.

Conclusion

During weekday morning peak periods, most travelling is happening to and from residential areas (e.g. Tampines, Jurong East, Punggol). Notably, there are several long-distance bus routes linking the East to the North, and the Central region to the North-Western part of Singapore. However, bus stop density does not appear to directly correlate with the number of desire lines or the line thickness. As such, there is a need to further understand what are the other factors that drive such trends in commuting flows apart.

Using the SEIM (model 9, MLE estimator) which accounts for 62.13% of the variation of flows, the explanatory variables for the flow are:

Destination Explanatory Variables

  • Higher public transportation node density and financial services density in the destination TAZ drives the number of trips to the destination TAZ. However, higher similar density in the neighbouring TAZ results in less trips to the destination TAZ.
  • Higher school density and employment opportunities in the destination TAZ also drives up the number of trips to the destination TAZ.

Origin Explanatory Variables

  • Higher public transportation node density in the origin TAZ increase the number of trips from the origin TAZ. However, a higher similar density in the neighbouring TAZ results in less trips from the origin TAZ.
  • Higher school and population density also increases the number of trips from the origin TAZ. A higher similar density in the neighbouring TAZ also results in more trips from the origin TAZ.
  • However, more employment opportunities in the neighbouring TAZ results in less trips from the origin TAZ.